/*====================================
TRIPSBUZZ HOLIDAYS V2
STYLE.CSS
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*====================================
TOP BAR
====================================*/

.top-bar{
    background:#e53935;
    color:#fff;
    font-size:14px;
}

.top-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-left a,
.top-right a{
    color:#fff;
}

.top-right a:hover{
    color:#ffd54f;
}

/*====================================
HEADER
====================================*/

header{
    background:#fff;
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}


nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#1d3557;
    font-weight:600;
    font-size:15px;
}

nav ul li a:hover{
    color:#e53935;
}

.quote-btn{
    background:#e53935;
    color:#fff;
    padding:13px 28px;
    border-radius:50px;
    font-weight:600;
}

.quote-btn:hover{
    background:#1d3557;
}

/*====================================
HERO
====================================*/

.hero{
    background:linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.35)), url("../images/hero-lux.jpg") center/cover no-repeat;
    background-position:center;
    background-size:cover;
    /* further reduce hero height to keep content within the viewport */
    min-height:60vh;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-overlay{
    width:100%;
}

.hero-content{
    text-align:center;
    color:#fff;
    /* tighter vertical padding so headline + search fit without scrolling */
    padding:30px 0 60px;
}

/* make headline scale smoothly but cap at a smaller max to avoid overpowering the page */
.hero-content h1{
    font-size:clamp(24px, 5.5vw, 48px);
    font-weight:700;
    line-height:1.02;
    margin-bottom:10px;
    letter-spacing:-0.5px;
    text-shadow:0 6px 20px rgba(0,0,0,0.55);
}

.hero-content p{
    font-size:clamp(14px,2.2vw,18px);
}

/* bring the search box closer to the hero content */
.search-box{
    transform: translateY(20px);
    max-width:1000px;
}

/* logo sizing (no border) - make the logo larger, keep small padding for spacing */
.logo{
    padding:6px 10px;
    border-radius:8px;
    display:inline-block;
    transition:all .25s ease;
}

/* increase logo on larger screens to make it stand out */
.logo img{
    width:200px; /* increased size per request */
    display:block;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
    opacity:0.95;
}

/*====================================
SEARCH BOX
====================================*/

.search-box{
    background: rgba(255,255,255,0.96);
    border-radius:28px;
    display:grid;
    grid-template-columns: 1.3fr 0.9fr 0.7fr auto;
    gap:18px;
    padding:18px;
    box-shadow: 0 30px 60px rgba(13,38,59,0.12);
    max-width:1100px;
    margin: 0 auto;
    transform: translateY(40px);
    backdrop-filter: blur(6px);
    align-items:center;
}

.search-box select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    width:100%;
    padding:14px 18px;
    border:1px solid #eef2f5;
    border-radius:12px;
    font-size:16px;
    color:#123;
    background:transparent;
    outline:none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.search-box select:focus{
    border-color:#d0d7df;
    box-shadow:0 6px 18px rgba(29,53,87,0.06);
}

.search-box button{
    border:none;
    background: linear-gradient(90deg,#ff6b6b,#e53935);
    color:#fff;
    padding:14px 34px;
    border-radius:30px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:all .25s ease;
    box-shadow: 0 12px 30px rgba(229,57,53,0.18);
}

.search-box button:hover{
    transform:translateY(-3px);
    box-shadow: 0 18px 40px rgba(229,57,53,0.22);
}

/* responsive tweaks for the hero search */
@media (max-width: 900px){
    .hero-content h1{ font-size:44px; }
    .search-box{ grid-template-columns: 1fr 0.9fr auto; padding:16px; transform: translateY(30px); }
}
@media (max-width: 640px){
    .hero-content h1{ font-size:28px; }
    .hero-content p{ font-size:16px; }
    .search-box{ grid-template-columns:1fr; gap:12px; padding:14px; transform: translateY(20px); }
    .search-box button{ width:100%; }
}

.search-box button:hover{

    background:#1d3557;

}/*====================================
POPULAR DESTINATIONS
====================================*/

.popular{
    padding:90px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#1d3557;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.destination-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.destination-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.destination-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.destination-card:hover img{
    transform:scale(1.08);
}

.destination-content{
    padding:25px;
}

.destination-content h3{
    color:#1d3557;
    font-size:24px;
    margin-bottom:10px;
}

.destination-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:22px;
}

.destination-btn{
    display:inline-block;
    background:#e53935;
    color:#fff;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;
}

.destination-btn:hover{
    background:#1d3557;
}

