/* ════════════════════════════════
   ROOT VARIABLES – LIGHT THEME
════════════════════════════════ */
:root {
    --blue-lt: #567dae;
    --yellow-lt: #f6b703;
    --white: #FFFFFF;
    --off-white: #FDF8F3;
    --light-bg: #F9F3EC;
    --light-card: #FFFFFF;
    --border: #EDE4D8;
    --text: #1C1410;
    --text-mid: #4A3C30;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Outfit', sans-serif;
    /* Changed to Outfit for a more premium feel */
    --accent: #f6b703;
    --shadow: rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

::selection {
    background: var(--yellow-lt);
    color: #fff;
}

.whatsapp {
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 9rem;
    left: 20px;
    z-index: 99999;
}

.floating-call-btn {
    height: 50px;
    width: 50px;
    background: white;
    position: fixed;
    bottom: 5rem;
    left: 20px;
    border-radius: 9px;
    z-index: 9999;
    display: flex;
    gap: 10px;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-call-btn img {
    height: 100%;
    width: 100%;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
    }

    100% {
        transform: translateY(0);
    }
}

/* @media (max-width: 767px) {
    .floating-call-btn {
        padding: 15px;
        bottom: 20px;
        left: 20px;
        border-radius: 50%;
    }
} */

/* ═══ TOP BAR ═══ */
.top-bar {
    background: var(--yellow-lt);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    position: relative;
    width: 100%;
    z-index: 1045;
    transition: transform 0.3s;
}

.top-link {
    color: rgb(255 255 255 / 89%);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-link:hover {
    color: var(--white);
}

.top-social {
    color: rgb(255 255 255 / 89%);
    transition: color 0.2s, transform 0.2s;
    text-decoration: none;
}

.top-social:hover {
    color: var(--gold-lt);
    transform: translateY(-2px);
}

/* navbar */
#mainNav {
    background: rgb(252 252 252);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: all .3s ease;
    top: 0;
}

#mainNav.scrolled {
    top: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    background: rgb(252 252 252);
}

.navbar-brand .b-icon {
    width: 38px;
    height: 38px;
    background: var(--gold-lt);
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    width: 100%;
    max-width: 104px;
}

.brand-name {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .04em;
}

.brand-name span {
    color: var(--blue-lt);
}

.nav-link {
    color: black;
    font-size: .8rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: color .2s;
    font-weight: 500;
    font-family: 'bootstrap-icons';
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-lt) !important;
}

.btn-nav {
    background: var(--yellow-lt);
    color: #fff !important;
    font-weight: 500;
    font-size: .8rem;
    letter-spacing: .05em;
    border-radius: 100px;
    padding: .55rem 1.3rem;
    border: none;
    transition: opacity .25s, transform .25s;
}

.btn-nav:hover {
    background: var(--blue-lt);
    opacity: .88;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #1e87a157;
}

.navbar-toggler {
    border: 1px solid var(--border);
}

.navbar-toggler-icon {
    filter: none;
}

.fa-house {
    color: var(--yellow-lt);
}

/* ═══ INDEX HERO SLIDER ═══ */
#index-hero-slider {
    position: relative;
    height: 80vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    border-top: 2px solid var(--yellow-lt);
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgb(0 0 0 / 33%) 0%, rgb(0 0 0 / 27%) 100%) !important;
}

.swiper-slide-active .hero-bg {
    transform: scale(1.1);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.5s;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Typography & Badges */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bdot {
    width: 8px;
    height: 8px;
    background: var(--yellow-lt);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--yellow-lt);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-eyebrow {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--yellow-lt);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-h1 em {
    font-style: normal;
    color: var(--yellow-lt);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--yellow-lt);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-hero:hover {
    background: var(--blue-lt);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 31px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-hero:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Controls */
.hero-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--yellow-lt);
    width: 60px;
}

.hero-navigation {
    position: absolute;
    right: 5%;
    bottom: 40px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--yellow-lt);
    border-color: var(--yellow-lt);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 5%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 20;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--yellow-lt);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Extra animations for text */
