@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables - Color Scheme & Fonts
   ======================================== */
:root {
    /* Main Colors */
    --primary-color: #5d096b;
    --secondary-color: #001345;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #6d0b91 0%, #b116a5 55%, #ef7b24 100%);
    /* Typography */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Poppins", sans-serif;

    /* Spacing */
    --section-padding: 40px 0;
    --transition: all 0.3s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--gradient-primary);
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.635),
            transparent);

    transform: skewX(-20deg);
    animation: shineMove 2.5s infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.top-contact {
    margin: 0px 0px;
}

.top-contact a {
    color: var(--light-color);
    margin-right: 25px;
    display: inline-block;
}

.top-contact a i {
    margin-right: 5px;
    color: #ffde23;
}

.top-contact a i.fa-phone-alt {
    display: inline-block;
    transform: rotate(90deg);
}

.top-contact a:hover {
    color: #ffde23;
}

.top-social a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    margin-left: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.top-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   Navigation
   ======================================== */
.main-navbar {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.main-navbar.scrolled {
    padding: 0px 0px;
}

.main-navbar .nav-shell {
    display: block;
    padding: 0;
}

.main-navbar .main-nav-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0 10px;
}

.main-navbar .navbar-brand {
    max-width: 181px;
    margin-right: 0;
}

.main-navbar .navbar-brand img {
    width: 100%;
}

.main-navbar .main-nav-search {
    flex: 1;
    max-width: 530px;
    border: 1px solid #d8d8d8;
    border-radius: 28px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #fff;
}

.main-navbar .main-nav-search i {
    color: #8e8e8e;
    margin-right: 10px;
}

.main-navbar .main-nav-search input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
    color: #4b4b4b;
}

.main-navbar .main-nav-meta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-navbar .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #3c3c3c;
    line-height: 1.1;
    white-space: nowrap;
}

.main-navbar .meta-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.main-navbar .meta-item strong {
    display: block;
    color: #171717;
    font-size: 13px;
}

.main-navbar .main-nav-phone {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    background: var(--primary-color);
    border-radius: 30px;
    font-size: 15px;
    padding: 5px 15px;
}

.main-navbar .main-nav-phone i {
    font-size: 14px;
    transform: rotate(90deg);

}

.main-navbar .main-nav-bottom {
    display: flex;
    align-items: center;

    border-top: 1px solid #ececec;
}

.main-navbar .navbar-collapse {
    flex-grow: 1;
    justify-content: space-between;
}

.main-navbar .navbar-nav {
    align-items: center;
    flex-wrap: nowrap;
}

.main-navbar .navbar-nav .nav-link {
    color: #202020;
    font-weight: 500;
    padding: 3px 12px !important;
    font-size: 14px;
    margin: 0;
    border-radius: 0;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid #dadada;
    border-radius: 30px;
    margin-right: 10px;

}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
    color: var(--secondary-color);
    background: transparent;
}

.main-navbar .navbar-toggler {
    border: none;
    padding: 8px;
    margin-left: auto;
}

.main-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.main-navbar .dropdown-menu {
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    height: 301px;
    top: 44px;
}

.main-navbar .dropdown-item {
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 500;
}

.main-navbar .dropdown-item:hover {
    background: rgba(222, 43, 43, 0.1);
    color: var(--secondary-color);
}

.nav-btn-wapper-top {
    display: flex;
    gap: 10px;
}

.main-navbar .nav-expert-btn {
    border-radius: 0;
    min-width: 150px;
    background: #001445 !important;
    border: 0;
    box-shadow: none;
    padding: 9px 16px;
    font-size: 14px;
    color: #fff !important;
    border-radius: 30px;
    margin: 5px 0px;
}



.main-navbar .nav-expert-btn:hover {
    background: #022681 !important;
    color: #fff !important;
    box-shadow: none;
}

.nav-payment-btn {
    border-radius: 0;
    background: var(--gradient-primary);
    border: 0;
    box-shadow: none;
    padding: 9px 16px;
    font-size: 14px;
    color: #fff !important;
    text-align: center;
    border-radius: 30px;
    margin: 5px 0px;
}

.link-card-btn {
    background: #ff6b36;
    padding: 2px 10px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    max-width: 146px;
    margin: 0 auto;

}

@media (max-width: 991px) {
    .main-navbar {
        padding: 3px 0;
        background: rgba(255, 255, 255, 0.98);
    }

    .main-navbar.scrolled {
        padding: 4px 0px;
    }

    .main-navbar .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-navbar .main-nav-top {
        display: none !important;
    }

    .main-navbar .main-nav-bottom {
        width: 100%;
        border-top: 0;
        background: transparent;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }



    .main-navbar .navbar-toggler {
        width: 35px;
        height: 35px;
        border-radius: 5px;
        background: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-navbar .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.96)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.2em;
        height: 1.2em;
    }

    .main-navbar .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        margin-top: 12px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid rgba(13, 110, 253, 0.12);
        background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
        box-shadow: 0 16px 35px rgba(8, 31, 82, 0.12);
    }

    .main-navbar .navbar-nav {
        width: 100%;
        gap: 6px;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .main-navbar .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 14px !important;
        border-radius: 12px;
        font-size: 14px;
    }

    .main-navbar .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }

    .main-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 6px;
        border-radius: 12px;
        box-shadow: none;
        background: #f2f7ff;
    }

    .main-navbar .nav-expert-btn {
        display: block;
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        border-radius: 10px;
    }

    .nav-payment-btn {
        display: block;
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        border-radius: 10px;
    }

    .nav-btn-wapper-top {
        gap: 10px;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(240, 211, 69, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(231, 130, 6, 0.4);
    background: #fff;
    color: var(--secondary-color);
}

/* ========================================
   Hero Section
   ======================================== */

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

/* Subtitle */
.section-subtitle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.section-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgb(253 241 124 / 27%);
    border: 1px solid rgba(255, 102, 0, 0.15);
    padding: 0px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.section-subtitle i {
    color: #ff6b36;
    font-size: 20px;
}

.section-subtitle::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    display: block;
}

.section-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    color: #111;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.section-title span {
    position: relative;
    color: var(--primary-color);
    display: inline-block;
    font-family: cursive;
    font-style: italic;
}

.section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 12px;
    background: rgba(181, 113, 223, 0.25);
    z-index: -1;
    border-radius: 20px;
}

