*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}

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

html,
body{
    width:100%;
    min-height:100%;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    overflow-y:auto;
}

img{
    max-width:100%;
}

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    min-height:650px;
    overflow:hidden;
}

@media(max-width:768px){

    html{
        scroll-behavior:auto;
    }

    body{
        overflow-x:hidden;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
    }

    .hero-slider{
        height:100svh;
        min-height:600px;
    }

    .cta-banner{
        background-attachment:scroll;
    }
}

body{
    font-family:'Poppins',sans-serif;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}
.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* Sticky Navbar */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 7%;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(12px);
}

.logo img{
    height:65px;
    display:block;
}

/* Menu */

.nav-menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-menu a:hover{
    color:#ffb703;
}

.book-btn{
    text-decoration:none;
    background:#ff6b35;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* Hero Slider */

.hero-slider{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

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

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:7%;
    transform:translateY(-50%);
    color:#fff;
    max-width:700px;
    z-index:2;
}

.hero-content span{
    color:#ffb703;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin:15px 0;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    text-decoration:none;
    background:#ff6b35;
    color:#fff;
    padding:15px 30px;
    border-radius:40px;
}

.btn-outline{
    text-decoration:none;
    border:2px solid #fff;
    color:#fff;
    padding:15px 30px;
    border-radius:40px;
}

/* Mobile */

@media(max-width:991px){

.menu-toggle{
    display:block;
}

.book-btn{
    display:none;
}

.nav-menu{
    position:absolute;
    top:95px;
    left:5%;
    right:5%;
    background:#111;
    border-radius:15px;
    flex-direction:column;
    text-align:center;
    padding:20px;
    display:none;
    gap:20px;
}

.nav-menu.active{
    display:flex;
}

.hero-content{
    left:5%;
    right:5%;
    text-align:center;
    max-width:100%;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    justify-content:center;
}
}


.destinations{
    padding:100px 8%;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#ff6b35;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin:10px 0;
}

.section-title p{
    color:#666;
    max-width:600px;
    margin:auto;
}

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

.destination-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

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

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

.destination-content{
    padding:25px;
}

.destination-content h3{
    font-size:24px;
    margin-bottom:10px;
    color:#222;
}

.destination-content p{
    color:#666;
    margin-bottom:20px;
}

.destination-content a{
    display:inline-block;
    text-decoration:none;
    background:#ff6b35;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    font-weight:600;
}

.tour-packages{
    padding:100px 8%;
    background:#ffffff;
}

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

.package-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.package-card:hover{
    transform:translateY(-10px);
}

.package-image{
    position:relative;
}

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

.price{
    position:absolute;
    top:15px;
    right:15px;
    background:#ff6b35;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-weight:700;
}

.package-content{
    padding:25px;
}

.package-content h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.package-info{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
    color:#666;
    font-size:14px;
}

.package-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.book-btn{
    display:inline-block;
    text-decoration:none;
    background:#ff6b35;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
}

.why-us{
    padding:100px 8%;
    background:#f8f9fa;
}

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

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.icon{
    font-size:50px;
    margin-bottom:15px;
}

.why-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

.stats{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.stat-box{
    background:#ff6b35;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    border-radius:18px;
}

.stat-box h2{
    font-size:40px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:15px;
    font-weight:500;
}
.travel-gallery{
    padding:100px 8%;
    background:#ffffff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

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

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-item.large img{
    height:520px;
}

.gallery-item:not(.large) img{
    height:250px;
}

@media(max-width:768px){

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

.gallery-item.large{
    grid-column:span 1;
    grid-row:span 1;
}

.gallery-item.large img,
.gallery-item img{
    height:250px;
}
}

.testimonials{
    padding:100px 8%;
    background:#f8f9fa;
}

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

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#ffb703;
    font-size:20px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client h4{
    color:#222;
    margin-bottom:4px;
}

.client span{
    color:#888;
    font-size:14px;
}

.cta-banner{
    padding:120px 8%;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('images/cta-bg.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    text-align:center;
}

.cta-content{
    max-width:800px;
    margin:auto;
    color:#fff;
}

.cta-content span{
    display:inline-block;
    color:#ffb703;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.cta-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.cta-content p{
    font-size:18px;
    line-height:1.8;
    color:#f2f2f2;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn{
    text-decoration:none;
    background:#ff6b35;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
}

.cta-btn-outline{
    text-decoration:none;
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-btn-outline:hover{
    background:#fff;
    color:#111;
}

@media(max-width:768px){

.cta-banner{
    padding:80px 6%;
    background-attachment:scroll;
}

.cta-content h2{
    font-size:34px;
}

.cta-content p{
    font-size:16px;
}

}

.footer{
    background:#111827;
    color:#fff;
    padding-top:80px;
}

.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:50px;
}

.footer-box h3{
    font-size:32px;
    margin-bottom:20px;
    color:#ff6b35;
}

.footer-box h4{
    font-size:22px;
    margin-bottom:20px;
}

.footer-box p{
    color:#cfcfcf;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#cfcfcf;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ff6b35;
    padding-left:5px;
}

.social-links{
    margin-top:25px;
    display:flex;
    gap:12px;
}

.social-links a{
    width:42px;
    height:42px;
    background:#1f2937;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#ff6b35;
}

.contact-info li{
    color:#cfcfcf;
    line-height:1.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:20px;
    color:#bdbdbd;
}

@media(max-width:768px){

.footer{
    text-align:center;
}

.social-links{
    justify-content:center;
}

}

.logo img{
    height:60px;
    width:auto;
    display:block;
}

@media(max-width:768px){
    .logo img{
        height:50px;
    }
}

.footer-logo{
    height:70px;
    width:auto;
    margin-bottom:15px;
}

.section-cta{
    text-align:center;
    margin-top:50px;
}

.explore-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:13px 28px;
    background:#fff;
    color:#ff6b35;
    border:2px solid #ff6b35;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:all .3s ease;
}

.explore-btn:hover{
    background:#ff6b35;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(255,107,53,.25);
}

.explore-btn i{
    transition:.3s ease;
}

.explore-btn:hover i{
    transform:translateX(5px);
}

/* FAQ Section */

.faq-section{
padding:100px 8%;
background:#fff;
}

.faq-container{
max-width:850px;
margin:50px auto 0;
}

.faq-item{
background:#f8f9fa;
border:1px solid #eee;
border-radius:12px;
margin-bottom:15px;
overflow:hidden;
}

.faq-question{
width:100%;
border:0;
background:none;
padding:20px 24px;
display:flex;
align-items:center;
justify-content:space-between;
text-align:left;
font-family:'Poppins',sans-serif;
font-size:16px;
font-weight:600;
color:#222;
cursor:pointer;
}

.faq-question span{
font-size:24px;
color:#ff6b35;
transition:.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height:.35s ease;
}

.faq-answer p{
padding:0 24px 20px;
color:#666;
line-height:1.7;
font-size:15px;
}

.faq-item.active .faq-question span{
transform:rotate(45deg);
}

@media(max-width:768px){

```
.faq-section{
    padding:70px 5%;
}

.faq-container{
    margin-top:35px;
}

.faq-question{
    padding:17px 18px;
    font-size:15px;
}

.faq-answer p{
    padding:0 18px 18px;
    font-size:14px;
}
```

}
