body{
margin:0;
font-family:Poppins;
background:#f5f7fa;
}

header{
display:flex;
justify-content:space-between;
padding:20px 10%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
font-size:24px;
font-weight:700;
color:#1a73e8;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

.hero{
height:80vh;
background:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
background-size:cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:48px;
}

.hero button{
margin-top:20px;
padding:12px 25px;
border:none;
background:#ff7a18;
color:white;
font-size:16px;
border-radius:5px;
}

.services{
padding:60px 10%;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.destinations{
padding:60px 10%;
text-align:center;
}

.destination-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}

.place img{
width:100%;
border-radius:10px;
height:200px;
object-fit:cover;
}

.about{
padding:60px 15%;
text-align:center;
background:#fff;
}

.contact{
padding:60px 10%;
text-align:center;
}

form{
display:flex;
flex-direction:column;
width:400px;
margin:auto;
gap:15px;
}

input,textarea{
padding:12px;
border-radius:5px;
border:1px solid #ccc;
}

button{
background:#1a73e8;
color:white;
padding:12px;
border:none;
border-radius:5px;
}

footer{
text-align:center;
padding:20px;
background:#222;
color:white;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
}