* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.container {
    width: 90%;
    margin: auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Topbar */
.topbar {
    background: #0c315e;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar {
    transition: all 0.3s ease;
}

.hide-top {
    transform: translateY(-100%);
}

/* Navbar */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background:#15325A;
    z-index:999;
}



nav {
    transition: .3s;
}

nav.scrolled {
    background: #15325A;
}

.nav-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:65px;
    height:auto;
    transform:none;
    display:block;
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:28px;
    margin:0;
    padding:0;
}

.nav-links li{
    display:flex;
    align-items:center;
}

.nav-links a{
    display:flex;
    align-items:center;
    height:80px;
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.nav-links .active {
    color: #ffc107;
}

.login-btn {
    background: #f4c430;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* ===============================
   BASE (Already yours + improved)
================================ */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* =========================================
RESPONSIVE NAVBAR FIX
========================================= */

/* LARGE SCREEN */
@media (min-width:1200px) {

    .container {
        width: 85%;
        margin: auto;
    }

    .nav-links {
        gap: 30px;
    }

}

/* =========================================
LAPTOP
========================================= */
@media (max-width:1199px) {

    .container {
        width: 92%;
        margin: auto;
    }

    .nav-links {
        gap: 22px;
    }

    .logo img {
        width: 55px;
    }

}

/* =========================================
TABLET
========================================= */
@media (max-width:991px) {

    .navbar {
        height: 75px;
    }

    .nav-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo img {
        width: 50px;
    }

    /* MENU ICON */

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: #0d3b66;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
    }

    /* MOBILE MENU */

    .nav-links {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;

        background: #fff;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 20px;

        gap: 5px;

        border-radius: 18px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        width: 100%;
        display: block;
        padding: 14px 16px;
        border-radius: 12px;
        color: #111;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
    }

    .nav-links a:hover {
        background: #f3f7fb;
        color: #10bea6;
    }

    /* HIDE LOGIN BUTTON */

    .login-btn {
        display: none;
    }

}

/* =========================================
MOBILE
========================================= */
@media (max-width:768px) {

    /* TOPBAR */

    .topbar {
        padding: 8px 0;
        font-size: 13px;
    }

    .flex-between {
        display: flex;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* NAVBAR */

    .navbar {
        height: 70px;
        padding: 0;
    }

    .container {
        width: 94%;
    }

    .logo img {
        width: 45px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .nav-links {
        top: 78px;
        padding: 18px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 13px 14px;
    }

}

/* =========================================
SMALL MOBILE
========================================= */
@media (max-width:480px) {

    .topbar {
        font-size: 12px;
    }

    .navbar {
        height: 65px;
    }

    .logo img {
        width: 40px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 8px;
    }

    .nav-links {
        top: 72px;
        border-radius: 15px;
        padding: 15px;
    }

    .nav-links a {
        font-size: 13px;
        padding: 12px;
    }

}

/* ============================= */
/* NAVBAR RIGHT SIDE */
/* ============================= */

.navbar-right{
    display:flex;
    align-items:center;
    height:80px;
    gap:22px;
}


/* ============================= */
/* PHONE NUMBER */
/* ============================= */

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    text-decoration: none;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition: 0.3s;
}

.nav-phone i {
    font-size: 16px;
}

.nav-phone:hover {
    color: #B86008;
}


/* ============================= */
/* WHATSAPP BUTTON */
/* ============================= */

.whatsapp-btn {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 22px;

    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}


/* ============================= */
/* PLAN MY TRIP BUTTON */
/* ============================= */

.plan-trip-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    background: #B86008;
    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.plan-trip-btn:hover {
    background: #D17A12;
    color: #ffffff;
}

.plan-trip-btn i {
    font-size: 11px;
}

@media (max-width: 992px) {

    .nav-links {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;

        

        padding: 25px;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar-right {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #ffffff;
        font-size: 25px;
        cursor: pointer;
    }

}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;

    display: flex;
    align-items: center;

    background: url("/images/background img.jpg") center/cover;
}

.overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .45);
}

.hero-container {

    position: relative;

    width: 90%;
    max-width: 1300px;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 70px;
}

.hero-left {
    max-width: 650px;
    color: #fff;
}

/* Small Heading */

.small-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #f4f4f4;
    margin-bottom: 18px;
}

/* Main Heading */

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 82px;
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
}

.hero-title span {
    display: block;
    color: #d9a126;
}

/* Paragraph */

.hero-left p {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 35px;
}

.booking-card {

    width: 420px;

    background: #fff;

    border-radius: 18px;

    padding: 30px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.tabs {

    display: flex;

    justify-content: space-between;

    margin-bottom: 30px;
}

.tabs button {

    border: none;

    background: none;

    cursor: pointer;

    font-weight: 600;
}

.tabs .active {

    color: #f4b400;
}

.booking-card input,
.booking-card select {

    width: 100%;

    height: 55px;

    border: 1px solid #ddd;

    border-radius: 10px;

    padding: 0 15px;

    margin-bottom: 18px;
}

.row {

    display: flex;

    gap: 15px;
}

.row input {

    flex: 1;
}

.search-btn {

    width: 100%;

    height: 55px;

    background: #15325A;

    color: #fff;

    border: none;

    border-radius: 10px;

    font-weight: 700;

    cursor: pointer;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-buttons .primary {
    background: #F6BE2C;
    color: #111;
}

.hero-buttons .primary:hover {
    background: #dca500;
}

.hero-buttons .secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.hero-buttons .secondary:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 992px) {

    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 45px;
    }

    .booking-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width:768px) {

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .row {
        flex-direction: column;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}


/*================ FEATURES =================*/

.features-bar {

    width: 100%;
    background: #fff;

    display: flex;
    justify-content: space-around;
    align-items: center;

    padding: 30px 8%;

    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);

    gap: 30px;
}