/*====================================
LATEST TRAVEL OFFERS
====================================*/

.offers{
    padding:90px 0;
    background:#f8fafc;
}

.offer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.offer-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.offer-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.offer-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.offer-content{
    padding:25px;
}

.offer-tag{
    display:inline-block;
    background:#e53935;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.offer-content h3{
    font-size:24px;
    color:#1d3557;
    margin-bottom:12px;
}

.offer-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.offer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.offer-btn{
    background:#1d3557;
    color:#fff;
    padding:12px 26px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.offer-btn:hover{
    background:#e53935;
}/*====================================
WHY CHOOSE US
====================================*/

.why-us{
    padding:90px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    text-align:center;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-card i{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
}

.why-card h3{
    font-size:22px;
    color:#1d3557;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/*====================================
TRUSTED BY
====================================*/

.trusted{
    padding:90px 0;
    background:#f8fafc;
}

.trusted-logos{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    align-items:center;
    justify-items:center;
}

.trusted-logos img{
    max-width:170px;
    opacity:.75;
    transition:.3s;
}

.trusted-logos img:hover{
    opacity:1;
    transform:scale(1.05);
}

/*====================================
CONTACT
====================================*/

.contact{
    padding:90px 0;
    background:#ffffff;
}

.contact-form{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    font-family:inherit;
    outline:none;
    transition:.3s;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#e53935;

}

.contact-form textarea{

    grid-column:1/3;
    resize:vertical;
    min-height:160px;

}

.contact-form button{

    grid-column:1/3;
    border:none;
    background:#e53935;
    color:#fff;
    padding:18px;
    font-size:17px;
    font-weight:600;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;

}

.contact-form button:hover{

    background:#1d3557;

}/*====================================
FOOTER
====================================*/

.footer{
    background:#0f172a;
    color:#fff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:15px;
}

.footer-box h3{
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:60px;
    height:3px;
    background:#e53935;
}

.footer-box ul li{
    margin-bottom:14px;
}

.footer-box ul li a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#fff;
    padding-left:8px;
}

.footer-box i{
    color:#e53935;
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.footer-social a:hover{
    background:#e53935;
    transform:translateY(-5px);
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#cbd5e1;
    font-size:14px;
}

/*====================================
WHATSAPP BUTTON
====================================*/

.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:30px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/*====================================
BACK TO TOP
====================================*/

#topBtn{
    position:fixed;
    right:30px;
    bottom:105px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

#topBtn:hover{
    background:#1d3557;
    transform:translateY(-5px);
}

/*====================================
COMMON ANIMATION
====================================*/

.destination-card,
.offer-card,
.why-card,
.contact-form{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*====================================
SECTION SPACING
====================================*/

section{
    overflow:hidden;
}

button,
input,
select,
textarea{
    font-family:'Poppins',sans-serif;
}

::selection{
    background:#e53935;
    color:#fff;
}/* ======================================================
   TRIPSBUZZ HOLIDAYS - STYLE.CSS PART 6
====================================================== */


/* ===========================
   FILTER BUTTONS
=========================== */

.filter-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin:40px 0;
}

.filter-btn{
    padding:12px 28px;
    border:none;
    border-radius:40px;
    background:#f5f5f5;
    color:#333;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.filter-btn:hover{
    background:#0d6efd;
    color:#fff;
}

.filter-btn.active{
    background:#ff6b00;
    color:#fff;
    box-shadow:0 8px 25px rgba(255,107,0,.35);
}


/* ===========================
   COUNTER
=========================== */

.counter-section{
    padding:80px 20px;
    background:#f8fbff;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.counter-box{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:40px 20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter{
    font-size:48px;
    font-weight:700;
    color:#0d6efd;
}

.counter-title{
    margin-top:10px;
    font-size:17px;
    color:#555;
}


/* ===========================
   REVEAL ANIMATION
=========================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* ===========================
   BACK TO TOP
=========================== */

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#ff6b00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);

    opacity:0;
    visibility:hidden;

    transition:.35s;
    z-index:999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    transform:translateY(-5px);
    background:#0d6efd;
}


/* ===========================
   ACTIVE NAV LINK
=========================== */

nav a.active{
    color:#ff6b00 !important;
    font-weight:700;
}


/* ===========================
   SEARCH BAR
=========================== */


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

    .counter{
        font-size:38px;
    }

    .counter-title{
        font-size:15px;
    }

    .filter-btn{
        padding:10px 20px;
        font-size:14px;
    }

    .back-to-top{
        width:45px;
        height:45px;
        right:18px;
        bottom:18px;
    }

}/* ==========================================
   PRELOADER
========================================== */

