:root {
    --primary: #315b96;
    /* Deep Teal (Primary) */
    --primary-dark: #222222;
    --primary-light: #315b96;
    --secondary: #fa5a00;
    --secondary-light: #E68A5C;
    --text-dark: #1A1A1A;
    --text-light: #F8F8F8;
    --bg-light: #FFFBF5;
    --bg-dark: #0F1419;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text-primary{
    color: #315b96 !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 99999;
}

.phone {
    border-radius: 28%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 167px;
    left: 20px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 1000;
    transition: transform 0.3s ease;
    background: white;
}

.phone img {
    width: 100%;
}

.social-to-top {
    position: fixed;
    z-index: 9999;
    bottom: 17%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.social-to-top ul {
    list-style-type: none;
}

.social-to-top li a {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 20px 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    min-height: 160px;
    width: 45px;
    transition: all 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.social-to-top .quickicons {
    background-color: #315b96;
    border-radius: 0 0 0 10px;
}

/* Improved Header & Navigation */
.top-header {
    background: #0f172a;
    /* Premium deep dark */
    color: rgba(255, 255, 255, 0.85);
    padding: 0.7rem 0;
    font-size: 0.78rem;
    font-weight: 400;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.5px;
}

#header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1111;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.8s ease-out;
    background: white;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Top Header styles moved up */

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info a i {
    color: var(--secondary);
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    background: rgb(255 255 255 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info a:hover {
    color: white;
}

.contact-info a:hover i {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(244, 162, 97, 0.3);
}

.social-links-top {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.social-links-top a {
    text-decoration: none;
    color: rgb(244 162 97);
    font-size: 0.8rem;
    width: 32px;
    height: 32px;
    background: rgb(255 255 255 / 23%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links-top a:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

.social-links-top a.social-fb:hover {
    background: #315b96;
}

.social-links-top a.social-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links-top a.social-tw:hover {
    background: #000000;
    /* X/Twitter Black */
}

/* Main Navigation */
nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#header.scrolled nav {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.main-logo {
    width: 100%;
    max-width: 100px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 0.8rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--secondary);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary);
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 118, 66, 0.2);
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 118, 66, 0.3);
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: white;
    list-style: none;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    text-align: left;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown li a::after {
    display: none;
}

.dropdown li a:hover {
    background: rgba(42, 92, 107, 0.05);
    color: var(--secondary) !important;
    padding-left: 1.8rem;
}

.has-dropdown:hover>a {
    color: var(--secondary) !important;
}

.has-dropdown>a i {
    transition: transform 0.3s ease;
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Banner with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    /* Offset for top-header + nav height to maintain overlay */
    background: var(--bg-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Premium dark gradient overlay for better text readability */
    background: linear-gradient(to bottom,
            rgba(15, 20, 25, 0.2) 0%,
            rgba(15, 20, 25, 0.6) 100%);
    z-index: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.25);
    filter: blur(15px);
    transform-origin: center;
    will-change: transform, filter;
}

.slide.active .slide-bg {
    animation: zoomBlurEntrance 12s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes zoomBlurEntrance {
    0% {
        transform: scale(1.25);
        filter: blur(15px);
    }

    15% {
        transform: scale(1.06);
        filter: blur(0);
    }

    100% {
        transform: scale(1.01);
        filter: blur(0);
    }
}


.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    color: white;
    display: flex;
    align-items: center;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.55rem 1.4rem 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 2px solid var(--secondary);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Glowing pulse dot */
.slide-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(217, 118, 66, 0.7);
    animation: tagDotPulse 2.2s ease-out infinite;
}

/* Shimmer sweep */
.slide-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-15deg);
    animation: tagShimmer 4s ease-in-out infinite 1.5s;
}

@keyframes tagDotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 118, 66, 0.7);
    }

    60% {
        box-shadow: 0 0 0 7px rgba(217, 118, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 118, 66, 0);
    }
}

@keyframes tagShimmer {
    0% {
        left: -60%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

.slide.active .slide-tag {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

.slide-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-content h1 span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Hero description – center-aligned layout */
.hero-accent-desc {
    border-left: none;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .hero-accent-desc {
        max-width: 90% !important;
        padding-bottom: 1.2rem !important;
        margin-bottom: 2rem !important;
    }
}



.slide-buttons {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* ── Hero Buttons – Premium Pill Design ── */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.95rem 2.4rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        color 0.3s ease,
        background 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

/* Icon inside button */
.hero-btn i {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.3s ease;
}

/* ── Primary: Gradient + Glow ── */
.hero-btn.primary {
    background: linear-gradient(135deg, #f4833d 0%, #d9762a 55%, #b85e1a 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 25px rgba(217, 118, 66, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-btn.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
    border-radius: inherit;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-btn.primary:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 40px rgba(217, 118, 66, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-btn.primary:hover i {
    transform: translateX(5px);
}

.hero-btn.primary:active {
    transform: translateY(-1px) scale(0.99);
}

/* ── Secondary: Glassmorphism ── */
.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px) saturate(1.5);
    -webkit-backdrop-filter: blur(14px) saturate(1.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-btn.secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-btn.secondary:hover::before {
    opacity: 1;
}

.hero-btn.secondary:hover i {
    transform: rotate(20deg) scale(1.2);
}

.hero-btn.secondary:active {
    transform: translateY(-1px) scale(0.99);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: white;
    animation: scrollMove 2s infinite ease-in-out;
}

@keyframes scrollMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(350%);
    }
}

.slider-dots {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.3);
}

/* ════════════════════════════════
   CTA Strip Section
════════════════════════════════ */
.cta-strip-section {
    padding: 4rem 0;
    background: #fff;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: linear-gradient(135deg, #fdf8f4 0%, #fff5ed 100%);
    border: 1px solid rgba(217, 118, 66, 0.15);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.cta-strip-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(217, 118, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-strip-left {
    flex: 1;
}

.cta-strip-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.cta-strip-tag i {
    font-size: 0.6rem;
    animation: tagDotPulse 2.2s ease-out infinite;
}

.cta-strip-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.cta-strip-left h2 span {
    color: var(--secondary);
}

.cta-strip-left p {
    font-size: 0.97rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    max-width: 500px;
}

.cta-strip-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.8rem;
    flex-shrink: 0;
}

.cta-strip-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.cta-stat span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.cta-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
}

.cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, #f4833d 0%, #d9762a 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(217, 118, 66, 0.35);
    white-space: nowrap;
}

.cta-strip-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(217, 118, 66, 0.5);
}

.cta-strip-btn i {
    transition: transform 0.3s ease;
}

.cta-strip-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 2rem;
        gap: 2rem;
    }

    .cta-strip-right {
        align-items: flex-start;
        width: 100%;
    }

    .cta-strip-stats {
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .cta-strip-inner {
        padding: 2rem 1.5rem;
    }

    .cta-strip-stats {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .cta-stat-divider {
        display: none;
    }
}


/* ════════════════════════════════
   About Section
════════════════════════════════ */
.about-section {
    padding-bottom: 5rem;
    background: #fff;
}

/* Image block */
.about-img-block {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-block:hover .about-img {
    transform: scale(1.03);
}

.about-img-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-img-badge i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.about-img-badge strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-img-badge span {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
}

/* Content block */
.about-content-block {
    padding-left: 1rem;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1.2rem;
}

.about-eyebrow i {
    font-size: 0.6rem;
    animation: tagDotPulse 2.2s ease-out infinite;
}

.about-content-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.about-content-block h2 span {
    color: var(--secondary);
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature Pills */
.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 1.2rem;
    background: #fdf5ee;
    border: 1px solid rgba(217, 118, 66, 0.2);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: background 0.25s, transform 0.25s;
}

.about-pill i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.about-pill:hover {
    background: rgba(217, 118, 66, 0.1);
    transform: translateY(-2px);
}

/* Trust stats row */
.about-trust-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2rem;
}

.about-trust-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.about-trust-stat span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.about-trust-divider {
    width: 1px;
    height: 36px;
    background: #e5e5e5;
}

/* CTA Link */
.about-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.about-cta-link i {
    transition: transform 0.3s ease;
}

.about-cta-link:hover {
    color: var(--secondary);
    gap: 14px;
}

.about-cta-link:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-content-block {
        padding-left: 0;
    }

    .about-img {
        height: 420px;
    }

    .about-trust-row {
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-img {
        height: 320px;
    }

    .about-trust-row {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .about-trust-divider {
        display: none;
    }

    .about-pills {
        gap: 0.5rem;
    }
}


/* ════════════════════════════════
   Destinations Section
════════════════════════════════ */
.dest-section {
    padding: 6rem 0;
    background: #f9f7f5;
}

/* Header */
.dest-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.dest-header-left .dest-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.dest-header-left .dest-eyebrow i {
    font-size: 0.6rem;
    animation: tagDotPulse 2.2s ease-out infinite;
}

.dest-header-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0;
}

.dest-header-left h2 span {
    color: var(--secondary);
}

.dest-header-right {
    max-width: 380px;
    text-align: right;
}

.dest-header-right p {
    font-size: 0.97rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.dest-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.dest-view-all i {
    transition: transform 0.3s ease;
}

.dest-view-all:hover {
    color: var(--secondary);
    gap: 13px;
}

.dest-view-all:hover i {
    transform: translateX(4px);
}

/* Destination Grid */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 340px;
    gap: 18px;
}

/* Large featured card spans 2 rows */
.dest-card--large {
    grid-row: span 2;
}

/* Wide card spans 2 columns */
.dest-card--wide {
    grid-column: span 2;
}

/* Card base */
.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.dest-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.dest-card-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s ease;
}

.dest-card:hover .dest-card-img {
    transform: scale(1.08);
    opacity: 0.65;
}

/* Gradient overlay */
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    transition: background 0.4s ease;
}

