/* =========================
   AG HOMES V4 - STYLE
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
scroll-behavior:smooth;
}

body{
background:#000;
color:#fff;
line-height:1.6;
}

/* Navbar */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:rgba(0,0,0,.85);
backdrop-filter:blur(10px);
z-index:1000;
border-bottom:1px solid rgba(255,215,0,.2);
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:30px;
font-weight:bold;
color:gold;
}

.logo img{
height:80px;
width:auto;
background:transparent;
border:none;
border-radius:0;
filter:drop-shadow(0 0 8px gold)
       drop-shadow(0 0 15px rgba(255,215,0,.8));
transition:.3s;
}

.logo img:hover{
transform:scale(1.08);
filter:drop-shadow(0 0 12px gold)
       drop-shadow(0 0 25px rgba(255,215,0,1));
}

nav a{
color:#fff;
text-decoration:none;
margin-left:20px;
font-weight:bold;
transition:.3s;
}

nav a:hover{
color:gold;
}

/* Hero */

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:
linear-gradient(
rgba(0,0,0,0.65),
rgba(0,0,0,0.75)
),
url("images/project2.png");

background-size:cover;
background-position:center;
background-attachment:fixed;
position:relative;
overflow:hidden;
}

.hero-content h1{
font-size:72px;
color:gold;
}

.hero-content h2{
font-size:34px;
margin-top:10px;
}

.hero-content p{
margin-top:20px;
font-size:20px;
color:#ddd;
}

.buttons{
margin-top:30px;
}

.btn{
display:inline-block;
padding:14px 30px;
border-radius:40px;
background:gold;
color:#000;
text-decoration:none;
font-weight:bold;
margin:8px;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 0 20px gold;
}

.btn2{
background:#fff;
}

/* Sections */

section{
padding:90px 8%;
}

h2{
text-align:center;
font-size:42px;
color:gold;
margin-bottom:30px;
}

/* Cards */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.card{
background:#161616;
padding:25px;
border-radius:18px;
text-align:center;
border:1px solid rgba(255,215,0,.2);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 0 20px gold;
}

/* Gallery */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px;
transition:.3s;
}

.gallery img:hover{
transform:scale(1.03);
box-shadow:0 0 20px gold;
}

/* Stats */

.stats-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.stat{
background:#161616;
padding:30px;
border-radius:18px;
text-align:center;
border:1px solid rgba(255,215,0,.2);
transition:.3s;
}

.stat:hover{
transform:translateY(-8px);
box-shadow:0 0 20px gold;
}

.stat h1{
font-size:48px;
color:gold;
}

.stat p{
color:#ddd;
margin-top:10px;
}

/* Floating Buttons */

.floating-buttons{
position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}

.float-call,
.float-whatsapp{
width:70px;
height:70px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:13px;
font-weight:bold;
letter-spacing:.5px;
transition:.3s;
box-shadow:0 0 15px rgba(0,0,0,.4);
}

.float-call{
background:gold;
color:#000;
}

.float-whatsapp{
background:#25D366;
color:#fff;
}

.float-call:hover,
.float-whatsapp:hover{
transform:scale(1.1);
}

/* Footer */

footer{
background:#111;
padding:40px;
text-align:center;
border-top:1px solid rgba(255,215,0,.2);
}

footer h2{
margin-bottom:10px;
}

/* Mobile */

@media(max-width:768px){

.navbar{
flex-direction:column;
padding:15px;
}

nav{
margin-top:10px;
}

nav a{
margin:0 8px;
}

.hero-content h1{
font-size:42px;
}

.hero-content h2{
font-size:24px;
}

.hero-content p{
font-size:16px;
}

}

/* ===== Reviews ===== */

#reviews,
#why,
#faq,
#cta,
#map{
padding:80px 8%;
}

#reviews h2,
#why h2,
#faq h2,
#cta h2,
#map h2{
text-align:center;
font-size:42px;
color:gold;
margin-bottom:30px;
}

#reviews .cards,
#why .cards,
#faq .cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
margin-top:20px;
}

#reviews .card,
#why .card,
#faq .card{
background:#161616;
padding:25px;
border-radius:18px;
border:1px solid rgba(255,215,0,.2);
transition:.3s;
}

#reviews .card:hover,
#why .card:hover,
#faq .card:hover{
transform:translateY(-8px);
box-shadow:0 0 20px gold;
}

#cta{
text-align:center;
background:linear-gradient(135deg,#111,#000);
border-radius:20px;
margin:40px 8%;
}

#cta p{
font-size:20px;
color:#ddd;
margin-bottom:25px;
}

.map-box{
border-radius:20px;
overflow:hidden;
box-shadow:0 0 20px rgba(255,215,0,.3);
}/* ===== Logo Animation ===== */

.logo img{
height:55px;
animation:logoFloat 3s ease-in-out infinite;
filter:drop-shadow(0 0 10px gold);
}

@keyframes logoFloat{

0%{
transform:translateY(0px) rotate(0deg);
}

50%{
transform:translateY(-6px) scale(1.05);
}

100%{
transform:translateY(0px) rotate(0deg);
}

}
