
body{
margin:0;
font-family:Arial;
background:black;
color:white;
}

.navbar{
display:flex;
justify-content:space-between;
padding:20px;
border-bottom:1px solid gold;
background:black;
}

.logo{
height:45px;
}

.brand{
display:flex;
gap:10px;
align-items:center;
}

.brand-title{
font-weight:bold;
color:gold;
}

nav a{
margin:10px;
color:white;
text-decoration:none;
}

.btn{
background:gold;
color:black;
padding:10px 20px;
border-radius:10px;
}

.hero{
background:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover;
height:450px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
font-size:40px;
}

.section{
padding:70px 20px;
max-width:1100px;
margin:auto;
}

.dark{
background:#0a0a0a;
}

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

.card{
border:1px solid gold;
padding:20px;
border-radius:10px;
}

.destination img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
}

.dest-info{
margin-top:10px;
}

.simulator input,.simulator select{
padding:10px;
margin:5px;
}

.form{
display:grid;
gap:10px;
max-width:400px;
}

footer{
text-align:center;
padding:40px;
border-top:1px solid gold;
}

.footer-logo{
height:70px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:15px;
border-radius:50%;
font-size:28px;
}
