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

body{
    font-family:Arial,sans-serif;
}

header{
    background:#0d6efd;
    color:white;
    display:flex;
    justify-content:space-between;
    padding:15px 50px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
}

.hero{
    height:80vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:url('../images/hero.jpg');
    background-size:cover;
    color:white;
}

.btn{
    background:orange;
    padding:12px 20px;
    color:white;
    text-decoration:none;
    margin-top:20px;
}

.hero{
    height:100vh;
    background:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.hero-content{
    background:rgba(0,0,0,0.5);
    padding:40px;
    border-radius:10px;
}

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

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

.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 30px;
    background:#ff6600;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

.featured-tours,
.destinations,
.why-us,
.testimonials,
.cta{
    padding:80px 10%;
}

.featured-tours h2,
.destinations h2,
.why-us h2,
.testimonials h2,
.cta h2{
    text-align:center;
    margin-bottom:40px;
}

.tour-grid,
.destination-grid,
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.tour-card{
    background:white;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
    border-radius:10px;
    overflow:hidden;
}

.tour-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.tour-info{
    padding:20px;
}

.price{
    color:#ff6600;
    font-weight:bold;
}

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

.why-grid div{
    text-align:center;
    padding:30px;
    background:#f8f8f8;
}

.testimonial-container{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.testimonial{
    flex:1;
    min-width:300px;
    background:#f4f4f4;
    padding:30px;
}

.cta{
    text-align:center;
    background:#0d6efd;
    color:white;
}

.booking-section{
    padding:80px 20px;
    background:#f5f5f5;
}

.booking-container{
    max-width:700px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,.1);
}

.booking-container h2{
    text-align:center;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:5px;
}

.success-message{
    background:#d4edda;
    color:#155724;
    padding:15px;
    border-radius:5px;
    margin-bottom:20px;
}

.payment-box{
    background:#fff3cd;
    padding:20px;
    border-radius:5px;
    margin-bottom:20px;
}

.page-banner{
    background:#0d6efd;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:10px;
}

.destinations-page{
    padding:80px 10%;
}

.destination-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

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

.destination-info{
    padding:20px;
}

.destination-info h3{
    margin-bottom:15px;
}

.destination-info p{
    line-height:1.6;
    margin-bottom:20px;
}

.destination-details{
    padding:80px 10%;
}

.destination-cover{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:30px;
}

.details-content h1{
    margin-bottom:20px;
}

.details-content p{
    line-height:1.8;
}