.section-description {
    font-size: 14px;
    line-height: 1.3;
    color: #6b7280;
}

/* Start Hero Section */
.home-hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* Image First */
.home-hero-bg-image {
    position: absolute;
    inset: 0;
    background: url("/assets/images/hero-bg.png") no-repeat center center / cover;
    z-index: 1;
    clip-path: ellipse(130% 100% at 50% 0%);
}

/* Video */
.home-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;

    opacity: 0;
    transition: opacity 1.2s ease;
}

/* Video Loaded */
.home-hero-video.video-loaded {
    opacity: 1;
}

/* Overlay */
/* .home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    background: linear-gradient(to right,
            rgb(0 0 0 / 27%),
            rgb(0 0 0 / 27%),
            rgba(0, 0, 0, 0.2));
    clip-path: ellipse(130% 100% at 50% 0%);
} */

/* Content */
.home-hero-content {
    position: relative;
    z-index: 4;
    color: #fff;
    margin: 0 auto;
    top: 10px;
}

.home-hero-content h2 {
    font-size: 23px;
    color: var(--primary-color);
    text-align: center;
    /* background: #3f301b91; */
    max-width: fit-content;
    /* padding: 5px 20px; */
    margin: 0 auto;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: cursive;
    font-style: italic;
}

.home-hero-content h1 {
    font-size: 55px;
    line-height: 51px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
    text-align: center;
}

.home-hero-content h1 span {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;

    background: linear-gradient(135deg, #025455 0%, #5b0a72 55%, #1250e8 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 18px rgba(212, 175, 55, .25);
    transition: all .35s ease;
    min-height: 55px;
}

.hero-title span.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.home-hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    text-align: center;
    margin: 0 auto 15px;
    font-weight: 500;
    line-height: 1.3;

}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-button-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0px;
    justify-content: center;
}


/* =========================================
   COMMON BUTTON
========================================= */

.hero-button {
    position: relative;
    min-width: 280px;
    height: 45px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .1px;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


/* =========================================
   ICON
========================================= */

.hero-button-icon {
    width: 10px;
    height: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    font-size: 24px;
}


.hero-button-text {
    white-space: nowrap;
}


/* =========================================
   ARROW
========================================= */

.hero-button-arrow {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 5px;

    font-size: 16px;

    transition: transform .3s ease;
}


.hero-button:hover .hero-button-arrow {
    transform: translateX(5px);
}


/* =========================================
   BOOK YOUR STAY
========================================= */

.hero-button-book {
    background: linear-gradient(135deg,
            #ffd23f 0%,
            #f5b719 100%);

    color: #3b2147;

    box-shadow:
        0 10px 25px rgba(218, 161, 32, .28);
}


.hero-button-book:hover {
    color: #3b2147;
    transform: translateY(-3px);
    box-shadow:
        0 15px 32px rgba(218, 161, 32, .38);
}


.hero-button-whatsapp {
    background: #5b0b72;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, .55);
    box-shadow:
        0 10px 28px rgba(64, 12, 78, .28);
}


.hero-button-whatsapp .hero-button-icon {
    color: #25D366;
    font-size: 24px;
}


.hero-button-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-3px);
    background: #6b1283;
    border-color: rgba(255, 255, 255, .8);
    box-shadow:
        0 15px 35px rgba(64, 12, 78, .35);
}




@media (max-width: 768px) {
    .home-hero-section {
        min-height: auto;
        padding: 130px 0px 30px;
    }

    .home-hero-content h1 {
        font-size: 26px;
        line-height: 35px;
    }

    .home-hero-content h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .home-hero-content p {
        font-size: 14px;
        line-height: 28px;
    }


    .hero-button-wrapper {
        width: 100%;
        flex-direction: row;
        align-items: stretch;
        gap: 10px;
    }

    .hero-button-arrow {
        width: 10px;
        height: 10px;
        margin-left: 0px;
        font-size: 11px;
    }


    .hero-button {
        width: 100%;
        min-width: 0;
        height: 40px;
        font-size: 12px;
        flex: 1;
    }

}


/* <!-- About Section Start --> */

/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;
    overflow: hidden;
    background: #fef6ed;
}


/* =========================================
   RIGHT DECORATIVE IMAGE
========================================= */

.about-section::before {
    content: "";

    position: absolute;

    top: 20px;
    right: -80px;

    width: 520px;
    height: 430px;

    background-image: url("../images/desert-illustration.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;

    opacity: 0.35;

    pointer-events: none;

    z-index: 0;
}


/* Container above decoration */

.about-section .container {
    position: relative;
    z-index: 1;
}


/* =========================================
   LEFT IMAGE
========================================= */

.about-image-wrap {
    position: relative;

    width: 100%;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main image */

.about-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.about-content {
    position: relative;
    max-width: 700px;
    padding-left: 20px;
}




.about-subtitle {
    display: inline-block;

    margin-bottom: 8px;

    font-family: "Dancing Script", cursive;

    font-size: 34px;
    line-height: 1;

    color: #b86b19;
}






/* =========================================
   PARAGRAPH
========================================= */

.about-content p {
    max-width: 680px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
    color: #514653;
}


/* =========================================
   FEATURES
========================================= */

.about-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}


.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    border-right: 1px solid rgba(111, 22, 143, 0.20);
}


/* First item */

.about-feature:first-child {
    padding-left: 0;
}


/* Last item */

.about-feature:last-child {
    border-right: 0;
}


/* Icon */

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a2ba2;
    background: rgba(155, 58, 174, 0.08);
    border: 1px solid rgba(155, 58, 174, 0.20);
    font-size: 20px;
}


/* Text */

.about-feature span {
    font-size: 14px;

    font-weight: 600;

    color: #3b263f;

    white-space: nowrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-section::before {
        width: 350px;
        height: 300px;
        right: -120px;
        top: 35%;
    }


    .about-image-wrap {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }


    .about-content {
        padding-left: 0;
    }


    .about-features {
        gap: 20px;
    }


    .about-feature {
        padding: 0;

        border-right: 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .about-section {
        padding: 60px 0;
    }


    .about-section::before {
        opacity: 0.20;
    }


    .about-image-wrap {
        height: 300px;
    }




    .about-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .about-features {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }


    .about-feature {
        gap: 8px;
    }


    .feature-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 17px;
    }


    .about-feature span {
        font-size: 12px;

        white-space: normal;
    }
}

/* <!-- About Section Start Ended --> */




/* Destination */
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 1;
}