#preloader{
    position:fixed;
    inset:0;
    background:#ffffff;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loader{
    width:70px;
    height:70px;
    border-radius:50%;
    border:6px solid #eee;
    border-top:6px solid #ff6b00;
    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}


/* ==========================================
   WHATSAPP
========================================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:95px;

    width:60px;

    height:60px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}



/* ==========================================
   STICKY HEADER
========================================== */

header.sticky{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}/* ================= OUR SERVICES ================= */

.services{
    padding:90px 0;
    background:#ffffff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card i{
    font-size:48px;
    color:#ff6b35;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    color:#0d2d62;
    font-size:22px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}/* ================= HOW IT WORKS ================= */

.process{
    padding:90px 0;
    background:#f8fbff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.process-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    font-weight:700;
    color:#e9eef8;
}

.process-card i{
    font-size:42px;
    color:#ff6b35;
    margin-bottom:20px;
}

.process-card h3{
    margin-bottom:12px;
    color:#0d2d62;
}

.process-card p{
    color:#666;
    line-height:1.7;
}/*==============================
ABOUT PAGE
==============================*/

.page-banner{

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/hero.jpg") center/cover;

    color:#fff;

    text-align:center;

    padding:120px 20px;

}

.page-banner h1{

    font-size:48px;

    margin-bottom:20px;

}

.page-banner p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.about-page{

    padding:80px 0;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image{

    width:100%;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.about-grid h2{

    color:#0d2d62;

    margin-bottom:20px;

}

.about-grid p{

    line-height:1.9;

    color:#666;

    margin-bottom:20px;

}

.package-hero{

    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../images/hero1.jpg") center/cover no-repeat;

    color:#fff;

    text-align:center;

    padding:140px 20px;

}

.package-hero h1{

    font-size:48px;

    margin-bottom:18px;

}

.package-hero p{

    max-width:720px;

    margin:auto;

    line-height:1.8;

    color:#f1f5f9;

}

.package-overview,
.hotel-section,
.inclusions,
.package-price,
.visa-section,
.destinations-section{

    padding:80px 0;

}

.overview-grid,
.itinerary-list,
.include-grid,
.services-grid,
.counter-grid{

    display:grid;

    gap:30px;

}

.overview-grid{

    grid-template-columns:1fr 1fr;

    align-items:center;

}

.overview-image{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 45px rgba(0,0,0,.12);

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:#e53935;

    color:#fff;

    padding:15px 32px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    background:#1d3557;

}

.itinerary-list{

    grid-template-columns:repeat(2,1fr);

}

.day-card,
.hotel-card,
.include-box,
.price-card,
.highlight-box{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.day-card h3,
.hotel-card h3,
.include-box h3,
.price-card h2{

    color:#1d3557;

    margin-bottom:18px;

}

.day-card p,
.hotel-card p,
.include-box p{

    line-height:1.8;

    color:#666;

}

.include-grid{

    grid-template-columns:repeat(2,1fr);

}

.package-price .price-card{

    text-align:center;

}

.price-card h1{

    font-size:56px;

    margin:24px 0;

}

.price-card h1 span{

    font-size:18px;

    color:#666;

}

.package-card{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.whatsapp-book{

    background:#f8fafc;

}

.whatsapp-book .btn-primary{

    background:#25d366;

}

.package-hero .btn-primary{

    margin-top:30px;

}

@media(max-width:991px){

    .overview-grid,

    .itinerary-list,

    .include-grid{

        grid-template-columns:1fr;

    }

}

/*==============================
MISSION & VISION
==============================*/

.mission-vision{

    padding:80px 0;
    background:#f8fbff;

}

.mission-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.mission-card{

    background:#fff;
    padding:40px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.mission-card i{

    font-size:45px;
    color:#ff6b35;
    margin-bottom:20px;

}

.mission-card h3{

    margin-bottom:15px;
    color:#0d2d62;

}

.mission-card p{

    color:#666;
    line-height:1.8;

}


/*==============================
COMPANY HIGHLIGHTS
==============================*/

.company-highlights{

    padding:80px 0;
    background:#ffffff;

}

.highlight-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;

}

.highlight-box{

    background:#0d2d62;
    color:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;

}

.highlight-box h2{

    font-size:42px;
    margin-bottom:10px;

}