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

body{
background:#f4faff;
color:#333;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:#008cff;
}

.logo{
color:white;
font-size:30px;
font-weight:bold;
}

.nav-links{
display:flex;
list-style:none;
gap:20px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:bold;
}

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
background-size:cover;
background-position:center;
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:20px;
}

button{
padding:15px 30px;
background:#00bfff;
border:none;
color:white;
border-radius:10px;
cursor:pointer;
font-size:18px;
}

.features,
.planner,
.reviews,
.page,
.services-page,
.destinations,
.contact-page{
padding:100px 10%;
text-align:center;
}

.feature-container,
.review-container,
.services-grid,
.destination-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:50px;
}

.feature-card,
.review-card,
.service-box,
.destination-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.feature-card:hover,
.review-card:hover,
.service-box:hover,
.destination-card:hover{
transform:translateY(-10px);
}

.destination-card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
}

.planner-form,
.contact-form{
display:flex;
flex-direction:column;
gap:20px;
max-width:500px;
margin:auto;
margin-top:40px;
}

input,
textarea,
select{
padding:15px;
border:1px solid #ccc;
border-radius:10px;
}

footer{
background:#008cff;
color:white;
text-align:center;
padding:20px;
}