.destination-card.large {
    height: 100%;
    max-height: 370px;
    border-radius: 10px;
}

.destination-card.large img {
    border-radius: 10px;
    height: 100%;
}

.destination-card:not(.large) {
    height: 151px;
}

.destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transition: 0.4s ease;
}

.destination-card:hover .overlay {
    background: linear-gradient(to top,
            rgba(245, 231, 128, 0.78),
            rgba(255, 140, 0, 0));
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card .content {
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 2;
    color: #fff;
}

.destination-outer-content-below {
    padding: 5px;
    background-color: #fb960824;
}

.destination-outer-content-below p {
    margin-bottom: 0px;
    font-size: 12px;
    color: #797575;
}

.destination-outer-content-below p span {
    color: #000;
    font-weight: 600;
}

.destination-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
}

.destination-card span {
    font-size: 12px;
    letter-spacing: 0px;
}

/* Home  Activity Section */
/* ========================================
Home Activity Top Card
   ======================================== */
.home-activity-section {
    background: #faf8f4;
}

.home-activity-card {
    text-align: center;
    padding: 10px 10px;
    border-right: 1px solid #ece7df;
    transition: 0.3s ease;
}

.home-activity-card:hover {
    transform: translateY(-4px);
}

.home-activity-card-image {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-activity-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d1b10;
    margin-bottom: 0px;
    font-family: serif;
}

.home-activity-card p {
    margin-top: 4px;
    color: #666;
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .home-activity-card {
        padding: 10px 15px;

    }

    .home-activity-card-image {
        width: 60px;
        height: 60px;
    }

    .home-activity-card h4 {
        font-size: 16px;
    }

    .home-activity-card p {
        font-size: 13px;
    }
}

/* Home  Activity Section Ended*/


/* Mixup Card Section */
.all-mixup-tour-section {
    position: relative;
    overflow: hidden;
    background: rgb(255 238 108 / 13%);

}


.all-mixup-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    height: 100%;
}



.all-mixup-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.all-mixup-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.all-mixup-card:hover .all-mixup-card-image img {
    transform: scale(1.08);
}

.all-mixup-card-days {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 1px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 115, 0, 0.25);
}

.all-mixup-card-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ff4d6d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.all-mixup-card-content {
    padding: 5px 10px 15px 10px;
}

.all-mixup-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 5px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.all-mixup-card-route {
    color: var(--primary-color);
    font-size: 14px;
    align-items: center;
    margin-bottom: 0px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.all-mixup-card-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin: 10px 0px;
}

.feature-item {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    border: 1px solid #f0c640;
}

.all-mixup-card-features .feature-item:hover .feature-img img {
    transform: rotateY(180deg);
    transition: transform 0.8s ease;
}

.feature-img img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.feature-item span {
    font-size: 10px;
    font-weight: 700;
    color: #374151;
}

.all-mixup-card-price-wrap {
    display: flex;
    gap: 1px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex: 1;
}

.all-mixup-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    font-size: 12px;
}

.all-mixup-card-footer-design img {
    width: 100%;
    display: block;
    user-select: none;
    filter: var(--imge-brighntness-controll)
}



.expert-btn,
.whatsapp-btn,
.inquire-btn,
.details-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    transition: 0.3s ease;
}

.expert-btn {
    border: 1px solid #5d1b6b;
    color: #5d1b6b;
    padding: 6px 12px;
    border-radius: 5px;
}

.whatsapp-btn {
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
}

.expert-btn:hover,
.whatsapp-btn:hover,
.inquire-btn:hover,
.details-btn:hover {
    transform: translateY(-3px);
}

.all-mixup-card-price {
    text-align: center;
    flex: 1;
}

.all-mixup-card-price small {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.all-mixup-card-price h4 {
    font-size: 12px;
    margin: 0;
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
}

.all-mixup-card-bottom-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    font-size: 11px;
}

.inquire-btn {
    border: 1px solid #fab634;
    color: #705129;
    padding: 6px;
    border-radius: 5px;
}


.details-btn {
    background: #5d096b;
    color: #fff;
    padding: 6px;
    border-radius: 5px;
}

/* <!-- Top Selling Tour Packages --> */

.tour-package-card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    position: relative;
    transition: 0.4s ease;
}

.tour-package-card-img {
    position: relative;
    height: 275px;
    overflow: hidden;
}

.tour-package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.tour-package-card:hover img {
    transform: scale(1.08);
}

.tour-package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 15%,
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0.05) 100%);
}

.tour-package-badge {
    position: absolute;
    top: 15px;
    left: 0px;
    background: #fff91f;
    padding: 3px 8px;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    font-weight: 700;
    font-size: 12px;
    color: #000;
}

.tour-package-badge i {
    width: 15px;
    height: 15px;
    background: #000;
    color: #fff91f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.tour-package-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 2;
}

.tour-package-content h3 {
    font-size: 14px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 3px;
}

.tour-package-line {
    width: 70px;
    height: 2px;
    background: #fff91f;
    border-radius: 20px;
    margin-bottom: 0px;
}

.tour-package-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 0px 6px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tour-package-info-item {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.tour-package-info-item i {
    color: #fff91f;
    font-size: 12px;
}

.tour-package-info-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.tour-package-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 8px 10px;
    background: #f5920b2e;
}

.tour-package-price span {
    font-size: 11px;
    font-weight: 700;
    color: #111;
}

.tour-package-btn {
    background: #5d1b6b;
    color: #fff;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s ease;
}

.tour-package-btn i {
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff91f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

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

/* <!-- Top Selling Tour Packages  End--> */

/* <!-- Popular Rajasthan Tour Packages Started --> */
.flexive_card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    font-family: sans-serif;
}

.flexive_card_image {
    position: relative;
}

.flexive_card_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* TOP (rating + heart) */
.flexive_card_top {
    position: absolute;
    top: 12px;
    left: 0px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-weight: 600;
}

.flexive_card_rating {
    color: #000;
    background: #fff91f;
    padding: 1px 12px;
    border-radius: 0px 20px 20px 0px;
    font-size: 13px;
    font-weight: 400;
}

/* OVERLAY */
.flexive_card_overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px 10px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* TAG */
.flexive_card_tag {
    display: inline-block;
    background: rgb(113 106 106 / 38%);
    margin-bottom: 8px;
    font-size: 13px;
    font-family: "Poppins Medium", sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 3px 12px;
    border-radius: 8px;
    position: relative;
}