.feature-item {

    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {

    font-size: 35px;
    color: #f4b400;
}

.feature-item h4 {

    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {

    color: #777;
    font-size: 14px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

.trust-section{
    width:100%;
    padding:0 15px;
    margin-top:-35px;   /* container ko 35px upar le jayega */
    position:relative;
    z-index:10;
}
.trust-container{
    max-width:1300px;      /* 1200px -> 1300px */
    width:100%;
    margin:auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);

    display:flex;
    align-items:center;
    overflow:hidden;
}

.trust-item{
    flex:1;
    min-width:0;
    display:flex;
    align-items:center;
    gap:8px;               /* 10px -> 8px */
    padding:10px 14px;     /* Height kam */
    border-right:1px solid #eee;
}


.trust-item:last-child{
    border-right:none;
}

.icon{
    width:38px;            /* 50px -> 38px */
    height:38px;
    flex-shrink:0;
}


.icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.text h4{
    font-size:13px;        /* 14px -> 13px */
    font-weight:600;
    margin-bottom:2px;     /* 5px -> 2px */
    line-height:1.2;
}

.text p{
    font-size:11px;        /* 13px -> 11px */
    color:#777;
    line-height:1.3;
}

/* Scrollbar */

.trust-container::-webkit-scrollbar{
    height:5px;
}

.trust-container::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

/* Tablet */

@media (max-width:992px){

    .trust-item{
        min-width:220px;
        padding:10px 12px;
    }

    .icon{
        width:34px;
        height:34px;
    }

    .text h4{
        font-size:12px;
    }

    .text p{
        font-size:10px;
    }
}

@media (max-width:576px){

    .trust-section{
        padding:10px;
    }

    .trust-item{
        min-width:220px;
        padding:10px 12px;
        gap:8px;
    }

    .icon{
        width:32px;
        height:32px;
    }

    .text h4{
        font-size:12px;
    }

    .text p{
        font-size:10px;
    }
}


/* =========================================
   TRENDING DESTINATIONS
========================================= */

.trending-destinations {
    width: 100%;
    padding: 50px 6%;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.trending-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 35px;
}


.trending-header h2 {

    margin: 0;

    font-size: 32px;

    font-weight: 600;

    color: #111827;
}



/* =========================================
   DESTINATION TABS
========================================= */

.destination-tabs {

    display: flex;

    align-items: center;

    background: #f3f4f6;

    border-radius: 30px;

    padding: 4px;
}


.destination-tab {

    border: none;

    background: transparent;

    padding: 12px 28px;

    border-radius: 25px;

    font-size: 15px;

    color: #64748b;

    cursor: pointer;

    transition: all 0.3s ease;
}


.destination-tab.active {

    background: #1455a5;

    color: #ffffff;

    box-shadow: 0 3px 8px rgba(20, 85, 165, 0.25);
}



/* =========================================
   SWIPER
========================================= */

.destinationSwiper {
    width: 100%;
    padding: 5px 0 50px;
    overflow: hidden;
}

.destinationSwiper .swiper-slide {

    display: flex;

    justify-content: center;

    height: auto;
}



/* =========================================
   DESTINATION CARD
========================================= */

.destination-card {

    position: relative;
    display: block;
    width: 100%;

    max-width: 235px;

    height: 320px;

    overflow: hidden;

    border-radius: 120px;

    background: #ddd;

    cursor: pointer;

    transition: transform 0.3s ease,
            box-shadow 0.3s ease;
}


.destination-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15);
}



/* =========================================
   IMAGE
========================================= */

.destination-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.destination-card:hover img {

    transform: scale(1.05);
}



/* =========================================
   DARK GRADIENT
========================================= */

.destination-card::after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 55%;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0));

    pointer-events: none;
}



/* =========================================
   DESTINATION NAME
========================================= */

.destination-name {

    position: absolute;

    top: 35px;

    left: 10px;

    right: 10px;

    z-index: 2;

    text-align: center;

    color: #ffffff;

    font-size: 28px;

    font-weight: 700;

    line-height: 1.2;

    text-transform: uppercase;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.5);
}



/* =========================================
   SWIPER ARROWS
========================================= */

.destinationSwiper .swiper-button-prev,
.destinationSwiper .swiper-button-next {

    width: 45px;

    height: 45px;

    margin-top: -25px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.15);
}


.destinationSwiper .swiper-button-prev::after,
.destinationSwiper .swiper-button-next::after {

    font-size: 20px;

    font-weight: 700;

    color: #1455a5;
}


.destinationSwiper .swiper-button-prev {

    left: 0;
}


.destinationSwiper .swiper-button-next {

    right: 0;
}



/* =========================================
   PAGINATION
========================================= */

.destination-pagination {

    bottom: 5px !important;
}


.destination-pagination .swiper-pagination-bullet {

    width: 8px;

    height: 8px;

    opacity: 1;

    background: #d1d5db;
}


.destination-pagination .swiper-pagination-bullet-active {

    width: 22px;

    border-radius: 10px;

    background: #1455a5;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .trending-destinations {

        padding: 45px 5%;
    }


    .destination-card {

        max-width: 210px;

        height: 330px;

        border-radius: 110px;
    }


    .destination-name {

        font-size: 25px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .trending-header {

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }


    .trending-header h2 {

        font-size: 27px;
    }


    .destinationSwiper {

        padding-left: 35px !important;

        padding-right: 35px !important;
    }


    .destination-card {

        max-width: 210px;

        height: 320px;

        border-radius: 105px;
    }


    .destination-name {

        font-size: 23px;

        top: 30px;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .trending-destinations {

        padding: 35px 20px;
    }


    .destination-header {

        margin-bottom: 25px;
    }


    .trending-header h2 {

        font-size: 24px;
    }


    .destination-tabs {

        width: 100%;

        max-width: 300px;
    }


    .destination-tab {

        flex: 1;

        padding: 10px 15px;

        font-size: 13px;
    }


    .destination-card {

        max-width: 190px;

        height: 300px;

        border-radius: 95px;
    }


    .destination-name {

        font-size: 20px;

        top: 28px;
    }

}

/* ===========================
   POPULAR DESTINATION SECTION
=========================== */

/* SECTION */

.top-packages {
    width: 90%;
    max-width: 1250px;
    margin: 70px auto;
}

/* HEADING */

.packages-heading {
    position: relative;
    text-align: center;
    margin-bottom: 35px;
}

.packages-heading-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.packages-heading-content p {
    font-size: 16px;
    color: #777;
}

.packages-view-all {
    position: absolute;
    right: 0;
    top: 10px;
    text-decoration: none;
    color: #C89D2B;
    font-weight: 600;
    font-size: 18px;
}

/* SWIPER */

.packagesSwiper {
    padding: 10px 5px 60px;
}

.packagesSwiper .swiper-slide {
    height: auto;
}

/* CARD */

.package-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
    transition: .3s;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

/* IMAGE */

.package-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}



