*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#0a0a0a;
color:white;
overflow-x:hidden;
}

.hidden{
display:none;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section-padding{
padding:100px 0;
}

.header{
position:fixed;
width:100%;
top:0;
z-index:999;
background:rgba(0,0,0,.75);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
gap:20px;
}

.logo-box{
display:flex;
align-items:center;
gap:15px;
}

.site-logo{
width:65px;
height:65px;
border-radius:50%;
object-fit:cover;
}

.logo-text h2{
font-size:1rem;
}

.logo-text span{
color:#d4af37;
font-size:.9rem;
}

.navbar{
display:flex;
gap:25px;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.navbar a:hover{
color:#d4af37;
}

.nav-right{
display:flex;
align-items:center;
gap:15px;
}

.whatsapp-btn{
color:white;
text-decoration:none;
display:flex;
align-items:center;
gap:8px;
font-weight:500;
}

.mobile-menu{
display:none;
}

.hero{
min-height:100vh;
background:linear-gradient(135deg,#000000,#111111,#1b1b1b);
display:flex;
align-items:center;
position:relative;
overflow:hidden;
padding-top:120px;
}

.hero-overlay{
position:absolute;
inset:0;
background:radial-gradient(circle at top right,rgba(212,175,55,.15),transparent 35%);
}

.hero-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:50px;
align-items:center;
position:relative;
z-index:2;
}

.hero-logo-bg{
position:absolute;
right:2%;
bottom:4%;
width:260px;
opacity:.05;
}

.hero-badge{
display:inline-block;
padding:10px 18px;
border-radius:30px;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
margin-bottom:25px;
color:#d4af37;
}

.hero h1{
font-size:4rem;
line-height:1.2;
margin-bottom:25px;
}

.hero-subtitle{
font-size:1.1rem;
line-height:1.8;
color:#d1d5db;
margin-bottom:35px;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary,
.lang-btn{
padding:15px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
border:none;
cursor:pointer;
transition:.3s;
display:inline-flex;
align-items:center;
justify-content:center;
}

.btn-primary{
background:linear-gradient(135deg,#d4af37,#b8860b);
color:black;
}

.btn-secondary{
border:1px solid rgba(255,255,255,.15);
color:white;
background:rgba(255,255,255,.05);
}

.lang-btn{
background:#d4af37;
color:black;
}

.hero-stats{
display:flex;
gap:40px;
margin-top:50px;
flex-wrap:wrap;
}

.hero-stats h3{
font-size:2rem;
color:#d4af37;
}

.hero-main-image{
width:100%;
height:520px;
object-fit:cover;
border-radius:30px;
}

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

.section-header{
text-align:center;
margin-bottom:60px;
}

.coming-soon-title{
margin-top:100px;
}

.section-title{
font-size:2.8rem;
margin-bottom:20px;
}

.section-tag{
display:inline-block;
padding:10px 18px;
border-radius:30px;
background:#1f1f1f;
color:#d4af37;
margin-bottom:15px;
}

.about-text{
line-height:1.9;
color:#d1d5db;
}

.founder-card,
.plot-card,
.contact-form,
.contact-card{
background:#121212;
padding:30px;
border-radius:25px;
border:1px solid rgba(255,255,255,.05);
}

.founder-image{
width:100%;
height:420px;
object-fit:cover;
border-radius:20px;
margin-bottom:20px;
}

.plot-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.plot-image img{
width:100%;
height:280px;
object-fit:cover;
border-radius:20px;
}

.plot-content h3{
margin:20px 0;
font-size:1.8rem;
}

.plot-content p{
line-height:1.8;
color:#d1d5db;
}

.plot-features{
display:flex;
gap:10px;
flex-wrap:wrap;
list-style:none;
margin:25px 0;
}

.plot-features li{
background:#1f1f1f;
padding:10px 14px;
border-radius:30px;
font-size:.9rem;
}

.project-actions{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:25px;
}

.site-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
margin-top:20px;
}

.site-gallery img{
width:100%;
height:100px;
object-fit:cover;
border-radius:12px;
}

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

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:16px;
margin-bottom:18px;
border-radius:14px;
border:none;
background:#1f1f1f;
color:white;
}

.contact-form textarea{
height:150px;
resize:none;
}

.full-btn{
width:100%;
}

#formMessage{
margin-top:15px;
font-weight:600;
text-align:center;
}

.floating-whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
border-radius:50%;
background:#25d366;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:white;
text-decoration:none;
z-index:9999;
box-shadow:0 10px 25px rgba(0,0,0,.3);
}

@media(max-width:768px){

.container{
width:92%;
}

.hero{
padding-top:120px;
padding-bottom:50px;
}

.hero h1{
font-size:2rem;
}

.hero-buttons{
flex-direction:column;
}

.hero-buttons a{
width:100%;
}

.hero-main-image{
height:260px;
}

.section-title{
font-size:2rem;
}

.plot-grid,
.gallery-grid,
.about-grid,
.contact-grid{
grid-template-columns:1fr;
}

.project-actions{
flex-direction:column;
}

.project-actions a{
width:100%;
}

.site-gallery{
grid-template-columns:1fr;
}

.site-logo{
width:50px;
height:50px;
}

.logo-text h2{
font-size:.8rem;
}

.logo-text span{
font-size:.7rem;
}

.navbar{
position:fixed;
right:-100%;
top:85px;
background:#000;
width:260px;
height:100vh;
flex-direction:column;
padding:40px;
transition:.3s;
z-index:999;
}

.navbar.active{
right:0;
}

.mobile-menu{
display:block;
font-size:24px;
cursor:pointer;
}

}