.swiper-slide-active .hero-h1 {
    animation: fadeInDown 1s both 0.6s;
}

.swiper-slide-active .hero-sub {
    animation: fadeInDown 1s both 0.8s;
}

.swiper-slide-active .d-flex {
    animation: fadeInDown 1s both 1s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ════════════════════════════════
   MARQUEE FACILITIES
════════════════════════════════ */
.marquee {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-animation 40s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 50px;
    color: var(--text-mid);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.marquee-item i {
    color: var(--yellow-lt);
    font-size: 1.4rem;
}

.marquee-item span {
    background: #547eb3;
    color: white;
    padding: 7px 20px;
    border-radius: 20px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}


/* ════════════════════════════════
   ABOUT US SECTION
════════════════════════════════ */
.text-green {
    color: var(--yellow-lt);
}

.bg-green {
    background-color: var(--yellow-lt);
}

.btn-green {
    background-color: var(--yellow-lt);
    color: #fff !important;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: var(--blue-lt);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 135, 161, 0.3);
}

.bdot-green {
    width: 8px;
    height: 8px;
    background: var(--yellow-lt);
    border-radius: 50%;
    display: inline-block;
}

.section-badge {
    color: var(--blue-lt);
}

.about-image-wrapper {
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-main img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img-main img {
    transform: scale(1.05);
}

.about-experience-badge {
    top: 30px;
    right: 0;
    width: 140px;
    height: 140px;
    background: var(--white);
    z-index: 2;
    border: 1px solid var(--border);
}

.about-experience-badge .exp-number {
    font-size: 2.5rem;
    color: var(--yellow-lt);
    line-height: 1;
}

.about-experience-badge .exp-text {
    color: var(--text-muted);
    line-height: 1.2;
}

.about-img-sub {
    z-index: 1;
}

.feat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .call-icon {
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(137, 180, 56, 0.4);
    }

    100% {
        transform: scale(1);
    }
}

.col {
    align-content: center;
}


/* ════════════════════════════════
   INNER PAGE HERO
   ════════════════════════════════ */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.himachal-hero {
    background-image: linear-gradient(rgb(0 0 0 / 35%), rgb(0 0 0 / 32%)), url(../images/other/himachal-banner.jpg);
    height: 65vh;
    min-height: 500px;
}

.kinnaur-hero {
    background-image: url(../images/himachal/kinnaur-banner.jpg);
}

#dharamshala-hero {
    background-image: url(../images/himachal/dharamshala.jpg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgb(0 0 0 / 5%) 80%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.hero-title em {
    font-family: var(--serif);
    color: var(--yellow-lt);
    font-style: italic;
    font-weight: 500;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: #fff;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgb(0 0 0 / 4%) 100%);
}


/* ════════════════════════════════
   PACKAGE CARDS
   ════════════════════════════════ */
.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow-lt);
}


.pkg-img {
    position: relative;
    min-height: 240px;
    height: 100%;
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .pkg-img img {
    transform: scale(1.1);
}

.pkg-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--yellow-lt);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pkg-tag.bg-blue {
    background: var(--blue-lt);
}

.pkg-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-duration {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    background: var(--light-bg);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
}

.pkg-duration i {
    color: var(--yellow-lt);
    margin-right: 6px;
}

.pkg-price {
    font-family: var(--serif);
    color: var(--blue-lt);
    font-weight: 700;
    font-size: 1.1rem;
}

.pkg-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text);
}

.pkg-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pkg-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.pkg-features span {
    font-size: 0.8rem;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--text-mid);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.pkg-features i {
    color: var(--yellow-lt);
    font-size: 0.9rem;
}

