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

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

header{
    background:#d16b2c;
    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/sun.jpeg');
    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/sun.jpeg');
    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:#d16b2c;
    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:#f5972c;
    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;
}

.destination-county{
    color:#666;
    margin:10px 0 15px;
}

.destination-county i{
    color:#ff6600;
    margin-right:5px;
}

.destination-description{
    line-height:1.8;
    margin-bottom:25px;
}

.destination-card{
    transition:transform .3s ease;
}

.destination-card:hover{
    transform:translateY(-5px);
}

.no-destinations{
    width:100%;
    text-align:center;
    padding:60px 20px;
}

.tours-section{
    padding:70px 20px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:35px;
    margin-bottom:10px;
}

.section-heading p{
    color:#666;
}

.tour-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.tour-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.tour-card:hover{
    transform:translateY(-5px);
}

.tour-image{
    width:100%;
    height:220px;
    overflow:hidden;
}

.tour-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tour-content{
    padding:20px;
}

.tour-content h3{
    font-size:22px;
    margin-bottom:10px;
}

.tour-location{
    color:#666;
}

.tour-location i{
    margin-right:5px;
}

.tour-details{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:18px 0;
}

.tour-price{
    font-weight:bold;
    font-size:18px;
}

.tour-description{
    color:#666;
    line-height:1.6;
}

.tour-btn{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:11px 20px;
    border-radius:5px;
    margin-top:15px;
}

.tour-btn:hover{
    background:#0b5ed7;
    color:#fff;
}

.no-tours{
    text-align:center;
    width:100%;
    padding:50px;
}

.tour-details-page{
    padding:60px 20px;
}

.tour-detail-image{
    width:100%;
    max-height:500px;
    overflow:hidden;
    border-radius:10px;
    margin-bottom:30px;
}

.tour-detail-image img{
    width:100%;
    max-height:500px;
    object-fit:cover;
}

.tour-detail-content{
    max-width:900px;
    margin:auto;
}

.tour-detail-content h1{
    font-size:40px;
    margin-bottom:20px;
}

.tour-meta{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:30px;
    color:#555;
}

.tour-meta i{
    margin-right:5px;
}

.tour-meta .tour-price{
    color:#0d6efd;
}

.tour-meta small{
    display:block;
    font-size:12px;
    color:#777;
    font-weight:normal;
}

.tour-description-full{
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;
}

.back-link{
    display:inline-block;
    margin-left:15px;
    text-decoration:none;
    color:#555;
}

.back-link:hover{
    color:#0d6efd;
}

.booking-page{
    padding:70px 20px;
    background:#f7f7f7;
}

.booking-container{
    max-width:900px;
    margin:auto;
}

.booking-header{
    text-align:center;
    margin-bottom:35px;
}

.booking-header h1{
    font-size:38px;
    margin-bottom:10px;
}

.booking-header p{
    color:#666;
}

.selected-tour{
    display:flex;
    gap:20px;
    align-items:center;
    background:#fff;
    padding:20px;
    border-radius:10px;
    margin-bottom:25px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.selected-tour img{
    width:160px;
    height:100px;
    object-fit:cover;
    border-radius:7px;
}

.selected-tour h3{
    margin-bottom:8px;
}

.selected-tour p{
    margin:5px 0;
    color:#666;
}

.booking-form{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

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

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

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

.form-group textarea{
    resize:vertical;
}

.booking-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:5px;
    background:#0d6efd;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

.booking-btn:hover{
    background:#0b5ed7;
}

.booking-success{
    min-height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 20px;
}

.success-box{
    max-width:600px;
    text-align:center;
    background:#fff;
    padding:50px;
    border-radius:10px;
    box-shadow:0 3px 15px rgba(0,0,0,.1);
}

.success-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#198754;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.success-box h1{
    margin-bottom:15px;
}

.success-box p{
    color:#666;
    margin-bottom:10px;
}

@media(max-width:700px){

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .selected-tour{
        flex-direction:column;
        align-items:flex-start;
    }

    .selected-tour img{
        width:100%;
        height:200px;
    }

    .booking-form{
        padding:20px;
    }

}

.gallery-section{
    padding:70px 20px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.1);
}

.gallery-item img{
    display:block;
    width:100%;
    height:280px;
    object-fit:cover;
    transition:transform .4s ease;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.gallery-caption{
    padding:18px;
}

.gallery-caption h3{
    margin-bottom:8px;
    font-size:20px;
}

.gallery-caption p{
    color:#666;
    line-height:1.6;
    margin:0;
}

.no-gallery{
    width:100%;
    text-align:center;
    padding:60px 20px;
}

@media(max-width:600px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }

}