.package-card:hover img {
    transform: scale(1.06);
}

.package-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-title-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

    z-index: 100;
    text-shadow: 0 3px 8px rgba(0, 0, 0, .5);
}

.package-title-overlay {
    position: absolute;
    top: 30px;
    left: 90px;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .45);
}

.package-title-overlay {
    font-family: "Bebas Neue", sans-serif;
}



/* BADGE */


/* CONTENT */

.package-content {
    padding: 18px;
}

/* TITLE */

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.package-top h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.package-duration {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* LOCATION */

.package-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* BOTTOM */

.package-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.package-price small {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 4px;
}

.package-price h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.package-btn {
    text-decoration: none;
    color: #C89D2B;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.package-btn:hover {
    color: #000;
}





/* =========================================
   WHY US SECTION
========================================= */

.why-us {
    width: 100%;
    padding: 20px 0;
    background: #001B2A;
    border-radius: 16px;
}

.why-us .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.why-us h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: 'Playfair Display', serif;

    font-size: 25px;

    font-weight: 600;

    line-height: 1.3;
}


/* =========================================
   GRID
========================================= */

.why-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    width: 100%;
}


/* =========================================
   WHY CARD
========================================= */

.why-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 5px 22px;

    min-width: 0;

    border-right: 1px solid rgba(255, 255, 255, 0.25);
}


/* Last card divider remove */

.why-card:last-child {
    border-right: none;
}


/* =========================================
   ICON
========================================= */

.why-icon {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #B86008;

    font-size: 38px;
}


/* =========================================
   CONTENT
========================================= */

.why-content {
    min-width: 0;
}


.why-content h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.3;

    white-space: nowrap;
}


.why-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-family: 'Poppins', sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.5;
}


@media (max-width: 1100px) {

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 25px;
    }

    .why-card {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }

    .why-card:nth-child(3),
    .why-card:nth-child(6) {
        border-right: none;
    }

}

@media (max-width: 768px) {

    .why-us {
        padding: 20px 0;
        border-radius: 10px;
    }

    .why-us h2 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .why-grid {
        display: flex;

        overflow-x: auto;

        gap: 0;

        scrollbar-width: none;
    }

    .why-grid::-webkit-scrollbar {
        display: none;
    }

    .why-card {
        flex: 0 0 280px;

        padding: 10px 20px;

        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }

    .why-card:last-child {
        border-right: none;
    }

    .why-icon {
        width: 48px;
        height: 48px;

        font-size: 32px;
    }

    .why-content h3 {
        font-size: 13px;
    }

    .why-content p {
        font-size: 10px;
    }

}

@media (max-width: 480px) {

    .why-us h2 {
        font-size: 18px;
    }

    .why-card {
        flex: 0 0 260px;
    }

}



/* FEATURES */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FEATURE BOX */
.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-box span {
    font-size: 25px;
    color: #f4a300;
}

.feature-box h4 {
    margin-bottom: 5px;
    color: #1f3c88;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .about-container {
        flex-direction: column;
    }

    .about-content h1 {
        font-size: 28px;
    }

    .features {
        flex-direction: column;
    }

}





/* WRAPPER (center align) */
.wrapper {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.title {
    text-align: center;
    font-size: 42px;
    color: #1d2b53;
    margin-bottom: 50px;
    font-weight: 700;
}

/* CARDS CONTAINER */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

/* SINGLE CARD */
.card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* ICON */
.icon {
    font-size: 26px;
    margin-bottom: 15px;
}

/* TITLE */
.card h3 {
    font-size: 20px;
    color: #1d2b53;
    margin-bottom: -50px;
}

/* TEXT */
.card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* BACKGROUND SHAPE */
.card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: url('images/dotted-map.png') no-repeat center/contain;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
}

/* ================== RESPONSIVE ================== */