/* TITLE */
.flexive_card_title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
}

/* PRICE */
.flexive_card_price_box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0px 0;
}

.divider_flexive_card {
    height: 1px;
    background: #ffffff9e;
    margin: 5px 0px;
}

.flexive_card_old {
    text-decoration: line-through;
    opacity: 0.7;
}

.flexive_card_new {
    font-size: 12px;
    font-weight: bold;
}

.flexive_card_discount {
    background: transparent;
    color: #69d29c;
    border: 1px solid #69d29c;
    font-weight: 500;
    padding: 0px 6px;
    font-size: 12px;
    border-radius: 4px;
    min-width: 50px;
}

/* LOCATION */
.flexive_card_location {
    font-size: 13px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* text ellipsis */
.flexive_card_location_text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

/* read more */
.flexive_card_read_more {
    font-size: 10px;
    color: #1d8bd3;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    border-radius: 15px;
    border: 1px solid #ffffffb5;
}

/* <!-- Popular Rajasthan Tour Packages End --> */

/* <!-- Testimonial Section Start --> */
.modern-client-review-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid var(--primary-color);
}

.modern-client-review-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #3a16a3, #7e22c5);
    border-radius: 50%;
    opacity: 0.08;
}

.modern-client-review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.modern-client-review-user img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.modern-client-review-info h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.modern-client-review-info span {
    font-size: 14px;
    color: #6b7280;
}

.modern-client-review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
}

.modern-client-review-stars i {
    color: #facc15;
    font-size: 15px;
}

.modern-client-review-card p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 100px;
}

.modern-client-read-more-btn {
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    justify-content: end;
    margin-right: 1rem;
}

.modern-client-read-more-btn:hover {
    color: #15803d;
    text-decoration: underline;
}

/* <!-- Testimonial Section Start End--> */
.desert-video-section {
    background: #fffaf2;
}


/* ==========================================
   LEFT MAIN VIDEO
========================================== */

.main-video-box {
    position: sticky;
    top: 30px;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #24102e;

    border-radius: 24px;

    border: 1px solid rgba(184, 120, 32, 0.35);

    box-shadow:
        0 25px 60px rgba(58, 18, 75, 0.14);
}


.main-video-box iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ==========================================
   RIGHT VIDEO CARDS
========================================== */

.video-cards {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


/* Card */

.video-card {
    display: flex;

    width: 100%;

    min-height: 160px;

    padding: 10px;

    background: #ffffff;

    border: 1px solid rgba(65, 18, 84, 0.12);

    border-radius: 18px;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.video-card:hover {
    transform: translateX(-4px);

    border-color: #c58b35;

    box-shadow:
        0 12px 35px rgba(65, 18, 84, 0.10);
}


/* Active */

.video-card.active {
    border-color: #b87820;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #fffaf1 100%);

    box-shadow:
        0 10px 30px rgba(184, 120, 32, 0.12);
}


/* ==========================================
   THUMBNAIL
========================================== */

.video-thumb {
    position: relative;

    width: 190px;

    min-width: 190px;

    overflow: hidden;

    border-radius: 13px;
}


.video-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}


.video-card:hover .video-thumb img {
    transform: scale(1.07);
}


/* Play */

.thumb-play {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 48px;
    height: 48px;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(82, 19, 99, .92);

    border: 2px solid rgba(255, 255, 255, .9);

    color: #ffffff;

    font-size: 14px;

    transition: .3s;
}


.video-card:hover .thumb-play {
    background: #dfa83d;

    color: #381047;

    transform:
        translate(-50%, -50%) scale(1.08);
}


/* ==========================================
   CARD CONTENT
========================================== */

.video-card-content {
    flex: 1;

    padding: 8px 14px;

    display: flex;

    flex-direction: column;
}


.video-label {
    display: inline-block;

    margin-bottom: 4px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    color: #b87820;
}


.video-card-content h3 {
    margin: 0 0 7px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 600;

    color: #42145a;
}


.video-card-content p {
    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    color: #756d77;
}


/* ==========================================
   CARD BOTTOM
========================================== */

.video-card-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: auto;

    padding-top: 8px;

    font-size: 11px;

    color: #888;
}


.video-card-bottom i {
    margin-right: 4px;

    color: #b87820;
}


.watch-text {
    color: #5d126f;

    font-weight: 700;
}


.watch-text i {
    margin-left: 4px;

    margin-right: 0;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {

    .video-thumb {
        width: 160px;
        min-width: 160px;
    }

    .video-card-content h3 {
        font-size: 17px;
    }

    .video-card-content p {
        font-size: 12px;
    }
}


@media (max-width: 991px) {
    .main-video-box {
        position: relative;
        top: 0;
    }

    .video-thumb {
        width: 200px;
        min-width: 200px;
    }

    .video-card-content h3 {
        font-size: 19px;
    }

    .video-card-content p {
        font-size: 13px;
    }
}


@media (max-width: 575px) {
    .video-card {
        min-height: 125px;
    }

    .video-thumb {
        width: 115px;
        min-width: 115px;
    }

    .video-card-content {
        padding: 5px 9px;
    }

    .video-card-content h3 {
        font-size: 14px;
    }

    .video-card-content p {
        display: none;
    }

    .video-card-bottom {
        font-size: 9px;
    }

    .thumb-play {
        width: 36px;
        height: 36px;

        font-size: 11px;
    }
}



/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 40px 0 0;
}


.footer-logo-warpper img {
    width: 211px;
    background-color: #fff;
    border-radius: 5px;
}

.footer-widget h2,
.footer-widget h4 {
    color: var(--white-color);
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: var(--white-color);
    transition: var(--transition);
    border: 1px solid #c8880c;
    font-size: 20px;

}


.footer-social a:hover {
    background: #007bff;
    transform: translateY(-5px);
}

.footer-widget h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, #ff6b35, #fff91f);
    border-radius: 2px;
    box-shadow: 0 0 2px rgb(255 245 33);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 30px;
    padding: 5px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Right side Stikcy */
/* Right side Stikcy */
/* ==========================================
   STICKY CTA SIDEBAR - V1
========================================== */

.common-sticky-wrapper {
    top: 156px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
}


/* Main Card */

.itinerary-cta-v1-card {
    width: 100%;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(93, 9, 107, 0.12);

    border-radius: 10px;

    box-shadow:
        0 10px 35px rgba(93, 9, 107, 0.10);
}