.dest-card:hover .dest-card-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.25) 30%,
            rgba(0, 0, 0, 0.88) 100%);
}

/* Tag (top-left) */
.dest-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    align-self: flex-start;
}

/* Body (bottom) */
.dest-card-body {
    color: #fff;
}

.dest-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.dest-card-rating {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffc947;
}

.dest-card-rating i {
    font-size: 0.7rem;
    margin-right: 3px;
}

.dest-card-trips {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.dest-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.15;
    letter-spacing: -0.3px;
    color: #fff;
}

/* Large card bigger h3 */
.dest-card--large .dest-card-body h3 {
    font-size: 2rem;
}

.dest-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.dest-card:hover .dest-card-desc {
    max-height: 100px;
    opacity: 1;
}

/* Large card always shows desc */
.dest-card--large .dest-card-desc {
    max-height: 120px;
    opacity: 1;
}

.dest-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.dest-card-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.dest-card-price i {
    font-size: 0.75rem;
    margin-right: 3px;
}

.dest-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 1rem;
    background: var(--secondary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dest-card:hover .dest-card-cta {
    background: #f4833d;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1199px) {
    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
    }

    .dest-card--large {
        grid-row: span 2;
    }
}

@media (max-width: 991px) {
    .dest-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dest-header-right {
        text-align: left;
        max-width: 100%;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .dest-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .dest-card-desc {
        max-height: 80px;
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .dest-section {
        padding: 4rem 0;
    }

    .dest-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .dest-card--large {
        grid-column: span 1;
    }
}


/* ════════════════════════════════
   Testimonials Section
════════════════════════════════ */
.testi-section {
    padding: 6rem 0;
    background: #fff;
}

/* Header */
.testi-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testi-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.testi-header h2 span {
    color: var(--secondary);
}

.testi-header>p {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 1.5rem;
}

.testi-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff9f4;
    border: 1px solid rgba(217, 118, 66, 0.2);
    border-radius: 999px;
    padding: 0.5rem 1.4rem;
}

.testi-stars {
    display: flex;
    gap: 3px;
    color: #f5a623;
    font-size: 0.85rem;
}

.testi-rating-summary strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.testi-rating-summary span {
    font-size: 0.78rem;
    color: #999;
    font-weight: 500;
}

/* Grid */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3.5rem;
}

/* Card */
.testi-card {
    background: #faf9f8;
    border: 1px solid #ece9e5;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(217, 118, 66, 0.25);
}

.testi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testi-quote-icon {
    width: 38px;
    height: 38px;
    background: rgba(217, 118, 66, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
}

.testi-stars-small {
    display: flex;
    gap: 3px;
    color: #f5a623;
    font-size: 0.78rem;
}

.testi-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    flex: 1;
    margin: 0;
    font-style: italic;
}

.testi-trip-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    background: rgba(217, 118, 66, 0.08);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    align-self: flex-start;
    margin: 1rem 0px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0ede9;
    padding-top: 1.2rem;
    margin-top: auto;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testi-author-info {
    flex: 1;
}

.testi-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testi-author-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.5;
}

.testi-date {
    font-size: 0.72rem !important;
    color: #bbb !important;
}

.testi-verified {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2a9d6e;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.testi-verified i {
    font-size: 0.85rem;
}

/* Bottom CTA */
.testi-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.testi-bottom p {
    font-size: 1rem;
    color: #777;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .testi-section {
        padding: 4rem 0;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .testi-grid .testi-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid .testi-card:last-child {
        grid-column: span 1;
    }
}


.cta-box-premium {
    background: linear-gradient(135deg, #ffffff 0%, rgba(217, 118, 66, 0.08) 100%);
    padding: 5rem 6%;
    border-radius: 50px;
    box-shadow: 0 40px 100px rgba(42, 92, 107, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-inner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 5;
}

.cta-text-side {
    flex: 1;
    text-align: left;
}

.cta-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-luxury-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(217, 118, 66, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.cta-text-side h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cta-text-side p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
    max-width: 600px;
    line-height: 1.7;
}

.cta-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.4rem 3.5rem;
    background: var(--secondary);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(42, 92, 107, 0.2);
}

.cta-button-premium:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(217, 118, 66, 0.3);
}

.cta-button-premium i {
    transition: transform 0.4s ease;
}

.cta-button-premium:hover i {
    transform: translateX(8px);
}

.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    opacity: 0.6;
}

.cta-trust-badge i {
    color: #FFD700;
}

/* Decorative Circles */
.cta-circle-1,
.cta-circle-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(217, 118, 66, 0.1);
    top: -150px;
    right: -50px;
}