.pkg-location-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Premium Package Buttons */
.btn-pkg-details {
    background: #f8f9fa;
    color: var(--text-mid);
    border: 1px solid var(--border);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-pkg-details i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-pkg-details:hover {
    background: #fff;
    color: var(--blue-lt);
    border-color: var(--blue-lt);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-pkg-details:hover i {
    transform: translateX(3px);
}

.btn-pkg-enquire {
    background: var(--yellow-lt);
    color: #fff !important;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(137, 180, 56, 0.2);
    text-decoration: none;
}

.btn-pkg-enquire:hover {
    background: var(--blue-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 135, 161, 0.25);
}

.btn-pkg-enquire i {
    font-size: 0.9rem;
}

.bg-blue-lt {
    background-color: var(--blue-lt);
}

.bg-yellow-lt {
    background-color: var(--yellow-lt);
}

.text-blue {
    color: var(--blue-lt);
}

/* ════════════════════════════════
   DESTINATION SIDEBAR
   ════════════════════════════════ */
.destination-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    /* border: 1px solid var(--border) !important; */
    transition: box-shadow 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

.widget-title {
    position: relative;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--yellow-lt);
}

.sidebar-form .form-control,
.sidebar-form .form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    background-color: #fcfcfc;
}

.sidebar-form .form-control:focus {
    border-color: var(--yellow-lt);
    box-shadow: 0 0 0 4px rgba(137, 180, 56, 0.1);
    background-color: #fff;
}

.sidebar-links a {
    transition: all 0.2s ease;
    padding: 8px 0;
}

.sidebar-links a:hover {
    padding-left: 8px;
}

.sidebar-links a:hover span.text-muted {
    color: var(--yellow-lt) !important;
}



.support-widget {
    background: var(--white);
    border: 1px solid var(--border) !important;
}

.hover-text-green:hover {
    color: var(--yellow-lt) !important;
}

.facility-item {
    transition: all 0.3s ease;
}

.facility-item:hover {
    background-color: var(--white) !important;
    border-color: var(--yellow-lt) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}



/* ════════════════════════════════
   FOOTER STYLES
   ════════════════════════════════ */
.footer {
    background: #140d0b;
    color: #e0e0e0;
    font-family: var(--sans);
}

.footer-title {
    color: var(--accent);
    letter-spacing: 2px;
}

.footer-links ul li a,
.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 5px;
}

