*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Poppins',sans-serif;background:#0b1d36;color:#fff;scroll-behavior:smooth;}

header{
position:fixed;
top:0;
width:100%;
backdrop-filter:blur(15px);
background:rgba(8,20,38,0.6);
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
}

.logo{height:55px;}

nav a{
margin-left:30px;
text-decoration:none;
color:#fff;
font-weight:500;
transition:0.3s;
}

nav a:hover{color:#d4af37;}

.nav-cta{
background:#d4af37;
color:#000 !important;
padding:8px 18px;
border-radius:25px;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding-top:100px;
}

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero::after{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,0.6);
z-index:-1;
}

.hero-content{
max-width:800px;
padding:40px;
border-radius:20px;
}

.glass{
background:rgba(255,255,255,0.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,0.15);
}

h1{font-size:40px;color:#d4af37;margin-bottom:20px;}
h2{color:#d4af37;margin-bottom:20px;}

section{
padding:100px 8%;
scroll-margin-top:100px;
}

.container{
max-width:1100px;
margin:auto;
padding:40px;
border-radius:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
padding:25px;
border-radius:15px;
background:rgba(255,255,255,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(212,175,55,0.3);
}

.btn{
background:#d4af37;
color:#000;
padding:12px 30px;
border-radius:30px;
text-decoration:none;
margin:10px;
display:inline-block;
font-weight:600;
}

.secondary{
background:transparent;
border:2px solid #d4af37;
color:#d4af37;
}

form input,form select{
width:100%;
padding:12px;
margin:10px 0;
background:rgba(255,255,255,0.1);
border:none;
color:#fff;
border-radius:10px;
}

form button{
width:100%;
padding:12px;
background:#d4af37;
border:none;
font-weight:600;
color:#000;
border-radius:10px;
cursor:pointer;
}

.map-wrapper{
height:400px;
border-radius:15px;
overflow:hidden;
}

.map-wrapper iframe{
width:100%;
height:100%;
border:0;
}

footer{
background:#000;
text-align:center;
padding:30px;
}

.whatsapp-left{
position:fixed;
bottom:20px;
left:20px;
width:50px;
height:50px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
z-index:999;
}

.whatsapp-left img{
width:28px;
height:28px;
}

@media(max-width:992px){
nav{
position:absolute;
top:80px;
right:0;
background:#081426;
flex-direction:column;
width:200px;
display:none;
padding:20px;
}

nav.active{display:flex;}
nav a{margin:10px 0;}
.menu-toggle{display:block;}
h1{font-size:26px;}
}