/* ==========================================
   HEADER
========================================== */

.itinerary-cta-v1-header {
    position: relative;

    min-height: 112px;

    padding: 22px 22px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(135deg,
            #7B1FA2 0%,
            #9C27B0 55%,
            #DFA83D 100%);
}

.itinerary-cta-v1-header::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -65px;
    top: -75px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 50%;
}

.itinerary-cta-v1-header-content {
    position: relative;
    z-index: 2;
}

.itinerary-cta-v1-header h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.15;
}

.itinerary-cta-v1-header p {
    max-width: 230px;

    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 13px;
    line-height: 1.45;
}

.itinerary-cta-v1-header-decoration {
    position: relative;

    width: 80px;
    height: 70px;

    color: rgba(255, 255, 255, 0.25);

    z-index: 1;
}

.itinerary-cta-v1-header-decoration .fa-location-dot {
    position: absolute;

    left: 5px;
    top: 0;

    font-size: 22px;
}

.itinerary-cta-v1-header-decoration .fa-suitcase {
    position: absolute;

    right: 0;
    bottom: 3px;

    font-size: 45px;
}


/* ==========================================
   PRICE
========================================== */

.itinerary-cta-v1-price-row {
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    border-bottom: 1px solid #eee5f2;
}

.itinerary-cta-v1-price {
    min-width: 0;
}

.itinerary-cta-v1-price-label {
    display: block;

    margin-bottom: 2px;

    color: #675b70;

    font-size: 12px;
}

.itinerary-cta-v1-price strong {
    display: block;

    color: #5d096b;

    font-size: 22px;
    font-weight: 800;

    line-height: 1.2;
}

.itinerary-cta-v1-price small {
    display: block;

    margin-top: 2px;

    color: #777;

    font-size: 11px;
}


/* Guarantee */

.itinerary-cta-v1-guarantee {
    min-width: 105px;

    padding: 9px 10px;

    display: flex;
    align-items: center;
    gap: 8px;

    border: 1px dashed #c982dc;

    border-radius: 9px;

    background: #fcf7ff;

    color: #5d096b;
}

.itinerary-cta-v1-guarantee i {
    font-size: 19px;
}

.itinerary-cta-v1-guarantee span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}


/* ==========================================
   DETAILS
========================================== */

.itinerary-cta-v1-details {
    padding: 4px 20px;
}

.itinerary-cta-v1-detail {
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 13px;

    border-bottom: 1px solid #eee8f1;
}

.itinerary-cta-v1-detail:last-child {
    border-bottom: 0;
}

.itinerary-cta-v1-detail-icon {
    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f7edfb;

    color: #7B1FA2;

    font-size: 16px;
}

.itinerary-cta-v1-detail-content {
    min-width: 0;
}

.itinerary-cta-v1-detail-content span {
    display: block;

    margin-bottom: 2px;

    color: #74697b;

    font-size: 11px;
}

.itinerary-cta-v1-detail-content strong {
    display: block;

    color: #2e1940;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.3;
}


/* ==========================================
   SECURE BOX
========================================== */

.itinerary-cta-v1-secure {
    margin: 10px 20px;

    padding: 12px;

    display: flex;
    align-items: center;

    gap: 12px;

    border-radius: 9px;

    background: #f8effb;
}

.itinerary-cta-v1-secure-icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #ffffff;

    background: #6d1190;

    font-size: 18px;
}

.itinerary-cta-v1-secure strong {
    display: block;

    color: #5d096b;

    font-size: 13px;
}

.itinerary-cta-v1-secure p {
    margin: 2px 0 0;

    color: #5f5367;

    font-size: 11px;

    line-height: 1.35;
}


/* ==========================================
   BOOK BUTTON
========================================== */

.itinerary-cta-v1-book-btn {
    margin: 0 20px 9px;

    min-height: 55px;

    padding: 8px 12px;

    display: flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: #ffffff;

    border-radius: 8px;

    background:
        linear-gradient(135deg,
            #6d0b91 0%,
            #b116a5 55%,
            #ef7b24 100%);

    transition: transform 0.2s ease,
        box-shadow 0.2s ease;
}

.itinerary-cta-v1-book-btn:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(123, 31, 162, 0.25);
}

.itinerary-cta-v1-book-icon {
    width: 34px;
    text-align: center;

    font-size: 21px;
}

.itinerary-cta-v1-book-text {
    flex: 1;
}

.itinerary-cta-v1-book-text strong {
    display: block;

    font-size: 16px;
    line-height: 1.1;
}

.itinerary-cta-v1-book-text small {
    display: block;

    margin-top: 2px;

    font-size: 10px;

    opacity: 0.9;
}

.itinerary-cta-v1-book-btn>.fa-chevron-right {
    font-size: 12px;
}


/* ==========================================
   WHATSAPP
========================================== */

.itinerary-cta-v1-whatsapp {
    margin: 0 20px;

    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 1.5px solid #7B1FA2;

    border-radius: 8px;

    color: #6d0b91;

    background: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.2s ease;
}

.itinerary-cta-v1-whatsapp:hover {
    color: #ffffff;

    background: #7B1FA2;
}

.itinerary-cta-v1-whatsapp i {
    font-size: 19px;
}


/* ==========================================
   EXPERT
========================================== */

.itinerary-cta-v1-expert {
    padding: 15px 20px 10px;
}

.itinerary-cta-v1-expert-heading {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 10px;
}

.itinerary-cta-v1-expert-heading span {
    height: 1px;

    flex: 1;

    background:
        linear-gradient(90deg,
            transparent,
            #c679d6);
}

.itinerary-cta-v1-expert-heading span:last-child {
    background:
        linear-gradient(90deg,
            #c679d6,
            transparent);
}

.itinerary-cta-v1-expert-heading strong {
    white-space: nowrap;

    color: #38204a;

    font-size: 12px;
}


/* Contact */

.itinerary-cta-v1-contact {
    min-height: 49px;

    padding: 7px 9px;

    margin-bottom: 7px;

    display: flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;

    border-radius: 8px;

    background: #fbf7fd;
}

.itinerary-cta-v1-contact-icon {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #6d0b91;

    background: #f0e1f7;

    font-size: 13px;
}

.itinerary-cta-v1-contact strong {
    display: block;

    color: #3c214c;

    font-size: 12px;
}

.itinerary-cta-v1-contact small {
    display: block;

    margin-top: 1px;

    color: #766a7c;

    font-size: 9px;
}


/* ==========================================
   BOTTOM GUARANTEE
========================================== */

.itinerary-cta-v1-bottom {
    min-height: 62px;

    padding: 10px 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #5d096b 0%,
            #7B1FA2 60%,
            #9C27B0 100%);
}

.itinerary-cta-v1-bottom-icon {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.4);

    font-size: 18px;
}

