/* ====================================
   TRIPSBUZZ HOLIDAYS - PART 1
   Navbar + Hero + Slider
==================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#ffffff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*================ NAVBAR =================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(12px);
}

.nav{
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:65px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff8c00;
}

.book-btn{
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    padding:13px 30px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.book-btn:hover{
    background:#ff9800;
}

/*================ HERO =================*/

.hero{
    position:relative;
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

/*================ SLIDER =================*/

.slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}

.slider img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.5s ease;
}

.slider img.active{
    opacity:1;
}

/*================ OVERLAY =================*/

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:1;
}

/*================ HERO CONTENT =================*/

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
    text-shadow:0 5px 20px rgba(0,0,0,.5);
}

.hero-content p{
    font-size:22px;
    margin-bottom:35px;
    text-shadow:0 2px 10px rgba(0,0,0,.5);
}

/*================ BUTTONS =================*/

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btn-primary:hover{
    background:#ff9800;
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/*================ ANIMATION =================*/

.hero-content{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*================ MOBILE =================*/

@media(max-width:991px){

    nav{
        display:none;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:576px){

    .logo img{
        height:50px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

}.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:42px;
color:#003366;
margin-bottom:10px;
}

.section-title p{
color:#666;
}

.destinations,
.packages{
padding:90px 0;
}

.destination-grid,
.package-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.destination-card,
.package-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.1);
transition:.4s;
}

.destination-card:hover,
.package-card:hover{
transform:translateY(-10px);
}

.destination-card img,
.package-card img{
width:100%;
height:230px;
object-fit:cover;
}

.destination-content,
.package-info{
padding:25px;
}

.tag{
position:absolute;
background:#ff7a00;
color:#fff;
padding:8px 15px;
border-radius:20px;
margin:15px;
font-size:12px;
font-weight:600;
}

.price span{
color:#ff7a00;
font-size:28px;
font-weight:700;
}

.card-btn,
.package-info a{
display:inline-block;
margin-top:15px;
padding:12px 28px;
background:#003366;
color:#fff;
text-decoration:none;
border-radius:30px;
transition:.3s;
}

.card-btn:hover,
.package-info a:hover{
background:#ff7a00;
}/*========================================
        PART 2 - DESTINATIONS & PACKAGES
========================================*/

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#003366;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

/*================ DESTINATION GRID ================*/

.destination-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.destination-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:.4s;
}

.destination-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.destination-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.destination-card:hover img{
    transform:scale(1.08);
}

.tag{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff7a00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.destination-content{
    padding:25px;
}

.destination-content h3{
    font-size:28px;
    color:#003366;
    margin-bottom:10px;
}

.destination-content p{
    color:#777;
    margin-bottom:18px;
}

.price{
    font-size:18px;
    margin-bottom:20px;
}

.price span{
    font-size:30px;
    color:#ff7a00;
    font-weight:700;
}

.card-btn{
    display:inline-block;
    padding:12px 30px;
    background:#003366;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.card-btn:hover{
    background:#ff7a00;
}

/*================ PACKAGES ================*/

.packages{
    background:#f8f9fb;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.package-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:.4s;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.package-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.package-info{
    padding:25px;
}

.package-info h3{
    font-size:28px;
    color:#003366;
    margin-bottom:15px;
}

.package-info p{
    color:#666;
    margin:10px 0;
}

.package-info h4{
    font-size:32px;
    color:#ff7a00;
    margin:20px 0;
}

.package-info a{
    display:inline-block;
    padding:12px 30px;
    background:#003366;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.package-info a:hover{
    background:#ff7a00;
}

/*================ RESPONSIVE ================*/

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .destination-grid,
    .package-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .section-title h2{
        font-size:28px;
    }

    .destination-content h3,
    .package-info h3{
        font-size:22px;
    }

    .price span,
    .package-info h4{
        font-size:26px;
    }

}/*================ WHY US =================*/

.why-us,
.services,
.testimonials{
padding:90px 0;
background:#fff;
}

.why-grid,
.testimonial-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.why-card,
.testimonial-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.why-card:hover,
.testimonial-card:hover{

transform:translateY(-10px);

}

.why-card i{

font-size:50px;

color:#ff7a00;

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

color:#003366;

}

.testimonial-card{

font-size:18px;

line-height:1.8;

}

.testimonial-card h4{

margin-top:20px;

color:#ff7a00;

}

/*================ CONTACT =================*/

.contact{

background:#003366;

color:#fff;

text-align:center;

padding:90px 20px;

}

.contact h2{

font-size:42px;

margin-bottom:20px;

}

.contact p{

font-size:20px;

margin:10px 0;

}

/*================ FOOTER =================*/

footer{

background:#001a33;

color:#fff;

text-align:center;

padding:40px 20px;

}

.footer-logo{

height:70px;

margin-bottom:20px;

}

/*================ WHATSAPP =================*/

.whatsapp{

position:fixed;

bottom:25px;

right:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:32px;

text-decoration:none;

box-shadow:0 10px 20px rgba(0,0,0,.25);

z-index:9999;

}/*================ STATS =================*/

.stats{

background:#003366;

padding:90px 0;

color:#fff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

text-align:center;

}

.stat-box h2{

font-size:55px;

color:#ff9800;

margin-bottom:10px;

}

.stat-box p{

font-size:20px;

}

/*================ ENQUIRY =================*/

.enquiry{

padding:90px 0;

background:#f8f9fb;

}

.enquiry-form{

max-width:900px;

margin:auto;

display:grid;

gap:20px;

}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select{

padding:16px;

font-size:17px;

border:1px solid #ddd;

border-radius:10px;

outline:none;

font-family:Poppins;

}

.enquiry-form textarea{

resize:none;

}

.enquiry-form button{

border:none;

cursor:pointer;

}

/*================ MAP =================*/

.map iframe{

width:100%;

height:450px;

border:none;

}

/*================ MOBILE =================*/

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:576px){

.stats-grid{

grid-template-columns:1fr;

}

}/*================ NEWSLETTER =================*/

.newsletter{

padding:90px 20px;

background:#003366;

color:#fff;

text-align:center;

}

.newsletter h2{

font-size:40px;

margin-bottom:15px;

}

.newsletter p{

margin-bottom:30px;

}

.newsletter-form{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

}

.newsletter-form input{

width:350px;

padding:15px;

border:none;

border-radius:40px;

font-size:16px;

}

.newsletter-form button{

padding:15px 35px;

border:none;

border-radius:40px;

background:#ff7a00;

color:#fff;

font-size:16px;

cursor:pointer;

transition:.3s;

}

.newsletter-form button:hover{

background:#ff9800;

}

/*================ BACK TO TOP =================*/

#topBtn{

position:fixed;

bottom:100px;

right:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#003366;

color:#fff;

font-size:22px;

display:none;

cursor:pointer;

z-index:9999;

box-shadow:0 10px 20px rgba(0,0,0,.25);

}

#topBtn:hover{

background:#ff7a00;

}

/*================ OFFER POPUP =================*/

.offer-popup{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.6);

justify-content:center;

align-items:center;

z-index:99999;

}

.offer-box{

background:#fff;

padding:40px;

border-radius:20px;

max-width:500px;

text-align:center;

position:relative;

}

.offer-box h2{

color:#003366;

margin-bottom:20px;

}

.offer-box p{

margin-bottom:25px;

line-height:1.8;

}

#closeOffer{

position:absolute;

top:15px;

right:20px;

font-size:28px;

cursor:pointer;

font-weight:bold;

}