/* Tablet */
@media (max-width: 992px) {
    .cards {
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cards {
        flex-direction: column;
    }

    .title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .card h3 {
        font-size: 20px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

/* SECTION */
.testimonial-section {
    background: linear-gradient(rgba(20, 60, 90, 0.85), rgba(20, 60, 90, 0.85)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

/* HEADING */
.testimonial-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.testimonial-section p {
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* CARD CONTAINER */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* USER NAME */
.name {
    margin-top: 15px;
    font-weight: bold;
    color: #1d3557;
}

/* STARS */
.stars {
    color: #f4b400;
    margin-top: 5px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .testimonial-section h1 {
        font-size: 28px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}



/* =========================================
   CUSTOMER REVIEWS
========================================= */

.reviews-section {
    width: 100%;
    padding: 55px 7% 25px;
    background: #ffffff;
}


/* Header */

.reviews-header {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.reviews-header>div {
    text-align: center;
}

.reviews-header h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #162033;
    text-align: center;
}

.reviews-header p {
    margin: 5px 0 0;
    color: #999;
    font-size: 14px;
    text-align: center;
}


/* View All Reviews */

.view-reviews {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: #C89D2B;
    font-weight: 600;
    font-size: 18px;
}

.view-reviews:hover {
    color: #c99b20;
}


/* Reviews Container */

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Review Card */

.review-card {
    min-height: 235px;
    padding: 25px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* User */

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}


.review-user img {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    object-fit: cover;
}


.review-user h3 {
    margin: 0 0 4px;

    font-size: 16px;
    font-weight: 600;
    color: #222;
}


.review-user span {
    font-size: 14px;
    color: #999;
}


/* Rating */

.review-rating {
    display: flex;
    gap: 4px;

    margin-top: 15px;
}


.review-rating span {
    color: #f4b400;
    font-size: 20px;
}


/* Review Text */

.review-text {
    margin-top: 15px;

    color: #444;

    font-size: 15px;
    line-height: 1.6;
}


/* Dots */

.review-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 18px;
}


.dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #e5e5e5;
}


.dot.active {
    width: 18px;

    border-radius: 10px;

    background: #222;
}



/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {
    width: 100%;
    min-height: 195px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("/images/footer-banner.jpg");

    background-size: cover;
    background-position: center;

    text-align: center;
}


/* Dark Overlay */

.footer-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(5, 31, 53, 0.72);
}


.cta-overlay {
    position: relative;
    z-index: 1;

    width: 100%;

    padding: 25px 20px;
}


.cta-overlay h2 {
    margin: 0;

    color: #ffffff;

    font-size: 30px;
    font-weight: 700;
}


.cta-overlay p {
    margin: 8px 0 20px;

    color: #ffffff;

    font-size: 16px;
}


/* CTA Buttons */

.cta-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 55px;
}


.cta-buttons a {
    width: 200px;

    padding: 5px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Plan My Trip */

.btn-plan {
    color: #162033;

    background: #f5b82e;

    border: 2px solid #f5b82e;
}


.btn-plan:hover {
    background: #e3a718;

    border-color: #e3a718;

    transform: translateY(-2px);
}


/* Talk To Expert */

.btn-expert {
    color: #ffffff;

    background: transparent;

    border: 2px solid #ffffff;
}


.btn-expert:hover {
    color: #162033;

    background: #ffffff;

    transform: translateY(-2px);
}



/* =========================================
   MAIN FOOTER
========================================= */

.main-footer {
    width: 100%;

    background: #102a43;

    color: #ffffff;
}


/* Footer Container */

.footer-container {
    max-width: 1400px;

    margin: 0 auto;

    padding: 28px 5% 25px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr 1.35fr;

    gap: 45px;
}


/* Footer Column */

.footer-column {
    min-width: 0;
}


.footer-column h3 {
    margin: 0 0 18px;

    color: #f5b82e;

    font-size: 17px;

    font-weight: 600;
}


/* =========================================
   ABOUT
========================================= */

.footer-logo {
    display: inline-block;

    margin-bottom: 12px;
}


.footer-logo img {
    width: 215px;

    max-width: 100%;

    height: auto;

    object-fit: contain;
}


.footer-about p {
    max-width: 290px;

    margin: 0;

    color: #d7e0e8;

    font-size: 14px;

    line-height: 1.7;
}



/* =========================================
   FOOTER LINKS
========================================= */

.footer-column ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.footer-column ul li {
    margin-bottom: 8px;
}


.footer-column ul li a {
    color: #d7e0e8;

    font-size: 14px;

    text-decoration: none;

    transition: 0.3s ease;
}


.footer-column ul li a:hover {
    color: #f5b82e;

    padding-left: 3px;
}



/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 18px;
}


.social-icons a {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}


.social-icons a:hover {
    color: #102a43;

    background: #f5b82e;

    border-color: #f5b82e;
}



/* =========================================
   CONTACT
========================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 13px;

    color: #d7e0e8;

    font-size: 14px;

    line-height: 1.5;
}


.contact-item i {
    width: 18px;

    margin-top: 3px;

    color: #ffffff;

    font-size: 15px;
}


.contact-item a {
    color: #d7e0e8;

    text-decoration: none;

    transition: 0.3s ease;
}


.contact-item a:hover {
    color: #f5b82e;
}



/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom {
    width: 100%;

    padding: 9px 20px;

    text-align: center;

    background: #0b2033;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom p {
    margin: 0;

    color: #b8c5d0;

    font-size: 13px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: repeat(3, 1fr);

        gap: 35px;
    }

    .footer-about {
        grid-column: span 3;
    }

    .footer-about p {
        max-width: 500px;
    }

}



/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 768px) {

    /* CTA */

    .footer-cta {
        min-height: 240px;
    }


    .cta-overlay h2 {
        font-size: 27px;
    }


    .cta-overlay p {
        font-size: 14px;
    }


    .cta-buttons {
        gap: 15px;
    }


    .cta-buttons a {
        width: 210px;

        padding: 12px 15px;

        font-size: 14px;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: repeat(2, 1fr);

        padding: 35px 6%;

        gap: 35px 25px;
    }


    .footer-about {
        grid-column: span 2;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    /* CTA */

    .footer-cta {
        min-height: 300px;
    }


    .cta-overlay {
        padding: 30px 20px;
    }


    .cta-overlay h2 {
        font-size: 24px;

        line-height: 1.3;
    }


    .cta-overlay p {
        font-size: 14px;

        line-height: 1.5;

        margin-bottom: 20px;
    }


    .cta-buttons {
        flex-direction: column;

        gap: 12px;
    }


    .cta-buttons a {
        width: 100%;

        max-width: 300px;
    }



    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;

        padding: 35px 25px;

        gap: 30px;
    }


    .footer-about {
        grid-column: auto;
    }


    .footer-about p {
        max-width: 100%;
    }


    .footer-column h3 {
        font-size: 16px;
    }


    .footer-column ul li a {
        font-size: 14px;
    }


    .footer-logo img {
        width: 190px;
    }


    .contact-item {
        font-size: 13px;
    }


    .footer-bottom {
        padding: 10px 15px;
    }


    .footer-bottom p {
        font-size: 12px;
    }

}

/* =========================================
GOOGLE FONT
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #111;
}

/* =========================================
MAIN CONTAINER
========================================= */
.travel-container {
    width: 92%;
    max-width: 1600px;
    margin: 120px auto 60px;
}

/* =========================================
TOP BAR
========================================= */
.travel-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.travel-filter-title {
    font-size: 33px;
    font-weight: 700;
    color: #154a87;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =========================================
FILTER BUTTONS
========================================= */
.travel-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.travel-filter-buttons button {
    border: none;
    outline: none;
    padding: 13px 26px;
    border-radius: 50px;
    background: #fff;
    color: #0c315e;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid #0c315e;
}

.travel-filter-buttons button:hover,
.travel-filter-buttons .travel-active-btn {
    background: #0c315e;
    color: #fff;
}

/* =========================================
MAIN WRAPPER
========================================= */
.travel-main-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* =========================================
SIDEBAR
========================================= */
.travel-sidebar {
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* =========================================
FILTER BOX
========================================= */
.travel-filter-box {
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.travel-filter-box h3 {
    font-size: 20px;
    margin-bottom: 22px;
    color: #111;
    font-weight: 700;
}

/* =========================================
SEARCH BOX
========================================= */
.travel-search-box input {
    width: 100%;
    height: 58px;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

#filterForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Isse Search Title aur Price Range ke beech gap aa jayega */
}

.travel-search-box input:focus {
    border-color: #10bea6;
    box-shadow: 0 0 0 4px rgba(16, 190, 166, 0.12);
}

/* =========================================
RANGE
========================================= */
.travel-range {
    width: 100%;
    accent-color: #0c315e;
    cursor: pointer;
}

.travel-range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
}

.travel-range-values span {
    font-size: 17px;
    font-weight: 600;
}

/* =========================================
RATING
========================================= */
.travel-rating-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.travel-rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.travel-rating-item input {
    width: 18px;
    height: 18px;
    accent-color: #10bea6;
}

.travel-stars {
    color: #ffb400;
    letter-spacing: 2px;
}

/* =========================================
CATEGORY
========================================= */
.travel-category-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.travel-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #444;
}

.travel-category-item input {
    width: 18px;
    height: 18px;
    accent-color: #10bea6;
}

/* =========================================
RIGHT PACKAGE AREA
========================================= */
.travel-packages {
    flex: 1;
}

/* =========================================
GRID
========================================= */
.travel-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================================
CARD
========================================= */
.travel-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: 0.35s;
}

.travel-card:hover {
    transform: translateY(-8px);
}

/* =========================================
IMAGE
========================================= */
.travel-card-image {
    position: relative;
    height: 260px;
}

.travel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
HEART ICON
========================================= */
.travel-wishlist {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* =========================================
CONTENT
========================================= */
.travel-card-content {
    padding: 22px;
}

/* =========================================
LOCATION & DAYS
========================================= */
.travel-location-days {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
    margin-bottom: 14px;
}

.travel-location-days span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================================
RATING
========================================= */
.travel-rating {
    color: #ffb400;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

/* =========================================
TITLE
========================================= */
.travel-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1px;
    color: #111;
}

/* =========================================
PRICE + BOOK
========================================= */
.travel-price-book {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.travel-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.travel-price small {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* =========================================
BOOK BUTTON
========================================= */
.travel-book-btn {
    text-decoration: none;
    background: #0c315e;
    color: #fff;
    padding: 4px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.travel-book-btn:hover {
    background: #154a87;
}

/* =========================================
LAPTOP
========================================= */
@media(max-width:1200px) {

    .travel-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================================
TABLET
========================================= */
@media(max-width:992px) {

    .travel-main-wrapper {
        flex-direction: column;
    }

    .travel-sidebar {
        width: 100%;
        min-width: 100%;
    }

    .travel-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================================
MOBILE
========================================= */
@media(max-width:768px) {

    .travel-container {
        width: 94%;
        margin-top: 90px;
    }

    .travel-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .travel-filter-title {
        font-size: 32px;
    }

    .travel-filter-buttons {
        width: 100%;
    }

    .travel-filter-buttons button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .travel-package-grid {
        grid-template-columns: 1fr;
    }

    .travel-card-image {
        height: 240px;
    }

    .travel-card-title {
        font-size: 24px;
    }

    .travel-price {
        font-size: 24px;
    }

    .travel-filter-box {
        padding: 22px;
    }

}

/* =========================================
SMALL MOBILE
========================================= */
@media(max-width:480px) {

    .travel-filter-title {
        font-size: 28px;
    }

    .travel-location-days {
        flex-direction: column;
        align-items: flex-start;
    }

    .travel-price-book {
        flex-direction: column;
        align-items: flex-start;
    }

    .travel-book-btn {
        width: 100%;
        justify-content: center;
    }

    .travel-card-image {
        height: 220px;
    }

}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* MAIN SECTION */

.tour-details {
    width: 90%;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 10%;
}

/* LEFT SIDE */

.tour-left {
    flex: 1;
}

.tour-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-images img {
    width: 100%;
    height: 242px;
    object-fit: cover;
    border-radius: 10px;
}

/* Small Screen Only */
@media (max-width: 768px) {
    .tour-image img {
        margin-top: -50px;
    }
}

.tour-content {
    background: #fff;
    margin-top: 25px;
    padding: 35px;
    border-radius: 30px;
}

.tour-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #081839;
}

/* INFO */

.tour-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 18px;
}

/* BUTTONS */

.tour-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.tour-buttons button {
    padding: 5px 18px;
    border-radius: 40px;
    border: 2px solid #0c315e;
    background: transparent;
    color: #0c315e;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.tour-buttons button i {
    margin-right: 8px;
}

.tour-buttons .active,
.tour-buttons button:hover {
    background: #0c315e;
    color: #fff;
}

/* OVERVIEW */

.overview-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 25px;
}

.overview-box h2 {
    font-size: 25px;
    margin-bottom: 30px;
    color: #081839;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.overview-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.overview-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #e7faf7;
    color: #0c315e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.overview-card p {
    font-size: 17px;
    color: #666;
    margin-bottom: 6px;
}

.overview-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* RIGHT SIDE */

.tour-right {
    width: 380px;
    position: sticky;
    top: 20px;
}

.booking-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
}

.booking-top {
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.booking-top p {
    color: #444;
    font-size: 20px;
    margin-bottom: 10px;
}

.booking-top h3 {
    font-size: 15px;
}

.booking-price {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.booking-price p {
    font-size: 22px;
    margin-bottom: 10px;
}

.booking-price h1 {
    font-size: 20px;
    color: #081839;
}

.person-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.person-counter button {
    width: 35px;
    height: 35px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}

.person-counter input {
    width: 60px;
    text-align: center;
}

.book-btn {
    width: 100%;
    height: 50px;
    border: none;
    margin-top: 30px;
    border-radius: 50px;
    background: #0c315e;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    transform: translateY(-3px);
}

.book-btn i {
    margin-left: 10px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .tour-details {
        flex-direction: column;
    }

    .tour-right {
        width: 100%;
    }

}

@media(max-width:768px) {

    .tour-image img {
        height: 300px;
        margin-top: 50px;
    }

    .tour-content {
        padding: 25px;
    }

    .tour-content h1 {
        font-size: 40px;
    }

    .overview-box h2 {
        font-size: 28px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card h3 {
        font-size: 20px;
    }

    .booking-price h1 {
        font-size: 25px;
    }

}

@media(max-width:500px) {

    .tour-details {
        width: 95%;
    }

    .tour-content h1 {
        font-size: 25px;
    }

    .tour-info {
        gap: 15px;
    }

    .tour-info span {
        font-size: 15px;
    }

    .tour-buttons button {
        width: 100%;
    }

    .overview-box {
        padding: 20px;
    }

    .overview-card {
        flex-direction: column;
    }

    .booking-card {
        padding: 25px;
    }

    .book-btn {
        font-size: 20px;
    }

}



/* MAIN LAYOUT */

.wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 220px 1fr 340px;
    gap: 25px;
    align-items: start;
}

/* =========================
   LEFT DAY MENU
========================= */

.days-sidebar {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.day-btn {
    width: 100%;
    padding: 20px;
    border: none;
    background: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: .3s;
}

.day-btn:hover {
    background: #f5f9ff;
}

.day-btn.active {
    background: #edf5ff;
    color: black;
    border-left: 4px solid #0c315e;
    font-weight: 600;
}

/* =========================
   CENTER CONTENT
========================= */

.timeline-section {
    position: relative;
}

.timeline-section::before {
    content: "";
    position: absolute;
    left: 37px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #dbe4f0;
}

/* CARD */

.day-card {
    position: relative;
    margin-bottom: 20px;
}

.day-card {
    display: none;
}


/* HEADER */

.day-header {
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid #e4e9f2;
    transition: .3s;
}

.day-header:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.day-left {
    display: flex;
    align-items: center;
    gap: 16px;
}



.day-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-left: 100px;
}

.arrow {
    font-size: 18px;
    transition: .3s;
}

.day-card.active {
    display: block;
}

.day-card.active .arrow {
    transform: rotate(180deg);
}

/* BODY */

.day-body {
    display: none;
    padding: 18px 0 0 88px;
}

.day-card.active .day-body {
    display: block;
}

/* INFO BOX */

.info-box {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid #e8edf5;
}

.info-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #E8F8F5;
    color: #0c315e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
}

.info-text {
    color: #5b6472;
    line-height: 1.8;
    font-size: 15px;
}

/* HOTEL */

.hotel-wrapper {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.hotel-wrapper img {
    width: 210px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
}

.hotel-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.hotel-details p {
    color: #666;
    font-size: 14px;
}

.note {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.note span {
    color: #1565ff;
    font-weight: 600;
}

/* =========================
   RIGHT PANEL
========================= */

.right-panel {
    position: sticky;
    top: 20px;
}

.price-card {
    background: #fff;

    padding: 25px;
    border-bottom: 1px solid #e4e9f2;
    margin-bottom: 20px;
}

.old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #777;
}

.discount {
    background: #ff7a1a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}

.sub-text {
    color: #666;
    font-size: 15px;
}

.calculate-btn {
    width: 70%;
    border: none;
    background: #22c3a6;
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    margin-top: 20px;
    transition: 0.3s ease;
}

.calculate-btn:hover {
    background: #1DAA91;
}

/* FORM */

.callback-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e4e9f2;
    overflow: hidden;
}

.callback-header {
    padding: 20px;
    border-bottom: 1px solid #edf0f5;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.form-box {
    padding: 20px;
}

.input-box {
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    height: 54px;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.input-box input:focus {
    border-color: #1565ff;
}

.check {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.check p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.callback-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 50px;
    background: #d7dce5;
    color: #444;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .wrapper {
        grid-template-columns: 1fr;
    }

    .days-sidebar {
        display: flex;
        overflow: auto;
        white-space: nowrap;
        position: relative;
    }

    .day-btn {
        min-width: 120px;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .right-panel {
        position: relative;
    }

}

@media(max-width:768px) {

    body {
        padding: 0;
    }

    .wrapper {
        padding: 15px;
        gap: 18px;
    }

    .timeline-section::before {
        display: none;
    }

    .day-header {
        padding: 14px;
    }

    .day-left {
        gap: 10px;
    }

    .badge {
        min-width: 70px;
        height: 38px;
        font-size: 14px;
    }

    .day-title {
        font-size: 16px;
    }

    .day-body {
        padding-left: 0;
    }

    .info-box {
        padding: 18px;
    }

    .info-title {
        font-size: 18px;
    }

    .hotel-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-wrapper img {
        width: 100%;
        height: 200px;
    }

    .new-price {
        font-size: 25px;
    }

}

.final-price {
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-align: center;
}



/* DATE AREA */

.booking-date-wrapper {

    margin-top: 20px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

/* LABEL */

.booking-date-field label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #333;

}

/* INPUT */

.booking-date-field input {

    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    outline: none;

    font-size: 15px;

}

/* FOCUS */

.booking-date-field input:focus {

    border-color: #ff6b35;

}

/* HEART BUTTON */

.travel-wishlist {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;

}

/* HEART ICON */

.travel-wishlist i {

    font-size: 24px;

    color: white;

    transition: 0.3s ease;

}



/* ACTIVE HEART */

.travel-wishlist.active i {

    color: red;

}

.brochure-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    border: 2px solid #0c315e;
    color: #2dc1a8;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

.brochure-btn:hover {
    background: #0c315e;
    color: white;
}

.packages h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2b49;
    text-align: center;
}

.tour-link {
    text-decoration: none;
    color: inherit;
}

.travel-international-box {
    background: #fff;
    width: 100%;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.travel-international-box h3 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.travel-category-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.travel-category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #444;
}

.travel-category-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.travel-category-item:hover {
    color: #0d6efd;
}

/* ===========================
   MODAL
=========================== */

.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

.booking-modal.active {
    display: flex;
}

/* ===========================
   CONTAINER
=========================== */

.booking-container {
    width: 1200px;
    max-width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-height: 95vh;
    overflow-y: auto;
    animation: popup .3s ease;
}

@keyframes popup {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   HEADER
=========================== */

.booking-header {
    background: #0c315e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
}

.booking-header h2 {
    margin: 0;
    font-size: 26px;
}

#closeModal {
    font-size: 35px;
    cursor: pointer;
}

/* ===========================
   BODY
=========================== */

.booking-content {
    display: flex;
    gap: 35px;
    padding: 30px;
}

.booking-left {
    flex: 3;
}

.booking-right {
    flex: 1;
}

/* ===========================
   GRID
=========================== */

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-box {
    display: flex;
    flex-direction: column;
}

.input-box label {
    margin-bottom: 8px;
    font-weight: 600;
}

.input-box input,
.input-box select {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
}

/* ===========================
   ROOM
=========================== */

.room {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.room-header h4 {
    margin: 0;
    color: #081839;
    font-size: 18px;
}

/* ===========================
   TRAVELLERS
=========================== */

.traveller-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.traveller-box {
    background: #fafafa;
    border-radius: 10px;
    padding: 15px;
}

.traveller-box p {
    margin-bottom: 12px;
    font-weight: 600;
}

/* ===========================
   COUNTER
=========================== */

.counter {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 8px;
    overflow: hidden;
    height: 45px;
}

.counter button {
    width: 45px;
    border: none;
    background: #0c315e;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.counter button:hover {
    background: #154a87;
}

.counter input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 18px;
    font-weight: bold;
    background: #fff;
}

/* ===========================
   BUTTONS
=========================== */

.add-room {
    margin-top: 20px;
    padding: 12px 25px;
    background: #0c315e;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}


.book-online {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 8px;
    background: #0c315e;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}

.calculate-btn {
    margin-top: 20px;
}

.book-online {
    margin-top: 20px;
}

.calculate-btn:hover,
.book-online:hover,
.add-room:hover {
    background: #154a87;
}

/* ===========================
   PRICE CARD
=========================== */

.price-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    position: sticky;
    top: 20px;
}

.old-price {
    color: #888;
    text-decoration: line-through;
}

.offer {
    margin-left: 10px;
    background: #ff6b00;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
}

.price-card h1 {
    margin: 15px 0;
    color: #081839;
    font-size: 30px;
}

.price-card p {
    color: #666;
}

/* ===========================
   CHECKBOX
=========================== */

.agree {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 25px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px) {

    .booking-content {
        flex-direction: column;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .traveller-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        position: static;
    }

}

@media(max-width:600px) {

    .booking-header h2 {
        font-size: 20px;
    }

    .booking-content {
        padding: 18px;
    }

    .room {
        padding: 15px;
    }

}

.remove-room {

    background: red;

    color: white;

    border: none;

    padding: 8px 18px;

    border-radius: 6px;

    cursor: pointer;

}

.remove-room:hover {

    background: #d00000;

}

.filter-group select {

    font-size: 13px;

    padding: 8px;

}

/* ===========================
   DAYS / NIGHTS FILTER
=========================== */

.filter-group {
    width: 100%;
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0c315e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.filter-group select {
    width: 100%;
    height: 58px;

    padding: 0 18px;

    border: 1px solid #dcdcdc;
    border-radius: 14px;

    background: #fff;
    color: #333;

    font-size: 15px;
    font-weight: 500;

    outline: none;
    cursor: pointer;

    transition: all .3s ease;
}

.filter-group select:hover {
    border-color: #0c315e;
}

.filter-group select:focus {
    border-color: #0c315e;
    box-shadow: 0 0 0 4px rgba(12, 49, 94, .12);
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px) {

    .filter-group h4 {
        font-size: 22px;
    }

    .filter-group select {
        height: 54px;
        font-size: 14px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:768px) {

    .filter-group {
        margin-bottom: 20px;
    }

    .filter-group h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .filter-group select {
        height: 50px;
        font-size: 14px;
        padding: 0 15px;
    }

}

/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px) {

    .filter-group h4 {
        font-size: 18px;
    }

    .filter-group select {
        height: 46px;
        font-size: 13px;
        border-radius: 10px;
    }

}

.card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;

    height: auto;

}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}



.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}


.card:hover .card-img img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 10px;
    left: 18px;
    background: #0c315e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.card-body {
    padding: 0 5px;

    display: flex;
    flex-direction: column;

}

.card-content h3,
.card-title {
    margin-bottom: 15px;
    line-height: 1.3;
}



.card-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: #f2f5ff;
    color: #2454d3;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.rating {
    margin-left: auto;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.tour-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a2c5b;
    line-height: 1.3;
    margin: 0 0 18px;
    min-height: 88px;
}

.tour-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    min-height: 95px;
}

.facilities div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #555;
}

.card-footer {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.price-section del {
    color: #888;
    font-size: 16px;
}

.discount {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 10px;
}

.price-section h2 {
    font-size: 20px;
    color: #1a2c5b;
    margin: 8px 0;
    font-weight: 800;
}

.price-section small {
    color: #666;
    font-size: 14px;
}

.details-btn {
    min-width: 110px;
    height: 32px;
    border: none;
    border-radius: 30px;
    background: #0c315e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.details-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}



.mySwiper {
    padding: 20px 10px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;

    height: auto !important;
    display: block;
    padding-right: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0c315e;
}

.swiper-pagination-bullet-active {
    background: #0c315e;
}

.swiper-slide {
    margin-right: 5px !important;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px !important;
    font-weight: bold;
}

.search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-80px);
}

.search-box {
    width: 550px;
    height: 60px;
    background: #fff;
    border-radius: 35px;
    display: flex;
    align-items: center;
    padding: 0 10px 0 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
}

.search-box input::placeholder {
    color: #999;
}

.find-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1455a0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.find-btn:hover {
    transform: scale(1.05);
}

/* ===========================
   WhatsApp Floating Button
=========================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 65px;

    height: 65px;

    background: #25D366;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 36px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);

    z-index: 9999;

    transition: .3s;

    animation: whatsappFloat 2s ease-in-out infinite;

}

/* Hover */

.whatsapp-float:hover {

    background: #1EBE5D;

    transform: scale(1.1);

}

/* Tooltip */

.tooltip {

    position: absolute;

    right: 80px;

    background: #333;

    color: #fff;

    padding: 8px 15px;

    border-radius: 6px;

    font-size: 14px;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

}

.whatsapp-float:hover .tooltip {

    opacity: 1;

    visibility: visible;

}

/* Floating Animation */

@keyframes whatsappFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

/* Mobile */

@media(max-width:768px) {

    .whatsapp-float {

        width: 55px;

        height: 55px;

        font-size: 30px;

        right: 15px;

        bottom: 15px;

    }

    .tooltip {

        display: none;

    }

}

.contact-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.contact-section {
    max-width: 1200px;

    margin: 40px auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;
}

.contact-left,
.contact-right {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.contact-left h2 {
    font-size: 35px;
    color: #0d3b66;
    margin-bottom: 10px;
}

.contact-left p {
    color: #666;
    margin-bottom: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-box i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0c315e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.info-box h4 {
    margin: 0;
    color: #0d3b66;
}

.info-box p {
    margin: 5px 0 0;
    color: #666;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #22c3a6;
}

.contact-right button {
    background: #0c315e;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    transition: .3s;
}

.contact-right button:hover {
    background: #154a87;
}

.page-header {

    text-align: center;

    padding: 15px 20px;

    background: #f8f9fb;

}

.page-header h1 {

    font-size: 52px;

    color: #0c315e;

    margin-bottom: 10px;

}

.page-header p {

    color: #777;

    font-size: 18px;

}

@media(max-width:768px) {

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-left,
    .contact-right {
        padding: 25px;
    }

}

/* ========================================
   FIND YOUR PERFECT HOLIDAY
======================================== */

.holiday-category-section {
    width: 100%;
    padding: 30px 0 40px;
    background: #ffffff;
}


/* ========================================
   SECTION HEADER
======================================== */

.holiday-section-header {
    margin-bottom: 20px;
}

.holiday-section-header h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;

    color: #001B2A;
}


/* ========================================
   CATEGORY CONTAINER
======================================== */

.holiday-categories {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(10, 1fr);

    gap: 12px;
}


/* ========================================
   CATEGORY CARD
======================================== */

.holiday-category-card {
    min-height: 125px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 15px 8px;

    background: #ffffff;

    border: 1px solid #E6E9EE;

    border-radius: 8px;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* ========================================
   ICON
======================================== */

.holiday-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    color: #001B2A;

    font-size: 30px;
}


/* ========================================
   TITLE
======================================== */

.holiday-category-card h3 {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;
    line-height: 1.5;

    font-weight: 600;

    color: #001B2A;
}


/* ========================================
   HOVER EFFECT
======================================== */

.holiday-category-card:hover {
    transform: translateY(-5px);

    border-color: #B86008;

    box-shadow: 0 8px 20px rgba(0, 27, 42, 0.10);
}

.holiday-category-card:hover .holiday-icon {
    color: #B86008;
}

.holiday-category-card:hover h3 {
    color: #B86008;
}

@media (max-width: 1200px) {

    .holiday-categories {
        grid-template-columns: repeat(5, 1fr);
    }

}

@media (max-width: 768px) {

    .holiday-category-section {
        padding: 25px 0 30px;
    }

    .holiday-section-header {
        margin-bottom: 15px;
    }

    .holiday-section-header h2 {
        font-size: 23px;
    }

    .holiday-categories {
        display: flex;

        gap: 12px;

        overflow-x: auto;

        padding: 5px 5px 15px;

        scroll-behavior: smooth;

        scrollbar-width: none;
    }

    .holiday-categories::-webkit-scrollbar {
        display: none;
    }

    .holiday-category-card {
        flex: 0 0 125px;

        min-height: 120px;

        padding: 12px 8px;
    }

    .holiday-icon {
        width: 45px;
        height: 45px;

        font-size: 27px;
    }

    .holiday-category-card h3 {
        font-size: 11px;
    }

}

@media (max-width: 480px) {

    .holiday-category-section {
        padding: 20px 0 25px;
    }

    .holiday-section-header h2 {
        font-size: 21px;
    }

    .holiday-category-card {
        flex: 0 0 115px;

        min-height: 110px;
    }

    .holiday-icon {
        font-size: 25px;
    }

    .holiday-category-card h3 {
        font-size: 10px;
    }

}

/* ===========================
   CMS PAGE DESIGN
=========================== */


.cms-banner {

    height:350px;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('/images/tour-banner.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    text-align:center;

}


.cms-banner-overlay {

    width:100%;

}



.cms-banner h1 {

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}



.cms-banner p {

    color:#fff;

    font-size:17px;

}




/* Content */


.cms-section {

    padding:60px 0;

    background:#f7f8fa;

}



.cms-card {


    background:#fff;

    padding:40px;

    border-radius:15px;


    box-shadow:

    0 8px 25px rgba(0,0,0,.08);


}



/* CKEDITOR CONTENT */


.cms-content {


    font-size:16px;

    line-height:1.8;

    color:#444;

}



.cms-content h2 {


    color:#222;

    margin-top:25px;

    margin-bottom:15px;

}



.cms-content h3 {


    color:#333;

    margin-top:20px;

}



.cms-content p {


    margin-bottom:15px;

}



.cms-content ul {


    padding-left:25px;

    margin-bottom:20px;

}



.cms-content li {


    margin-bottom:10px;

}




.cms-content img {


    max-width:100%;

    border-radius:10px;

}




/* MOBILE */


@media(max-width:768px){


.cms-banner {

    height:200px;

}



.cms-banner h1 {

    font-size:28px;

}



.cms-section {

    padding:35px 15px;

}



.cms-card {

    padding:20px;

}



.cms-content {

    font-size:15px;

}



}