.cta-circle-2 {
    width: 250px;
    height: 250px;
    background: rgba(42, 92, 107, 0.05);
    bottom: -120px;
    left: -50px;
}

@media (max-width: 991px) {
    .cta-inner-flex {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .cta-text-side {
        text-align: center;
    }

    .cta-text-side h3 {
        font-size: 2.5rem;
    }

    .cta-text-side p {
        margin: 0 auto;
    }

    .social-to-top {
        position: fixed;
        z-index: 9999;
        bottom: 9%;

    }
}

/* Destinations Section Refined */
.destinations {
    background: #fdfcfb;
    padding: 8rem 0;
}

.sub-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

/* Destinations Masonry Grid */
.destinations-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 2rem;
}

/* Destinations*/
.destinations-luxury {
    background: var(--bg-light);
    overflow: hidden;
}

.section-header-luxury h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0.5rem 0 1rem;
    letter-spacing: -1px;
}

.luxury-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.luxury-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border-bottom: 2px solid rgba(109, 151, 71, 0.2);
    padding-bottom: 5px;
}

.luxury-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    gap: 15px;
}

.luxury-tile:hover .tile-glass-content {
    transform: translateY(0);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tile-category {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.tile-glass-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--secondary);
}

.tile-glass-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
}

.tile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.2rem;
}

.tile-price {
    font-weight: 800;
    color: var(--secondary);
    font-size: 0.95rem;
}

.tile-footer i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.destination-card-premium {
    position: relative;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.85;
}

.destination-card-premium:hover .dest-img {
    transform: scale(1.1);
    opacity: 1;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgb(0 0 0 / 52%) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 70%;
    transition: all 0.4s ease;
}

.dest-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.destination-card-premium:hover .dest-content {
    transform: translateY(0);
}

.dest-category {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.dest-content h3 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.dest-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dest-price {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.dest-btn-circle {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.dest-btn-circle:hover {
    transform: rotate(-45deg) scale(1.1);
    background: white;
    color: var(--secondary) !important;
}

@media (max-width: 991px) {
    .destination-card-premium {
        height: 500px;
    }

    .dest-content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .destination-card-premium {
        height: 450px;
    }

}

/* Luxury Editorial Layout */
.editorial-card-wrapper {
    position: relative;
    padding: 2rem;
}

.editorial-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.04;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    pointer-events: none;
    z-index: 1;
}

.editorial-decor-text {
    position: absolute;
    right: -51px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 10px;
    color: var(--primary);
    opacity: 0.15;
    white-space: nowrap;
    pointer-events: none;
}

.right-staggered .editorial-decor-text {
    left: -80px;
    right: auto;
}

.right-staggered .editorial-number {
    left: auto;
    right: -20px;
}

.dest-content h3 span {
    color: var(--secondary);
}

@media (max-width: 991px) {

    .left-staggered,
    .right-staggered {
        transform: none;
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .editorial-number {
        font-size: 5rem;
    }

    .editorial-decor-text {
        display: none;
    }
}

/* new destination card */
.destination-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    will-change: transform;
    background: #fff;
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

@media (min-width: 992px) {
    .desktop-custom-grid {
        padding-bottom: 30px;
    }
}

/* Optimize card content for mid-sized screens to avoid overflow or wrapping */
@media (min-width: 992px) and (max-width: 1199px) {
    .destination-card .content {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 22px 15px;
    }

    .dest-title {
        font-size: 22px;
    }

    .dest-desc {
        font-size: 13.5px;
        margin-bottom: 1rem !important;
    }

    .btn-outline-explore {
        padding: 6px 14px;
        font-size: 13px;
    }

    .btn-outline-arrow {
        width: 36px;
        height: 36px;
    }

    .dest-rating {
        padding: 5px 10px;
        font-size: 12px;
    }

    .dest-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .dest-duration-val {
        font-size: 14px;
    }
}


.destination-card .image-area {
    height: 480px;
    position: relative;
    width: 100%;
}

.destination-card .image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .image-area img {
    transform: scale(1.08);
}

.destination-card .image-area::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 11, 32, 0.1), rgba(5, 11, 32, 0.4));
    pointer-events: none;
}

.destination-card .inner {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px 15px 15px 10px;
    border-radius: 0 0 24px 0;
    z-index: 2;
}

.destination-card .inner .count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ff4713;
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.4rem;
}

.destination-card .content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 30px 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 3;
}

@media (max-width: 768px) {
    .mobile-scroll-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .mobile-scroll-row::-webkit-scrollbar {
        display: none;
    }

    .mobile-scroll-row>div {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        padding-left: 8px;
        padding-right: 8px;
    }

    .destination-card {
        margin-bottom: 0;
    }

    .destination-card .image-area {
        height: 400px;
    }

    .destination-card .content {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px 15px;
    }

    .dest-title {
        font-size: 20px;
    }

    .dest-desc {
        font-size: 14px;
        margin-bottom: 1rem !important;
    }

    .btn-outline-explore {
        padding: 6px 16px;
        font-size: 14px;
    }

    .btn-outline-arrow {
        width: 36px;
        height: 36px;
    }
}

.dest-features-border {
    border-top: 1px dashed #e9ecef;
}

.dest-border-blue {
    border-bottom: 4px solid #d47903;
}

.dest-border-red {
    border-bottom: 4px solid #dc3545;
}

.destination-card .content-span {
    padding: 5px 15px;
    border-radius: 18px;
}

.dest-badge-blue {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.dest-badge-red {
    background: #fdf2f2;
    color: #dc3545;
}

.dest-icon-red {
    color: #dc3545;
    margin-right: 4px;
}

.dest-badge {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dest-rating {
    background: #fff9e6;
    color: #f5b041;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(245, 176, 65, 0.15);
}

.dest-title {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a !important;
    letter-spacing: -0.5px;
}

.dest-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.dest-desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

.dest-duration-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: #adb5bd;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.dest-duration-val {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 16px;
}

.btn-outline-explore {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid #ced4da;
    border-radius: 30px;
    color: #495057;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-outline-explore:hover {
    border-color: #495057;
    color: #212529;
}

.btn-outline-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ced4da;
    border-radius: 50%;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-arrow:hover {
    border-color: #495057;
    color: #212529;
}

/* Package Cards */
.packages-slider-container {
    overflow: hidden;
    padding: 1rem 0 3rem;
    position: relative;
}

.packages-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.package-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
}