.text-accent {
    color: var(--accent);
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-other-links a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-other-links a:hover {
    color: var(--accent);
}

.border-secondary {
    border-color: rgb(255 255 255 / 34%) !important;
}

.developer-credit span {
    color: #fff;
    font-weight: 700;
}


/* ════════════════════════════════
   TESTIMONIALS SECTION
   ════════════════════════════════ */
.testimonial-section {
    background: linear-gradient(rgb(13 13 13 / 57%), rgb(7 7 7 / 57%)), url(../images/spiti/spiti-valley.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-card {
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
    border-bottom-color: var(--yellow-lt) !important;
}

.testimonial-text {
    line-height: 1.7;
    font-family: var(--serif);
    font-style: italic;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--yellow-lt);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

.quote-icon {
    font-size: 5rem;
    line-height: 1;
}

.italic {
    font-style: italic;
}

/* ════════════════════════════════
   INDEX DESTINATIONS
   ════════════════════════════════ */
.destination-card {
    height: 350px !important;
    cursor: pointer;
}

.dest-img-container {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destination-card:hover .dest-img-container {
    transform: scale(1.1);
}

.dest-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
    transition: background 0.4s ease;
    height: 100%;
    align-content: end;
}

.destination-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.dest-title {
    font-family: var(--serif);
    letter-spacing: 1px;
}

.min-vh-40 {
    min-height: 40vh;
}


/* ════════════════════════════════
   TAXI SERVICES SECTION V2 (CLEAN)
   ════════════════════════════════ */
#taxi-services {
    background-color: var(--light-bg);
}

.taxi-card-v2 {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.taxi-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.taxi-card-v2.featured {
    border: 1px solid var(--yellow-lt);
}

.taxi-img-v2 {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.taxi-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.taxi-card-v2:hover .taxi-img-v2 img {
    transform: scale(1.05);
}

.taxi-price-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top-right-radius: 8px;
}

.featured-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--yellow-lt);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(137, 180, 56, 0.4);
}

.taxi-info-v2 {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.taxi-specs-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.spec-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.spec-item i {
    color: var(--yellow-lt);
    font-size: 1rem;
}

.btn-clean-green {
    background: #f8faf5;
    color: var(--yellow-lt);
    border: 1px solid #e0ebd1;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-clean-green:hover {
    background: var(--blue-lt);
    color: #fff;
    border-color: var(--blue-lt);
    transform: translateY(-2px);
}



/* --------------------------------
   PACKAGE SLIDER SECTION
   -------------------------------- */
.packages-slider-wrapper {
    position: relative;
    padding: 0 15px;
}

.pkg-card-v2 {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pkg-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow-lt);
}

.pkg-img-v2 {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.pkg-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-card-v2:hover .pkg-img-v2 img {
    transform: scale(1.1);
}

.pkg-tag-v2 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--yellow-lt);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.pkg-price-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(30, 135, 161, 0.9);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 18px;
    border-top-left-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.pkg-price-overlay span {
    font-size: 0.7rem;
    font-weight: 700;
    display: block;
}

.pkg-loc-badge {
    background: #f0f7f0;
    color: var(--yellow-lt);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pkg-title-v2 {
    color: var(--text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pkg-card-v2:hover .pkg-title-v2 {
    color: var(--yellow-lt);
}

.enquire-link {
    color: var(--blue-lt);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enquire-link:hover {
    color: var(--yellow-lt);
    padding-left: 5px;
}

/* Swiper Navigation Custom */
.pkg-nav-prev,
.pkg-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pkg-nav-prev {
    left: -22px;
}

.pkg-nav-next {
    right: -22px;
}

.pkg-nav-prev:hover,
.pkg-nav-next:hover {
    background: var(--yellow-lt);
    color: #fff;
    border-color: var(--yellow-lt);
}

.pkg-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--yellow-lt);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.pkg-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 4px;
}


/* --------------------------------
   LV CTA SECTION (CALL TO ACTION)
   -------------------------------- */
.lv-cta-wrapper {
    background: linear-gradient(135deg, #1e3c72 0%, #1e87a1 100%);
    box-shadow: 0 25px 50px -12px rgba(30, 135, 161, 0.25);
}

.lv-cta-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(137, 180, 56, 0.15) 0, transparent 50%);
    opacity: 0.8;
}

.lv-text-accent-green {
    color: #d1f391 !important;
}

.lv-btn-cta-white {
    background: #fff;
    color: #1e3c72 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #fff;
    text-decoration: none;
}

.lv-btn-cta-white:hover {
    background: transparent;
    color: #fff !important;
    transform: translateY(-3px);
}

.lv-btn-cta-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.lv-btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.lv-pulse-white {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    animation: lv-pulse-white 2s infinite;
}

@keyframes lv-pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}



/* --------------------------------
   LV COUNTER SECTION (PREMIUM V2)
   -------------------------------- */
.lv-counter-section {
    background: transparent;
    overflow: hidden;
}

.lv-counter-card {
    position: relative;
    padding: 20px 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lv-counter-card:hover {
    transform: translateY(-8px);
}

.lv-counter-icon {
    font-size: 1.5rem;
    color: var(--yellow-lt);
    margin-bottom: -10px !important;
}

.lv-counter-number {
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.lv-counter-number .number {
    font-family: var(--sans);
    color: var(--yellow-lt);
    letter-spacing: -2px;
}

.lv-counter-number .symbol {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-lt);
}

.lv-counter-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ════════════════════════════════
   OUTSTATION TAXI CARDS
════════════════════════════════ */
.luxury-taxi-card {
    background: #fff;
    border-radius: 24px;
    padding: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(0 0 0 / 7%);
    position: relative;
}

.luxury-taxi-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.luxury-taxi-card.featured {
    border: 2px solid var(--yellow-lt);
    box-shadow: 0 15px 35px rgba(137, 180, 56, 0.1);
}

.luxury-taxi-card.featured .lt-badge {
    background: var(--yellow-lt);
    color: #fff;
    border: none;
}

.lt-img-wrapper {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
}

.lt-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.luxury-taxi-card:hover .lt-img-wrapper img {
    transform: scale(1.1) rotate(1deg);
}

.lt-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.lt-content {
    padding: 20px 10px 10px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lt-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.lt-subtitle {
    font-size: 0.85rem;
    color: var(--text-mid);
    opacity: 0.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.lt-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.lt-price-label {
    font-size: 0.75rem;
    color: var(--text-mid);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lt-view-details {
    background-color: var(--blue-lt);
    color: var(--white);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 1px solid #eaeaea;
}

.lt-view-details i {
    font-size: 0.75rem;
    margin-left: 5px;
}

.lt-view-details:hover {
    background-color: var(--yellow-lt);
    color: #fff;
    border-color: var(--yellow-lt);
}

.lt-book-link {
    color: var(--yellow-lt);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lt-book-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.luxury-taxi-card:hover .lt-book-link {
    color: var(--blue-lt);
}

.luxury-taxi-card:hover .lt-book-link i {
    transform: translateX(5px);
}

/* Section title refinement */
.clean-title-box {
    position: relative;
    margin-bottom: 60px;
}

.clean-title-box .title-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
}

/* ════════════════════════════════
   PACKAGE TOUR STYLES
════════════════════════════════ */
.package-section {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.package-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-lt), var(--blue-lt));
    border-radius: 2px;
}

.package-image img {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 15px;
}

/* Package Navigation */
.package-nav-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 1px solid var(--border);
}

.package-nav-wrapper::-webkit-scrollbar {
    display: none;
}

.package-nav-link {
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    background: var(--blue-lt);
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-nav-link:hover,
.package-nav-link.active {
    background: var(--yellow-lt);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(137, 180, 56, 0.3);
    transform: translateY(-2px);
}

/* Overview */
.package-overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.package-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.package-highlight-card {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--yellow-lt);
    transition: all 0.3s ease;
}

.package-highlight-card:hover {
    transform: translateX(8px);
    border-left-color: var(--blue-lt);
    background: linear-gradient(135deg, #fff 0%, var(--light) 100%);
}

.package-highlight-card h4 {
    color: var(--blue-lt);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.package-highlight-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0px;
}

/* Itinerary */
.package-day-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2.5rem;
    border-left: 2px solid #e0e0e0;
}

.package-day-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.package-day-number {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--yellow-lt);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.package-day-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.package-day-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.package-day-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.package-activity-tag {
    background: rgba(137, 180, 56, 0.1);
    color: var(--yellow-lt);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Inclusions/Exclusions */
.package-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-list-column h3 {
    color: var(--blue-lt);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-check-list {
    list-style: none;
}

.package-check-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.package-check-list li:last-child {
    border-bottom: none;
}

.package-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow-lt);
    font-weight: 700;
    font-size: 1.2rem;
}

.package-cross-list li::before {
    content: '✗';
    color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .package-section {
        padding: 1.5rem;
    }

    .package-section-title {
        font-size: 1.5rem;
    }

    .package-highlights {
        grid-template-columns: 1fr;
    }

    .package-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .package-day-item {
        padding-left: 2.5rem;
    }

    .package-day-number {
        width: 2.5rem;
        height: 2.5rem;
        left: -1.25rem;
        font-size: 0.95rem;
    }
}

/* Decorative Elements */
.package-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
    z-index: -1;
}

.package-decoration.package-top-right {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--yellow-lt) 0%, transparent 70%);
}