.itinerary-cta-v1-bottom strong {
    display: block;

    font-size: 12px;
}

.itinerary-cta-v1-bottom span {
    display: block;

    margin-top: 2px;

    font-size: 9px;

    opacity: 0.9;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .common-sticky-wrapper {
        position: relative;
        top: auto;
    }

}


@media (max-width: 575px) {

    .itinerary-cta-v1-header {
        min-height: 105px;

        padding: 18px;
    }

    .itinerary-cta-v1-header h3 {
        font-size: 22px;
    }

    .itinerary-cta-v1-price-row {
        padding: 15px;
    }

    .itinerary-cta-v1-price strong {
        font-size: 19px;
    }

    .itinerary-cta-v1-details {
        padding: 4px 15px;
    }

    .itinerary-cta-v1-secure {
        margin-left: 15px;
        margin-right: 15px;
    }

    .itinerary-cta-v1-book-btn,
    .itinerary-cta-v1-whatsapp {
        margin-left: 15px;
        margin-right: 15px;
    }

    .itinerary-cta-v1-expert {
        padding-left: 15px;
        padding-right: 15px;
    }

}

/* Right Side Cta ended */



/* Home Tour Category Cards */
.tour-card-hm {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.tour-card-hm-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-card-hm-img {
    position: relative;
    height: 270px;
}

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

.tour-card-hm-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.4),
            transparent);
    z-index: 1;
}

.tour-card-hm-tag {
    position: absolute;
    top: 12px;
    left: 0px;
    background: #ffcc00;
    padding: 3px 10px;
    border-radius: 0px 20px 20px 0px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-hm-days {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgb(45 15 0 / 62%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 2;
}

.tour-card-hm-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    z-index: 2;
}

.tour-card-hm-overlay h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
}

.tour-card-hm-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0px;
    line-height: 1.3;
}

.tour-card-hm-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px 10px 10px;
    background: #feac1a21;
    border-radius: 0px 0px 20px 20px;
    border: 1px solid #dcd6d6bf;
}

.tour-card-hm-bottom h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.tour-card-hm-off {
    font-size: 11px;
    color: #7f4c00;
    background: #fff;
    border: 1px solid #7f4c00;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.tour-card-hm-btn {
    width: 38px;
    height: 38px;
    background: #00204a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.tour-card-hm-btn:hover {
    background: #ff7a00;
}

/* Home Tour Category Cards  End*/

@media (max-width: 991px) {
    .common-sticky-wrapper {
        position: relative !important;
        top: 0;
        margin-top: 30px;
    }
}

/* ========================================
   Hide Unhide in Desk and Mob view Css
   ======================================== */
/* sowing in mobile anf desktop */
@media (max-width: 991px) {
    .hide-on-mob-view {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-on-desktop {
        display: none !important;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        /* max-width: 1300px; */
        max-width: calc(100% - 130px);
    }
}

@media (min-width: 2000px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1300px;
    }
}


/* Details Page */

.details-page-hero {
    padding: 250px 0 10px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.details-page-hero .hero-title {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
}

.details-page-hero .hero-title span {
    background: linear-gradient(135deg, #ff6b35, #8e119b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dtpage-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.dtpage-location,
.dtpage-duration {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dtpage-title i {
    font-size: 14px;
}

.dtpage-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
}

.details-page-hero .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 750px;
}

.tiney-dt-card-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.tiney-dt-card {
    background: #fff;
    border-radius: 5px;
    padding: 20px 6px;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #ff6b35;
}

.tiney-dt-card img {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
}

.tiney-dt-card p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.dp-boxarea {
    padding: 20px;
    background: #ffffff;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 1px 5px 0 rgb(0 0 0 / 30%);
    box-shadow: 0 1px 5px 0 rgb(0 0 0 / 30%);
    margin: 20px 0px;
    border-radius: 10px;
}

.dp-boxarea h4 {
    font-size: 18px;
}

.tour-gallery__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.tour-gallery__shell--single {
    grid-template-columns: 1fr;
}

.tour-gallery__primary,
.tour-gallery__thumb {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #edf3ff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(15, 61, 145, 0.08);
}

.tour-gallery__primary::after,
.tour-gallery__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(8, 16, 34, 0.04),
            rgba(8, 16, 34, 0.2));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tour-gallery__primary:hover::after,
.tour-gallery__thumb:hover::after {
    opacity: 1;
}

.tour-gallery__primary:hover img,
.tour-gallery__thumb:hover img {
    transform: scale(1.05);
}

.tour-gallery__primary img {
    height: 270px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.tour-gallery__thumb img,
.tour-gallery-modal__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-gallery__primary img,
.tour-gallery__thumb img {
    transition: transform 0.45s ease;
}

.tour-gallery__primary {
    height: 100%;
    min-height: 100%;
}

.tour-gallery__desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tour-gallery__desktop-grid .tour-gallery__thumb {
    aspect-ratio: 4 / 3;
}

.tour-gallery__mobile-stack {
    display: none;
}

.tour-gallery__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #ef4136;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: #ef4136;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tour-gallery__badge i {
    font-size: 18px;
}

.tour-gallery__thumb--overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(6, 15, 33, 0.06),
            rgba(6, 15, 33, 0.62));
}

.tour-gallery__view-all {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-align: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.tour-gallery-modal .modal-dialog {
    margin: 0;
    max-width: 100vw;
    height: 100vh;
}

.tour-gallery-modal .modal-content {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #08101f;
    color: #ffffff;
}

.tour-gallery-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 32px 16px;
}

.tour-gallery-modal__eyebrow {
    margin: 0 0 6px;
    color: #8fb8ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-gallery-modal__header .modal-title {
    margin: 0;
    font-size: 28px;
    color: #ffffff;
}

.tour-gallery-modal__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    padding: 0 32px 28px;
}

.tour-gallery-modal__stage {
    position: relative;
    margin: 0;
    flex: 1 1 auto;
}