@media (max-width: 1200px) {
    .package-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .package-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.package-item {
    padding: 10px;
}

.package-card-modern {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 16px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(93, 148, 30, 0.06);
    border-color: rgba(93, 148, 30, 0.15);
}

.package-img-box {
    position: relative;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.package-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card-modern:hover .package-img-box img {
    transform: scale(1.08) rotate(0.5deg);
}

.package-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.loc-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.rate-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #1e293b;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 800;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rate-badge i {
    color: #f5b041;
}

.price-badge-floating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 6px 14px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 850;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(247, 151, 59, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-content-modern {
    background: transparent;
    margin: 0;
    padding: 1.5rem 0.5rem 0.5rem;
    position: relative;
    z-index: 3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-card-modern:hover .package-content-modern {
    transform: none;
    box-shadow: none;
}

.package-meta-top {
    margin-bottom: 0.5rem;
}

.tour-type {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.package-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.package-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-card-modern:hover .package-title a {
    color: var(--primary);
}

.package-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.2rem;
}

.feature-capsule {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
}

.duration-capsule {
    background: rgba(93, 148, 30, 0.07);
    color: var(--primary);
}

.group-capsule {
    background: rgba(247, 151, 59, 0.07);
    color: var(--secondary);
}

.package-divider {
    height: 1px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    margin-bottom: 1.2rem;
}

.package-footer-modern {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.package-details-btn {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    border: 1.5px solid rgba(93, 148, 30, 0.2);
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.package-details-btn:hover {
    background: rgba(93, 148, 30, 0.05);
    border-color: var(--primary);
}

.package-details-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.package-details-btn:hover i {
    transform: translateX(3px);
}

.package-enquire-btn {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(93, 148, 30, 0.15);
}

.package-enquire-btn:hover {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(247, 151, 59, 0.25);
    transform: translateY(-1px);
}

.package-enquire-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.package-enquire-btn:hover i {
    transform: translate(2px, -2px);
}

@media (max-width: 991px) {
    .package-card-modern {
        padding: 12px;
        border-radius: 24px;
    }

    .package-img-box {
        height: 210px;
        border-radius: 16px;
    }

    .package-content-modern {
        padding: 1.2rem 0.3rem 0.3rem;
    }

    .package-title {
        font-size: 1.2rem;
    }

    .package-details-btn,
    .package-enquire-btn {
        padding: 9px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .package-footer-modern {
        flex-direction: column;
        gap: 8px;
    }

    .package-details-btn,
    .package-enquire-btn {
        width: 100%;
        flex: none;
    }
}

/* Slider Nav Improvements */
.slider-nav {
    display: flex;
    gap: 12px;
    justify-content: end;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: none;
    background: #f8f9fa;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(109, 151, 71, 0.2);
}

.package-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Modern CTA - Parallax & Split Layout */
.modern-cta {
    position: relative;
    padding: 7rem 0;
    background: url('../images/other/spiti-slider.webp') center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 11, 32, 0.55) 0%, rgba(5, 11, 32, 0.65) 100%);
    z-index: 1;
}

.cta-content-left {
    position: relative;
    z-index: 2;
}

.cta-content-left h2 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.cta-content-left h2 span {
    color: var(--secondary);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.cta-sub i {
    font-size: 0.6rem;
    animation: pulse 2s infinite;
}

.cta-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2.5rem;
}

.cta-benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    /* flex: 1 1 250px; */
}

.benefit-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-benefit-item:hover .benefit-icon-box {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.benefit-text h4 {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Right Side Action Card */
.cta-action-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.cta-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.18);
}

.rating-badge-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.8rem;
}

.stars-cta {
    display: flex;
    gap: 4px;
    color: #FFD700;
    font-size: 0.9rem;
}

.rating-badge-cta span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-action-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.cta-action-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2.2rem;
}

.cta-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-card-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--secondary);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(247, 151, 59, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-card-btn-primary:hover {
    background: #ffffff;
    color: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.cta-card-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: transparent;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.cta-card-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .modern-cta {
        padding: 5rem 0;
        text-align: center !important;
    }

    .cta-content-left {
        margin-bottom: 3rem;
    }

    .cta-content-left h2 {
        text-align: center;
    }

    .cta-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .cta-benefits-grid {
        justify-content: center;
        max-width: 550px;
        margin: 2.5rem auto 0;
    }

    .cta-benefit-item {
        text-align: left;
    }

    .cta-action-card {
        padding: 3rem 2rem;
        margin: 0 auto;
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .cta-benefits-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-benefit-item {
        width: 100%;
        max-width: 320px;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(109, 151, 71, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.08;
    transition: all 0.5s;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.15;
    transform: scale(1.2) rotate(-10deg);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a4a4a;
    position: relative;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.testimonial-card:hover .author-img {
    transform: scale(1.1);
    border-color: var(--primary);
}

.author-info h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 0.2rem 0;
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.4rem 0;
    font-weight: 500;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    background: rgba(76, 175, 80, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
}

.verified-badge i {
    font-size: 0.7rem;
}

.about-luxury {
    padding: 8rem 0;
    overflow: hidden;
    background: transparent;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(42, 92, 107, 0.15);
    position: relative;
    z-index: 2;
}

.about-shape {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: rgba(217, 118, 66, 0.08);
    border-radius: 50px;
    transform: rotate(-15deg);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    text-align: center;
    min-width: 160px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--secondary);
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.about-content h2 span {
    color: var(--secondary);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(217, 118, 66, 0.1);
    color: var(--secondary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px) rotate(10deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2.8rem;
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(42, 92, 107, 0.2);
}

.about-cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(217, 118, 66, 0.3);
}

@media (max-width: 991px) {
    .about-luxury {
        padding: 5rem 0;
    }

    .about-content h2 {
        font-size: 2.8rem;
        margin-top: 2rem;
    }

    .about-main-img {
        height: 400px;
    }

    .experience-badge {
        left: 0;
        bottom: 20px;
        padding: 1.5rem;
        width: 100%;
        max-width: 149px;
    }
}

/* Why Choose Us - Bento Grid Styles */
.why-choose-bento {
    background: linear-gradient(135deg, #0f172a 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.why-choose-bento.light-theme {
    background: #ffffff;
}

.why-choose-bento::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(109, 151, 71, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

/* Why Choose Us - Simple & Clean */
.why-choose-simple {
    background: #ffffff;
    padding: 8rem 0;
}

.sub-title-clean {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title-clean {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title-clean span {
    color: var(--secondary);
}

.title-separator {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin-bottom: 2rem;
}

.section-desc-clean {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.why-card-clean {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.why-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-wrapper-clean {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.why-card-clean:hover .icon-wrapper-clean {
    background: var(--secondary);
    color: #ffffff;
    transform: scale(1.1);
}

.why-card-clean h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.why-card-clean p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-title-clean {
        font-size: 2.5rem;
    }
}

/* Scroll Reveals */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer - Refined */
.footer {
    background: #0a0a0a;
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
}

.footer-section h3 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-section .main-logo {
    border-radius: 10px;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 1rem;
}

.contact-list span {
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(109, 151, 71, 0.3);
}

.footer-bottom {
    font-size: 0.85rem;
}

.gt-logo {
    width: 100%;
    max-width: 110px;
}

/* Advanced Responsive Design */
@media (max-width: 1250px) {
    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }

    nav {
        padding: 0.2rem 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem;
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--text-dark);
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 0.8rem;
    }

    .nav-links a.nav-cta {
        text-align: center;
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Dropdown Adjustments */
    .has-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .has-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        display: none;
        /* Controlled by JS */
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
        border: none;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown li a {
        padding: 0.8rem 1.5rem;
        border-bottom: none;
        font-size: 0.95rem;
    }

    .dropdown-toggle-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .has-dropdown.open .dropdown-toggle-btn {
        transform: rotate(180deg);
        background: var(--secondary);
        color: white;
    }
}

@media (max-width: 768px) {

    .destinations-grid,
    .packages-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 0;
        height: 80vh;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .destinations-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Page Banner Component */
.page-banner {
    padding: 12rem 0 8rem;
    background: url('../images/other/kashmir-slider.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

#spiti-banner {
    background-image: url('../images/spiti/spiti-banner.jpg');
}

#chandratal-banner {
    background-image: url('../images/spiti/chandratal-banner.jpg');
}

#spiti-kinnaur {
    background-image: url('../images/spiti/spiti-kinnaur.webp');
    background-position: center;
}

#spiti-bike-trip {
    background-image: url('../images/spiti/spiti-bike.jpg');
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 33%), rgb(5 5 5 / 41%));
    z-index: 1;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.breadcrumb {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "•";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .page-banner {
        padding: 10rem 0 6rem;
        margin-top: -80px;
    }

    .banner-title {
        font-size: 3rem;
    }
}

/* Sidebar Components - Theme Synced */
.sidebar-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.sidebar-form .form-control,
.sidebar-form .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.facilities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.facility-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 0.8rem 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}

.facility-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.facility-item i {
    font-size: 1.1rem;
    color: var(--secondary);
    width: 25px;
    text-align: center;
}

.facility-item:hover i {
    color: white;
}

.facility-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sidebar CTA - Theme Synced */
.sidebar-cta {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.sidebar-cta .cta-content {
    position: relative;
    z-index: 2;
}

.sidebar-cta .badge {
    background: var(--bg-light);
    color: var(--secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 700;
    border: 1px solid rgba(217, 118, 66, 0.2);
}

.sidebar-cta h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.sidebar-cta h3 span {
    color: var(--secondary);
}

.sidebar-cta p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Mini Destination Slider */
.mini-dest-slider {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 15px;
}

.mini-dest-track {
    display: flex;
    flex-direction: column;
    animation: miniSlider 12s infinite ease-in-out;
}

.mini-dest-card {
    position: relative;
    flex: 0 0 180px;
    height: 180px;
}

.mini-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mini-dest-card:hover img {
    transform: scale(1.1);
}

.mini-dest-card .mini-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.mini-dest-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mini-dest-card a {
    color: var(--secondary-light);
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
}

@keyframes miniSlider {

    0%,
    45% {
        transform: translateY(0);
    }

    50%,
    95% {
        transform: translateY(-180px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .sidebar-wrapper {
        margin-top: 50px;
        position: static;
    }
}

/* Premium Quote Form - Theme Synced */
.quote-widget {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.offer-badge {
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(42, 92, 107, 0.1);
}

.price-on-request {
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
}

.quote-subtitle {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.premium-quote-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-quote-form label i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.premium-quote-form .form-control,
.premium-quote-form .form-select {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 0.9rem 1.2rem !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    font-weight: 500;
}

.premium-quote-form .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.quote-btn {
    background: var(--secondary) !important;
    color: white !important;
    border: none !important;
    padding: 1.1rem !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(217, 118, 66, 0.2);
}

.quote-btn:hover {
    background: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 118, 66, 0.3);
}

.cta-contact-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cta-contact-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.cta-contact-item i {
    font-size: 1.1rem;
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.cta-contact-item:hover i {
    color: white;
}

.quote-footer p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* package deatils */
.package-hero-details {
    border-radius: 60px;
}

.package-overview {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(42, 92, 107, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.package-overview h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark) !important;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 800;
}

.package-highlights {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(42, 92, 107, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.package-highlights h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark) !important;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 800;
}

.quick-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 118, 66, 0.05);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid rgba(217, 118, 66, 0.15);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-badge:hover {
    transform: translateY(-2px);
    background: rgba(217, 118, 66, 0.1);
    box-shadow: 0 5px 15px rgba(217, 118, 66, 0.1);
}

.info-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.package-overview p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.highlight-list li {
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.package-gallery img {
    width: 100%;
    height: 100%;
}

/* Itinerary Timeline */
.itinerary-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 800;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 20px;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
    background: #fff;
    padding: 22px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary);
    background: rgba(217, 118, 66, 0.03);
}

.accordion-button::after {
    filter: grayscale(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

.day-badge {
    background: var(--primary);
    text-align: center;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-right: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(42, 92, 107, 0.2);
}

.accordion-button:not(.collapsed) .day-badge {
    background: var(--secondary);
    box-shadow: 0 4px 10px rgba(217, 118, 66, 0.3);
}

.accordion-body {
    padding: 25px;
    background: #fff;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Inclusions / Exclusions */
.inc-exc-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(42, 92, 107, 0.05);
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.inc-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-exc-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
}

.inc-exc-list li:last-child {
    margin-bottom: 0;
}

.inc-exc-list.inclusions li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #10b981;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.inc-exc-list.exclusions li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #fa5a00;
    font-size: 1.2rem;
    background: rgba(239, 68, 68, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* pay-now page */
.payment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.payment-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(10, 48, 65, 0.05);
    height: 100%;
}

.payment-card-title {
    font-family: 'Montserrat', sans-serif;
    color: #0A3041;
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-card-title i {
    color: #fa5a00;
}

/* Bank Details Styling */
.bank-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.bank-details-list li {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.bank-details-list span.label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bank-details-list span.value {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.pay-scanner {
    width: 100%;
    height: 250px;
    max-width: 250px;
    object-fit: cover;
}

.upi-section {
    background: rgba(10, 48, 65, 0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
    border: 1px dashed rgba(10, 48, 65, 0.2);
}

.upi-id {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: #0A3041;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 15px 0;
}

/* Form Styling */
.form-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #444;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: 'Outfit', sans-serif;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 48, 65, 0.1);
    border-color: #0A3041;
}

.submit-payment-btn {
    background: linear-gradient(135deg, #0A3041 0%, #154c66 100%);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 48, 65, 0.2);
    color: #fff;
}

.payment-security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
}

.payment-security-badge i {
    color: #28a745;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .payment-card {
        padding: 25px;
    }
}

/* ==contact page== */
.contact-unified-block {
    max-width: 1100px;
    margin: 60px auto 100px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(10, 48, 65, 0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Left Side: Info */
.contact-info-side {
    background: var(--primary);
    color: #fff;
    padding: 60px 50px;
    flex: 1 1 400px;
    position: relative;
    overflow: hidden;
}

.contact-info-side::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(222, 102, 70, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.info-side-content {
    position: relative;
    z-index: 1;
}

.info-side-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.info-side-content p.subtitle {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-right: 20px;
    flex-shrink: 0;
}

.method-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.method-details p,
.method-details a {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: var(--secondary);
}

/* Right Side: Form */
.contact-form-side {
    padding: 60px 50px;
    flex: 2 1 500px;
    background: #fff;
}

.form-side-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

/* Minimal Input Fields */
.custom-input-group {
    margin-bottom: 25px;
    position: relative;
}

.custom-input {
    width: 100%;
    border: none;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #333;
    background: transparent;
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.custom-input::placeholder {
    color: transparent;
    /* We'll use the label as placeholder */
}

.custom-label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #999;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    pointer-events: none;
}

.custom-input:focus~.custom-label,
.custom-input:not(:placeholder-shown)~.custom-label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

select.custom-input {
    color: #999;
    cursor: pointer;
}

select.custom-input:focus,
select.custom-input:valid {
    color: #333;
}

textarea.custom-input {
    resize: none;
    height: 80px;
    /* initial height */
}

textarea.custom-input:focus,
textarea.custom-input:not(:placeholder-shown) {
    height: 100px;
}

.submit-btn-minimal {
    background: var(--primary);
    color: #fff;
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn-minimal:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(222, 102, 70, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-unified-block {
        flex-direction: column;
        margin: 0 20px 80px;
    }

    .contact-info-side {
        padding: 50px 30px;
    }

    .contact-form-side {
        padding: 50px 30px;
    }
}

.contact-intro-pre {
    color: var(--secondary);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.contact-intro-title {
    font-family: 'Montserrat', sans-serif;
}

.contact-intro-desc {
    max-width: 700px;
    font-size: 1.1rem;
}

/* === privacy-policy=== */
.legal-content-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.legal-box {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    font-family: 'Outfit', sans-serif;
    color: #444;
    line-height: 1.8;
}

.legal-box h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0A3041;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fa5a00;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-box p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-box ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-box li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .legal-box {
        padding: 30px 20px;
    }

    .legal-box h2 {
        font-size: 1.6rem;
    }
}

/* =========================================================================
   PREMIUM PACKAGE UI OVERHAUL (Shimla Manali)
========================================================================= */

/* Drop Cap for Overview */
.overview-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.overview-content p:first-of-type::first-letter {
    float: left;
    font-size: 3.8rem;
    line-height: 0.8;
    padding-top: 6px;
    padding-right: 12px;
    padding-left: 3px;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* Bento Grid Highlights */
.bento-highlight-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bento-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(42, 92, 107, 0.1);
}

.bento-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgb(217 118 66 / 14%);
    color: #d97642;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bento-highlight-card:hover .bento-icon-box {
    background: #d97642;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.bento-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.4;
    margin-top: 8px;
}

/* Vertical Timeline Itinerary */

.itinerary-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark) !important;
    font-size: 2rem;
    font-weight: 800;
}

.timeline-itinerary {
    position: relative;
    padding-left: 40px;
}

.timeline-itinerary::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background: #d9764245;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -32px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--secondary);
    z-index: 2;
}

.timeline-header {
    padding: 20px 25px;
    background: #fdfdfd;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: background 0.3s ease;
}

.timeline-header:hover,
.timeline-header:not(.collapsed) {
    background: #f9fbf9;
}

.timeline-day-badge {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 15px;
    letter-spacing: 1px;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    flex-grow: 1;
}

.timeline-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.timeline-header:not(.collapsed) .timeline-toggle-icon {
    transform: rotate(180deg);
}

.timeline-body {
    padding: 25px;
    background: #fff;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
}

.timeline-list li::before {
    content: '\f111';
    /* FontAwesome dot */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.5rem;
    color: var(--secondary);
}

/* Premium Inclusions/Exclusions */
.premium-inc-exc-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.premium-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.premium-box.inclusions {
    border-top: 4px solid #4CAF50;
    background: linear-gradient(to bottom, #f9fff9 0%, #fff 100%);
}

.premium-box.exclusions {
    border-top: 4px solid #f44336;
    background: linear-gradient(to bottom, #fff5f5 0%, #fff 100%);
}

.premium-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.premium-box h4 i {
    margin-right: 10px;
    font-size: 1.4rem;
}

.premium-box.inclusions h4 i {
    color: #4CAF50;
}

.premium-box.exclusions h4 i {
    color: #f44336;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.premium-list li i {
    margin-top: 4px;
    margin-right: 12px;
}

.premium-list.inclusions li i {
    color: #4CAF50;
}

/* Premium Package Hero Details (Floating Style) */
.package-hero-details {
    background: #fff;
    border: none !important;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 30px 40px !important;
    margin-bottom: 40px !important;
    position: relative;
    z-index: 10;
}

.left-hero-details h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 8px !important;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(42, 92, 107, 0.05);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.location-badge i {
    color: var(--secondary);
    margin-right: 8px;
}

.hero-info-item {
    padding: 0 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-info-item:last-child {
    border-right: none;
    padding-right: 0;
}

.info-label {
    display: block;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.info-value span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.hero-reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.star-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.review-count {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

@media (max-width: 991px) {
    .package-hero-details {
        padding: 25px !important;
    }

    .hero-info-item {
        padding: 0 15px;
        border-right: none;
        margin-bottom: 15px;
    }

    .right-hero-details {
        justify-content: flex-start;
        width: 100%;
        margin-top: 20px;
    }
}

/* Bento Gallery */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
    margin-bottom: 40px;
}

.bento-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.bento-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-gallery-item:hover img {
    transform: scale(1.1);
}

.bento-gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-gallery-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .bento-gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* FAQ Section Styling */
.faq-section {
    margin-top: 60px;
}

.faq-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

/* Why Book With Us - Package Detail Version */
.why-book-package-section {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-book-package-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.package-why-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.package-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 92, 107, 0.08);
    border-color: rgba(217, 118, 66, 0.2);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(217, 118, 66, 0.08);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.package-why-card:hover .why-icon-box {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.1);
}

.why-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .package-why-card {
        padding: 20px;
    }
}

/* About Page Specific Sections */
/* Minimalist Clean Mission & Vision */
.mission-vision-minimal {
    padding: 8rem 0;
    background: #ffffff;
}

.minimal-purpose-box {
    padding: 3rem;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.minimal-purpose-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--secondary);
    transition: all 0.6s ease;
}

.minimal-purpose-box:hover::before {
    height: 100%;
}

.minimal-purpose-box:hover {
    background: #fcfdfd;
}

.purpose-icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.minimal-purpose-box:hover .purpose-icon-circle {
    background: var(--secondary);
    color: white;
}

.minimal-purpose-box h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.minimal-purpose-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .minimal-purpose-box {
        padding: 2rem 1rem;
        border-bottom: 1px solid #eee;
    }
}

/* Values Grid */
.values-section {
    padding: 4rem 0;
    background: #fdfcfb;
}

.value-card-minimal {
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card-minimal:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.value-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(217, 118, 66, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.value-card-minimal h4 {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.value-card-minimal p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--primary);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.stat-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .mission-card {
        padding: 3rem 2rem;
    }

    .mission-vision-section,
    .values-section {
        padding: 5rem 0;
    }
}

/* Visual Story Features Section */
.visual-story-section {
    padding: 8rem 0;
    background: #ffffff;
}

.story-grid {
    display: flex;
    gap: 30px;
}

.story-card {
    flex: 1;
    height: 500px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 48, 65, 0.9) 100%);
    z-index: 1;
    transition: all 0.4s;
}

.story-card:hover {
    flex: 1.5;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.story-card:hover img {
    transform: scale(1.1);
}

.story-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    z-index: 2;
    color: white;
    transform: translateY(20px);
    transition: all 0.5s;
}

.story-card:hover .story-card-content {
    transform: translateY(0);
}

.story-card-content i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.story-card-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.story-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.story-card:hover p {
    opacity: 1;
    height: auto;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .story-grid {
        flex-direction: column;
    }

    .story-card {
        height: 400px;
        flex: none !important;
    }

    .story-card-content p {
        opacity: 1;
        height: auto;
    }
}

/* Providing Section Styles (from about.php) */
.providing-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.providing-section .sub-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.providing-section .main-title {
    color: #1a1a1a;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    line-height: 1.2;
}

.feature-card-v2 {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.feature-card-v2:hover {
    transform: translateY(-5px);
}

.icon-wrapper-v2 {
    width: 85px;
    height: 85px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(217, 118, 66, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.icon-wrapper-v2::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    border-style: double;
    transition: all 0.4s ease;
}

.feature-card-v2:hover .icon-wrapper-v2 {
    background: var(--primary);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 30px rgba(42, 92, 107, 0.3);
}

.feature-card-v2:hover .icon-wrapper-v2::before {
    border-color: var(--primary);
    transform: scale(1.15);
    opacity: 0.6;
}

.feature-info-v2 h5 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-info-v2 p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .providing-section {
        padding: 60px 0;
    }

    .providing-section .main-title {
        margin-bottom: 40px;
    }

    .feature-card-v2 {
        margin-bottom: 30px;
    }
}

/* Why Choose Us V2 */
.why-choose-v2 {
    background: #f9fafb;
    padding: 90px 0 80px;
}

.why-choose-v2 .sub-title-orange {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.why-choose-v2 .main-title-black {
    color: #0f172a;
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 0;
}

/* ── Timeline Connector Row ── */
.why-timeline-row {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 calc(12.5% - 20px);
}

.why-timeline-track {
    position: absolute;
    top: 50%;
    left: calc(12.5%);
    right: calc(12.5%);
    transform: translateY(-50%);
    height: 2px;
    border-top: 2px dashed rgba(0, 0, 0, 0.12);
    z-index: 0;
}

.why-timeline-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-timeline-node:hover {
    transform: scale(1.15);
}

.node-orange {
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(247, 151, 59, 0.3);
}

.node-green {
    background: var(--primary);
    box-shadow: 0 6px 20px rgba(93, 148, 30, 0.3);
}

/* ── Open Cards ── */
.why-card-v2 {
    background: #ffffff;
    padding: 2.2rem 1.8rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Unique top accent bar per theme */
.why-card-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 0 3px 3px 0;
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-orange::after {
    background: var(--secondary);
}

.card-green::after {
    background: var(--primary);
}

.why-card-v2:hover::after {
    width: 100%;
}

/* Theme hover states */
.card-orange:hover {
    border-color: rgba(247, 151, 59, 0.18);
    box-shadow: 0 16px 40px rgba(247, 151, 59, 0.07);
    transform: translateY(-6px);
}

.card-green:hover {
    border-color: rgba(93, 148, 30, 0.18);
    box-shadow: 0 16px 40px rgba(93, 148, 30, 0.07);
    transform: translateY(-6px);
}

/* Icon box */
.icon-outer-v2 {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 1.4rem;
    flex-shrink: 0;
}

.why-card-v2:hover .icon-outer-v2 {
    transform: scale(1.12) rotate(6deg);
}

.card-orange .icon-outer-v2 {
    background: rgba(247, 151, 59, 0.1);
    color: var(--secondary);
}

.card-green .icon-outer-v2 {
    background: rgba(93, 148, 30, 0.1);
    color: var(--primary);
}

.card-blue .icon-outer-v2 {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.card-purple .icon-outer-v2 {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

/* Title */
.why-card-v2 h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.card-orange:hover h3 {
    color: var(--secondary);
}

.card-green:hover h3 {
    color: var(--primary);
}

.card-blue:hover h3 {
    color: #0d6efd;
}

.card-purple:hover h3 {
    color: #6f42c1;
}

/* Description */
.why-card-v2 p {
    font-size: 0.875rem;
    line-height: 1.72;
    color: #64748b;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Radial glow blob */
.why-card-v2::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s ease;
    opacity: 0;
}

.card-orange::before {
    background: radial-gradient(circle, rgba(247, 151, 59, 0.07) 0%, transparent 70%);
}

.card-green::before {
    background: radial-gradient(circle, rgba(93, 148, 30, 0.07) 0%, transparent 70%);
}

.card-blue::before {
    background: radial-gradient(circle, rgba(13, 110, 253, 0.07) 0%, transparent 70%);
}

.card-purple::before {
    background: radial-gradient(circle, rgba(111, 66, 193, 0.07) 0%, transparent 70%);
}

.why-card-v2:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

/* Responsive */
@media (max-width: 991px) {
    .why-timeline-row {
        display: none;
    }
}

@media (max-width: 767px) {
    .why-choose-v2 {
        padding: 60px 0;
    }
}

/* Clean Small CTA V2 */
.small-cta-v2 {
    padding: 80px 0;
    background: #ffffff;
}

.cta-banner-v2 {
    background: var(--primary);
    padding: 70px;
    border-radius: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(42, 92, 107, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-v2 .cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.cta-banner-v2 h2 {
    font-size: clamp(2.2rem, 5vw, 1.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.cta-banner-v2 h2 span {
    color: var(--secondary);
}

.cta-banner-v2 p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.6;
}

.cta-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.4rem 3.5rem;
    background: white;
    color: var(--primary) !important;
    text-decoration: none !important;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-btn-v2:hover {
    background: var(--secondary);
    color: white !important;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(217, 118, 66, 0.4);
}

.cta-trust-v2 {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    opacity: 0.7;
}

.cta-trust-v2 i {
    color: #FFD700;
    /* Gold for stars */
}

/* Decorative background elements */
.cta-banner-v2::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 118, 66, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .cta-banner-v2 {
        padding: 60px 30px;
        text-align: center;
    }

    .cta-banner-v2 h2 {
        font-size: 2.8rem;
    }

    .cta-banner-v2 p {
        margin: 0 auto 40px;
    }

    .cta-trust-v2 {
        justify-content: center;
    }
}

/* Quote Popup Styles */
.quote-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 92, 107, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quote-popup.active .popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-popup:hover {
    background: var(--secondary);
    color: white;
    transform: rotate(90deg);
}

.popup-header-v2 {
    text-align: center;
    margin-bottom: 30px;
}

.popup-header-v2 h3 {
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.popup-header-v2 p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.form-label-custom {
    font-weight: 700;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.form-label-custom i {
    color: var(--secondary);
    margin-right: 5px;
}

/* ===thanks page=== */
.thanks-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fbff;
}

.thanks-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(42, 92, 107, 0.1);
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.thanks-icon {
    width: 110px;
    height: 110px;
    background: var(--secondary, #d97642);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(217, 118, 66, 0.3);
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.thanks-card h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary, #2a5c6b);
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.thanks-card p {
    font-family: 'Outfit', sans-serif;
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.back-home-btn {
    display: inline-block;
    background: var(--primary, #2a5c6b);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(42, 92, 107, 0.2);
}

.back-home-btn:hover {
    background: var(--secondary, #d97642);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 118, 66, 0.3);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .thanks-section {
        padding: 60px 0;
        min-height: 70vh;
    }

    .thanks-card {
        padding: 40px 20px;
    }

    .thanks-card h1 {
        font-size: 2.2rem;
    }

    .thanks-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .popup-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .popup-header-v2 h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   ABOUT PAGE BANNER – Clean & Fully Responsive
   ============================================ */
.about-page-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.70) 100%),
        url('../images/other/spiti-slider.webp') center center / cover no-repeat;
    padding: 60px 0 80px;
}

/* Dark black overlay */
.ab-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 67%);
    z-index: 1;
}

/* Decorative floating blobs */
.ab-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.ab-shape-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(93, 148, 30, 0.25) 0%, transparent 70%);
    animation: abShapePulse 8s ease-in-out infinite;
}

.ab-shape-2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(247, 151, 59, 0.18) 0%, transparent 70%);
    animation: abShapePulse 10s ease-in-out infinite reverse;
}

@keyframes abShapePulse {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.12) translate(15px, -15px);
    }
}

/* Container */
.ab-banner-container {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Eyebrow */
.ab-eyebrow-wrap {
    margin-bottom: 1.2rem;
}

.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.45rem 1.3rem;
    border-radius: 999px;
    border-left: 3px solid var(--secondary);
    animation: fadeSlideDown 0.7s ease both;
}

.ab-eyebrow i {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Main title */
.ab-banner-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    animation: fadeSlideUp 0.75s ease 0.15s both;
}

/* .ab-title-line {
    display: block;
} */
.ab-highlight {
    color: var(--secondary);
    position: relative;
}

.ab-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    opacity: 0.5;
}

/* Description */
.ab-banner-desc {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.80);
    max-width: 700px;
    margin: 0 auto 1.6rem;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeSlideUp 0.75s ease 0.3s both;
}

/* Breadcrumb */
.ab-breadcrumb-nav {
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.75s ease 0.4s both;
}

.ab-breadcrumb-nav .breadcrumb {
    background: transparent;
    font-size: 0.82rem;
    font-weight: 500;
}

.ab-breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s;
}

.ab-breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--secondary);
}

.ab-breadcrumb-nav .breadcrumb-item.active {
    color: var(--secondary);
}

.ab-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.40);
}

/* Stat Pills strip */
.ab-stat-pills {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 1.1rem 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlideUp 0.75s ease 0.55s both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.ab-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 1.6rem;
}

.ab-pill-icon {
    width: 36px;
    height: 36px;
    background: rgba(247, 151, 59, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.ab-pill-icon i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.ab-pill-num {
    font-size: 1.55rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.ab-pill-lbl {
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    white-space: nowrap;
}

.ab-pill-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* Wave divider */
.ab-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.ab-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* Entry animations */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .about-page-banner {
        min-height: 280px;
        padding: 55px 0 70px;
    }

    .ab-stat-pills {
        padding: 0.9rem 1.2rem;
    }

    .ab-pill {
        padding: 0 1rem;
    }
}

@media (max-width: 767px) {
    .about-page-banner {
        min-height: 260px;
        padding: 50px 0 65px;
    }

    .ab-banner-title {
        letter-spacing: -0.5px;
    }

    .ab-stat-pills {
        gap: 0.4rem;
        padding: 1rem;
        border-radius: 16px;
    }

    .ab-pill {
        padding: 0 0.8rem;
    }

    .ab-pill-num {
        font-size: 1.25rem;
    }

    .ab-pill-divider {
        height: 36px;
    }
}

@media (max-width: 575px) {
    .about-page-banner {
        padding: 45px 0 60px;
    }

    .ab-stat-pills {
        flex-direction: column;
        gap: 0.8rem;
        width: 90%;
        padding: 1.2rem 1rem;
    }

    .ab-pill-divider {
        width: 60px;
        height: 1px;
    }

    .ab-pill {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .ab-pill-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ab-pill-num {
        font-size: 1.4rem;
    }

    .ab-wave svg {
        height: 45px;
    }
}

/* =========================================
   Shimla Manali Package Premium Layout
========================================= */

/* Immersive Hero Section */
.hero-immersive {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('../images/other/himachal-slider.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.hero-immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Glassmorphism Booking Form */
.glass-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.glass-form h3 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
}

.glass-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.glass-form .btn-submit {
    background: #fa5a00;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.glass-form .btn-submit:hover {
    background: #c55336;
}

/* Sticky Navigation */
.sticky-nav-bar {
    position: sticky;
    top: 70px;
    /* Assuming header height */
    background: white;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-bottom: 40px;
}

.sticky-nav-bar .nav-link {
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.sticky-nav-bar .nav-link:hover,
.sticky-nav-bar .nav-link.active {
    background: #fa5a00;
    color: white;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

/* Visual Timeline */
.visual-timeline {
    position: relative;
    margin-top: 30px;
}

.visual-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: #eee;
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 4px;
}

.vt-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.vt-marker {
    position: absolute;
    left: 6px;
    top: 0;
    width: 32px;
    height: 32px;
    background: #fa5a00;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(222, 102, 70, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.vt-content {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
}

.vt-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.vt-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vt-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vt-content li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fa5a00;
}

/* Masonry Gallery */
.modern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 15px;
}

.mg-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mg-item:hover img {
    transform: scale(1.05);
}

.mg-wide {
    grid-column: span 2;
}

.mg-tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .visual-timeline::before {
        left: 16px;
    }

    .vt-marker {
        left: 2px;
        width: 28px;
        height: 28px;
    }

    .vt-item {
        padding-left: 45px;
    }

    .mg-wide,
    .mg-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Vertical Destination Slider in Sidebar */
.vert-slider-track {
    display: flex;
    flex-direction: column;
    animation: scrollVertical 25s linear infinite;
}

.vert-slider-container:hover .vert-slider-track {
    animation-play-state: paused;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* ===== package detail page ===== */
/* Sticky Navigation */
.sticky-nav-bar {
    position: sticky;
    top: 93px;
    /* Assuming header height */
    background: white;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-bottom: 40px;
}

.sticky-nav-bar .nav-link {
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.sticky-nav-bar .nav-link:hover,
.sticky-nav-bar .nav-link.active {
    background: #fa5a00;
    color: white;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

/* Visual Timeline */
.visual-timeline {
    position: relative;
    margin-top: 30px;
}

.visual-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: #eee;
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 4px;
}

.vt-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.vt-marker {
    position: absolute;
    left: 6px;
    top: 0;
    width: 32px;
    height: 32px;
    background: #fa5a00;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(222, 102, 70, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.vt-content {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
}

.vt-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.vt-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vt-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vt-content li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fa5a00;
}

/* Masonry Gallery */
.modern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 15px;
}

.mg-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mg-item:hover img {
    transform: scale(1.05);
}

.mg-wide {
    grid-column: span 2;
}

.mg-tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .visual-timeline::before {
        left: 16px;
    }

    .vt-marker {
        left: 2px;
        width: 28px;
        height: 28px;
    }

    .vt-item {
        padding-left: 45px;
    }

    .mg-wide,
    .mg-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Modern About Page Sections Styling */
.providing-section-modern {
    background-color: var(--bg-light);
}

.modern-feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border-color: transparent;
}

.modern-feature-card:hover .card-hover-bg {
    opacity: 1 !important;
}

.modern-icon-box {
    transition: all 0.4s ease;
}

.modern-feature-card:hover .modern-icon-box {
    background-color: var(--primary) !important;
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}

.modern-stat-item {
    transition: all 0.3s ease;
}

.modern-stat-item:hover {
    transform: translateY(-5px);
}

.modern-stat-item:hover .stat-icon {
    color: white !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}