.package-decoration.package-bottom-left {
    bottom: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-lt) 0%, transparent 70%);
}

/* ════════════════════════════════
   PAYMENT PAGE
   ════════════════════════════════ */
.payment-hero-section {
    height: 40vh;
    min-height: 300px;
}

.payment-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.payment-badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.payment-hero-title {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.payment-hero-em {
    font-family: var(--serif);
}

.payment-card-wrapper {
    border-top-color: var(--yellow-lt) !important;
}

.payment-bank-icon {
    font-size: 8rem;
    color: var(--yellow-lt);
}

.payment-circle-icon {
    width: 45px;
    height: 45px;
}

/* ════════════════════════════════
   PREMIUM CTA SECTION
════════════════════════════════ */
.premium-cta-section {
    position: relative;
    padding: 5rem 0;
    background: #1a1a1a;
    border-radius: 40px;
    margin: 60px 0px;
    overflow: hidden;
    color: #fff;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/other/himachal-banner.jpg') center/cover no-repeat;
    opacity: 0.7;
    /* filter: grayscale(100%); */
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(137, 180, 56, 0.95) 0%, rgba(30, 135, 161, 0.9) 100%); */
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-title-lux {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.cta-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.cta-feat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feat-item i {
    color: #fff;
}

.glass-call-card {
    background: rgba(255, 255, 255, 1);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    color: var(--text);
    position: relative;
    transition: transform 0.3s ease;
}

.glass-call-card:hover {
    transform: translateY(-5px);
}

.gcc-icon {
    width: 70px;
    height: 70px;
    background: var(--yellow-lt);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 20px rgba(137, 180, 56, 0.3);
}

.gcc-btn {
    background: var(--text);
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.gcc-btn:hover {
    background: var(--blue-lt);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 135, 161, 0.4);
}

/* ════════════════════════════════
   TAXI CATEGORY STYLES
════════════════════════════════ */
.luxury-cat-row {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.luxury-cat-row:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.cat-image-box {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.cat-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.luxury-cat-row:hover .cat-image-box img {
    transform: scale(1.05);
}

.cat-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgb(91 133 186 / 18%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #89b438;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cat-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cat-title {
    font-size: 1.75rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

@media (max-width: 991px) {
    .cat-image-box {
        min-height: 250px;
    }

    .luxury-cat-row {
        border-radius: 20px;
    }
}

/* ════ About Us Additions Refinements ════ */
.tour-features .bi-check-lg {
    font-size: 1.2rem;
    font-weight: 900;
}

@media (max-width: 991px) {
    #about-tours .col-lg-5 {
        text-align: center;
        margin-bottom: 40px;
    }

    #about-tours .tour-features {
        display: inline-block;
        text-align: left;
    }

    #about-tours .d-flex.gap-3 {
        justify-content: center;
    }

    #about-tours .pkg-card-v2 {
        margin-bottom: 20px;
    }
}

/* ════ SIDEBAR SUPPORT WIDGET STYLES ════ */
.btn-sidebar-call {
    background: var(--yellow-lt);
    color: #fff;
    border: 2px solid var(--yellow-lt);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.85rem;
}

.btn-sidebar-call:hover {
    background: transparent;
    color: var(--yellow-lt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 180, 56, 0.2);
}

.btn-sidebar-wa {
    background: var(--blue-lt);
    color: #fff;
    border: 2px solid var(--blue-lt);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.85rem;
}

.btn-sidebar-wa:hover {
    background: transparent;
    color: var(--blue-lt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 135, 161, 0.2);
}

.hover-text-green:hover {
    color: var(--yellow-lt) !important;
}

/* === package modal popup === */
#packageEnquiryModal .form-control:focus,
#packageEnquiryModal .form-select:focus {
    border-color: var(--yellow-lt);
    box-shadow: none;
    background-color: #fff;
}

#packageEnquiryModal .input-group-text {
    border-right: none;
}

#packageEnquiryModal .form-control,
#packageEnquiryModal .form-select {
    border-left: none;
}

#packageEnquiryModal .btn-green {
    background-color: var(--yellow-lt);
    border-color: var(--yellow-lt);
    color: white;
}

#packageEnquiryModal .btn-green:hover {
    background-color: var(--blue-lt);
    border-color: var(--blue-lt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 180, 56, 0.3);
}

/* === taxi booking modal === */
#taxiBookingModal .form-control:focus {
    border-color: var(--yellow-lt);
    box-shadow: 0 0 0 0.25rem rgba(137, 180, 56, 0.15);
}

#taxiBookingModal .modal-content {
    background: #fff;
}

#taxiBookingModal .btn-green {
    background-color: var(--yellow-lt);
    border-color: var(--yellow-lt);
    color: white;
}

#taxiBookingModal .btn-green:hover {
    background-color: var(--blue-lt);
    border-color: var(--blue-lt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 180, 56, 0.3);
}

/* ════ NAVBAR DROPDOWN HOVER ════ */
@media all and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}