.tour-gallery-modal__item {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 180px);
    min-height: 420px;
    padding: 32px 96px;
    border-radius: 28px;
    background: radial-gradient(circle at top,
            rgba(29, 50, 94, 0.85),
            rgba(8, 16, 31, 0.96));
}

.tour-gallery-modal__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tour-gallery-modal__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.tour-gallery-modal__nav:hover {
    background: rgba(13, 110, 253, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.tour-gallery-modal__nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.tour-gallery-modal__nav i {
    font-size: 24px;
}

.tour-gallery-modal__nav--prev {
    left: 24px;
}

.tour-gallery-modal__nav--next {
    right: 24px;
}

.tour-gallery-modal__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
}

.tour-gallery-modal__caption,
.tour-gallery-modal__counter {
    margin: 0;
}

.tour-gallery-modal__caption {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 500;
}

.tour-gallery-modal__counter {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .tour-gallery__shell {
        grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
        gap: 12px;
    }

    .tour-gallery__shell--single {
        grid-template-columns: 1fr;
    }

    .tour-gallery__desktop-grid {
        display: none;
    }

    .tour-gallery__mobile-stack {
        display: grid;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .tour-gallery__primary {
        aspect-ratio: 4 / 5;
    }

    .tour-gallery__thumb {
        aspect-ratio: 4 / 3;
        height: 125px;
    }

    .tour-gallery__badge {
        top: 14px;
        left: 14px;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 14px;
        font-size: 14px;
    }

    .tour-gallery__badge i {
        font-size: 15px;
    }

    .tour-gallery__view-all {
        padding: 16px 12px;
        font-size: 15px;
    }

    .tour-gallery-modal__header {
        padding: 18px 18px 12px;
    }

    .tour-gallery-modal__header .modal-title {
        font-size: 22px;
    }

    .tour-gallery-modal__body {
        padding: 0 18px 18px;
    }

    .tour-gallery-modal__item {
        height: calc(100vh - 160px);
        min-height: 260px;
        padding: 16px 0px;
        border-radius: 20px;
    }

    .tour-gallery-modal__nav {
        width: 35px;
        height: 35px;
    }

    .tour-gallery-modal__nav i {
        font-size: 18px;
    }

    .tour-gallery-modal__nav--prev {
        left: 12px;
    }

    .tour-gallery-modal__nav--next {
        right: 12px;
    }
}

.timeline {
    position: relative;
}

.timeline-item:not(.active) .timeline-body {
    display: none;
}



.timeline-item {
    position: relative;
    margin-bottom: 10px;
    border: 1px solid #dadada;

}

.timeline-dot {
    position: absolute;
    left: 5px;
    top: 14px;
    width: 15px;
    height: 15px;
    border: 3px solid #0d1b2a;
    border-radius: 50%;
    background: #fff;
}

.timeline-content {
    padding-left: 25px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-header h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.timeline-header h4 span {
    color: #ff5a1f;
    font-weight: 700;
}

.toggle {
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    padding-right: 5px;
}

.timeline-body {
    margin-top: 0px;
}

.timeline-body p {
    color: #444;
    line-height: 1.5;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.timeline-body ul {
    list-style: none;
    padding-left: 0;
}

.timeline-body ul li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
}

.timeline-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #ff5a1f;
    border-radius: 50%;
}

.dp-routes span i {
    color: #b319a2;
}

/* Overview  */
.dp-overview ul {
    padding-left: 15px;
    list-style-type: disc;
}

.dp-overview ul li::marker {
    color: #b319a2;
    font-size: 14px;
}

.dp-overview strong {
    color: #0f3d91;
}

.dp-overview h2 {
    font-size: 21px;
    color: #b319a2;
}

.dp-overview h3 {
    font-size: 18px;
}

.tour-details-tour-overview {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tour-details-tour-overview p {
    font-size: 14px;
}

.read-more-btn {
    margin-top: 0px;
    border: none;
    background: transparent;
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
    text-align: end;
}

/* stikcey nav */
.dt-pg-tabs-wrapper {
    padding: 12px;
}

.dt-pg-tabs-wrapper {
    position: sticky;
    top: 154px;
    width: 100%;
    z-index: 50;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dt-pg-tabs {
    display: flex;
    gap: 10px;
    min-width: max-content;
}

/* Tab button */
.dt-pg-tab {
    border: none;
    background: #e4e6eb;
    color: #555;
    padding: 5px 18px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dt-pg-tab:hover {
    background: var(--gradient-primary);
    color: #fff;
}

.dt-pg-active {
    background: var(--gradient-primary);
    color: #fff;
}

[id].dt-pg-section-target {
    scroll-margin-top: var(--dt-pg-scroll-offset, 150px);
}

.dt-pg-icon {
    margin-right: 6px;
}








/* ---------------- MOBILE FIX ---------------- */
@media (max-width: 768px) {
    .dp-boxarea {
        padding: 10px;
    }

    .dt-pg-tabs-wrapper {
        top: 91px;
    }

    .dp-boxarea h4 {
        font-size: 16px;
    }

    .dp-boxarea h5 {
        font-size: 14px;
    }

    .dp-pg-tabs-wrapper {
        top: 53px;
    }

    .dtpage-title {
        gap: 5px;
        font-size: 12px;

    }

    .details-page-hero .hero-title {
        font-size: 20px;
    }
}

/* Priceing Table End */

/* faq section */
.tour-dp-faq-item {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    background: #fff;
}

.tour-dp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    cursor: pointer;
}

.tour-dp-faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.tour-dp-faq-question h4 span {
    color: #b319a2;
    font-weight: 700;
}

.tour-dp-faq-toggle {
    font-size: 24px;
    font-weight: bold;
}

.tour-dp-faq-answer {
    border-top: 1px solid #ddd;
    padding: 5px 15px;
}

.tour-dp-faq-answer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.tour-dp-faq-answer .ans {
    color: green;
    font-weight: 600;
}

.tour-dp-faq-item:not(.active) .tour-dp-faq-answer {
    display: none;
}

.tour-dp-faq-item.active {
    background: #fafafa;
}

/*  */
.dp-hlight h4 {
    font-size: 16px;
}

.dp-hlight h3 {
    font-size: 22px;
    color: #b319a2;
}

.dp-common-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;

    li {
        position: relative;
        padding: 12px 15px 12px 38px;
        margin-bottom: 10px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        transition: all 0.3s ease;

        &::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 13px;
            top: 13px;
            color: #b51b9e;
            font-size: 16px;
        }

        &:hover {
            border-color: #821571;
            transform: translateX(4px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
        }
    }
}

/* ul li design */
.dp-highlights-list {
    list-style: none;
    padding-left: 0px;
}

.dp-highlights-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 8px;
}

/* custom dot image */
.dp-highlights-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background: url("/assets/images/menu.png") no-repeat center;
    background-size: contain;
}

.dp-exclusions-list {
    list-style: none;
    padding-left: 0px;
}

.dp-exclusions-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 8px;
    font-size: 14px;
}

.dp-exclusions-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background: url("/assets/images/tick.png") no-repeat center;
    background-size: contain;
}

.dp-inclusion-list {
    list-style: none;
    padding-left: 0px;
}

.dp-inclusion-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 8px;
    font-size: 14px;
}

.dp-inclusion-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background: url("/assets/images/cross.png") no-repeat center;
    background-size: contain;
}


/* Blogs */
.cat-blogs-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid #666;
}



.cat-blogs-image {
    position: relative;
    overflow: hidden;
}

.cat-blogs-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.cat-blogs-card:hover .cat-blogs-image img {
    transform: scale(1.08);
}

.cat-blogs-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b00;
    color: #fff;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.cat-blogs-content {
    padding: 10px;
}

.cat-blogs-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #777;
    font-size: 14px;
}

.cat-blogs-meta i {
    color: #ff6b00;
    margin-right: 5px;
}

.cat-blogs-title {
    margin-bottom: 5px;
    line-height: 1.2;
}

.cat-blogs-title a {
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-blogs-title a:hover {
    color: #ff6b00;
}

.cat-blogs-desc {
    color: #666;
    line-height: 1.3;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-blogs-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff6b00;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    justify-content: end;
}

.cat-blogs-btn:hover {
    gap: 12px;
}

.cat-blogs-btn i {
    transition: 0.3s;
}

/* right side blogs category */
.blog-categories-grid {
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Blog Category Item */
.blog-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f39312;
}

.blog-category-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ff6b35;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.blog-category-item:hover::before {
    transform: scaleY(1);
}

.blog-category-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(224, 106, 33, 0.15);
    transform: translateX(5px);
}

/* Category Post Image */
.category-post-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-category-item:hover .category-post-image img {
    transform: scale(1.1);
}

.category-post-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(209, 105, 1, 0.3) 0%,
            rgba(0, 101, 224, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-category-item:hover .category-post-image::after {
    opacity: 1;
}

/* Category Post Info */
.category-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-post-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: color 0.3s ease;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-category-item:hover .category-post-info h4 {
    color: #ff6b35;
}

/* Post Date */
.post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6c757d;
}

.post-date i {
    color: #ff6b35;
    font-size: 0.75rem;
}

.post-date span {
    font-weight: 500;
}


/* Package Page */
.tp-package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgb(0 0 0 / 62%);
    position: relative;
    margin-bottom: 20px;
}

.tp-left-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.tp-duration-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
}

.tp-floating-features {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffffffc7;
    backdrop-filter: invert(1);
    border-radius: 5px;
    padding: 5px 5px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 3px 20px rgb(255 107 53);
}

.tp-feature-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid #ff6b3552;
}

.tp-feature-item:last-child {
    border-right: 0;
}

.tp-feature-item i {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}



.tp-content {
    padding: 15px;
}

.tp-package-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #bb278f;
    margin-bottom: 5px;
}

.tp-location {
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.tp-location strong {
    color: #6d1190;
}

.tp-location i {
    color: var(--secondary-color);
    margin-right: 0px;
}

.tp-info-box {
    background: #f7faf8;
    border-radius: 5px;
    padding: 0px;
    border: 1px solid #eef1ef;
}

.tp-info-item {
    text-align: center;
    border-right: 1px solid #e5e5e5;
}

.tp-info-item:last-child {
    border-right: 0;
}

.tp-info-item i {
    font-size: 28px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0px;
}

.tp-info-item h6 {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tp-info-item p {
    margin: 0;
    color: #777;
    font-size: 14px;
}



/* Sticky CTA */
.tp-sticky-cta {
    position: sticky;
    top: 20px;
    background: #fff;
    border-left: 1px dashed #ddd;
    padding: 15px;
    height: calc(100% - 35px);
}

.tp-price-label {
    display: inline-block;
    background: #fe6a3638;
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.tp-price {
    font-size: 18px;
    font-weight: 800;
    color: #12222d;
    margin-bottom: 8px;
}

.tp-old-price {
    color: #9b9b9b;
    text-decoration: line-through;
    margin-bottom: 40px;
    font-size: 11px;
    display: block;
}

.tp-btn-container {
    display: flex;
    gap: 10px;
}

.tp-btn {
    width: 100%;
    height: 35px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.tp-btn-outline {
    border: 1px solid #9124ab;
    color: #a113a0;
}

.tp-btn-primary {
    background: linear-gradient(135deg, #5d096b 0%, #7B1FA2 60%, #9C27B0 100%);
    color: #fff;
}

.tp-btn-whatsapp {
    background: #22c55e;
    color: #fff;
}

.tp-btn-primary:hover,
.tp-btn-whatsapp:hover {
    color: #fff;
    opacity: 0.9;
}




@media(max-width:991px) {

    .tp-sticky-cta {
        border-left: 0;
        border-top: 1px dashed #ddd;
    }


}

@media(max-width:767px) {

    .tp-content {
        padding: 10px;
    }

    .tp-package-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .tp-floating-features {
        position: static;
        margin: 15px;
    }

    .tp-left-image {
        height: 200px;
    }

    .tp-price {
        font-size: 34px;
    }

    .tp-location {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

.common-hero-section {
    padding-top: 250px;
}











/* State Tour Crad */
.hm-all-cat-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding: 8px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    cursor: pointer;
    border: 1px solid #ececec;
}

.hm-all-cat-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 14px;
}

.hm-all-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hm-all-cat-card:hover .hm-all-cat-image img {
    transform: scale(1.08);
}

.hm-all-cat-title {
    font-size: 14px;
    font-weight: 700;
    color: #4a2c16;
    text-transform: uppercase;
    margin: 12px 0 4px;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .hm-all-cat-image {
        height: 120px;
    }

    .hm-all-cat-title {
        font-size: 12px;
    }

    .hm-all-cat-card {
        margin-bottom: 15px;
    }
}