/* ============================================================
   Jharkhand Tourism — Premium Design System
   Flat colors only • No gradients • Earthy palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&family=Alex+Brush&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Color Palette — Flat, Solid Only */
    --primary:           #2D5F3F;
    --primary-light:     #3A7A52;
    --primary-dark:      #1E4029;
    --secondary:         #C4663A;
    --secondary-light:   #D4804E;
    --secondary-dark:    #A4522E;
    --accent:            #1A6B6A;
    --accent-light:      #238786;
    --neutral-dark:      #2B2D2E;
    --neutral-light:     #F7F3ED;
    --white:             #FFFFFF;
    --black:             #1A1A1A;

    /* Premium Gradients */
    --gradient-primary:   linear-gradient(135deg, #2D5F3F, #1E4029);
    --gradient-secondary: linear-gradient(135deg, #C4663A, #A4522E);
    --gradient-accent:    linear-gradient(135deg, #1A6B6A, #114F4E);
    --gradient-light:     linear-gradient(to bottom, #FAF8F4, #F0EDE6);
    --gradient-card:      linear-gradient(180deg, #FFFFFF, #FAF9F6);
    --gradient-glass:     linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));

    /* Text */
    --text-primary:      #2B2D2E;
    --text-secondary:    #555859;
    --text-muted:        #8A8D8F;
    --text-on-dark:      #F7F3ED;
    --text-on-primary:   #FFFFFF;

    /* Surfaces & Borders */
    --border:            #E5E0D8;
    --border-dark:       #C8C2B8;
    --surface:           #FFFFFF;
    --surface-warm:      #FAF8F4;
    --surface-muted:     #F0EDE6;
    --surface-dark:      #2B2D2E;

    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Shadows — subtle, no glows */
    --shadow-xs:   0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:   0 2px 6px rgba(0,0,0,0.07);
    --shadow-md:   0 4px 14px rgba(0,0,0,0.09);
    --shadow-lg:   0 8px 30px rgba(0,0,0,0.11);
    --shadow-xl:   0 16px 48px rgba(0,0,0,0.13);
    --shadow-hover:0 12px 36px rgba(0,0,0,0.14);

    /* Transitions */
    --ease:        cubic-bezier(0.25, 1, 0.5, 1);
    --t-fast:      250ms var(--ease);
    --t-base:      400ms var(--ease);
    --t-slow:      600ms var(--ease);

    /* Layout */
    --nav-h:       76px;
    --container:   1280px;
    --section-px:  8%;
    --section-py:  6rem;

    /* Radius */
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  16px;
    --r-xl:  24px;
    --r-full:9999px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--neutral-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--neutral-light); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(2.0rem, 3.8vw, 3.0rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.7vw, 1.95rem); font-weight: 600; }
h4 { font-size: 1.35rem; font-weight: 500; }
h5 { font-size: 1.15rem; font-weight: 500; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-secondary-c { color: var(--secondary); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }

/* ── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--r-md);
    transition: all var(--t-base);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-on-primary);
    border: none;
    padding: 0.9rem 1.7rem;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 95, 63, 0.25);
    opacity: 0.95;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-on-primary);
    border: none;
    padding: 0.9rem 1.7rem;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 102, 58, 0.25);
    opacity: 0.95;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--text-on-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 95, 63, 0.2);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--text-on-primary);
    border: none;
    padding: 0.9rem 1.7rem;
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 107, 106, 0.25);
    opacity: 0.95;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--r-lg);
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

/* ── Badges & Tags ─────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--r-full);
}

.badge-primary {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

.badge-secondary {
    background-color: var(--secondary);
    color: var(--text-on-primary);
}

.badge-accent {
    background-color: var(--accent);
    color: var(--text-on-primary);
}

.badge-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--r-full);
    background-color: var(--surface-muted);
    color: var(--text-secondary);
    transition: all var(--t-fast);
}

.tag:hover {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

/* ── Section Layout ────────────────────────────────────────── */
.section {
    padding: var(--section-py) var(--section-px);
    position: relative;
}

.section-warm { background-color: var(--surface-warm); }
.section-white { background-color: var(--white); }
.section-cream { background-color: var(--neutral-light); }
.section-dark {
    background-color: var(--neutral-dark);
    color: var(--text-on-dark);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-primary {
    background-color: var(--primary);
    color: var(--text-on-primary);
}
.section-primary h2, .section-primary h3 { color: var(--white); }
.section-primary p { color: rgba(255,255,255,0.8); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: block;
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.section-dark .section-badge { color: var(--accent); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
}

.section-dark .section-title { color: var(--white); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: -2.5rem auto 3.5rem auto; /* Net top gap of 1rem from title, centered, push down 3.5rem */
}

/* ── Sticky Navigation ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999 !important;
    transition: height var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1),
                background-color var(--t-slow) ease,
                border-bottom-color var(--t-slow) ease,
                box-shadow var(--t-slow) ease;
}

.site-header.scrolled {
    height: 66px;
    background-color: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1560px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    transition: transform var(--t-fast) ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo img {
    transition: height var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .nav-logo img {
    height: 38px !important;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.nav-logo-icon svg,
.nav-logo-icon i { width: 22px; height: 22px; }

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-logo-text span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 100%;
}

.nav-link {
    padding: 0.6rem 1.15rem;
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--t-fast);
    position: relative;
    letter-spacing: 0.015em;
}

.nav-menu .nav-link {
    padding: 0.5rem 1.1rem;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--r-full);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: 0.02em;
    transition: color var(--t-fast), background-color var(--t-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-menu .nav-link:hover,
.nav-dropdown:hover > .nav-link {
    color: var(--primary);
    background-color: rgba(45, 95, 63, 0.04);
}

.nav-menu .nav-link.active {
    color: var(--primary);
    background-color: rgba(45, 95, 63, 0.08);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 1.15rem;
    right: 1.15rem;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-base) cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu .nav-link::after {
    display: none;
}

/* Lucide Icon Micro-interaction inside desktop nav-link */
.nav-menu .nav-link i,
.nav-menu .nav-link [data-lucide] {
    transition: transform var(--t-fast);
}

.nav-dropdown:hover > .nav-link i,
.nav-dropdown:hover > .nav-link [data-lucide] {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* Wide mega-menu parents become statically positioned
   so the dropdown positions relative to .nav-container */
.nav-dropdown:has(.nav-dropdown-menu-wide) {
    position: static;
}

/* Invisible hover bridge — prevents dropdown disappearing when
   cursor crosses the gap between nav-link and menu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
    pointer-events: none;
}
.nav-dropdown:hover::after {
    pointer-events: all;
}

/* Wide-menu parents are position:static — disable the ::after bridge
   (the wide menu's own ::before handles the gap instead) */
.nav-dropdown:has(.nav-dropdown-menu-wide)::after {
    display: none;
}

/* ── Base dropdown (small, Plan Trip / Culture / Explore) ── */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.97);
    background: var(--white);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(45, 95, 63, 0.10);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(45, 95, 63, 0.06);
    padding: 1rem;
    min-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.25s;
    z-index: 99999;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* ── Wide Mega Menu (Destinations + Districts) ─────────────
   Parent is position:static so left:50% is relative to
   .nav-container (max-width 1400px), not the nav item.
   A ::before bridge on the menu itself covers the 4px gap. */
.nav-dropdown-menu-wide {
    min-width: min(920px, 90vw);
    padding: 0;
    overflow: visible; /* allow ::before bridge */
    border-radius: 18px;
    /* Re-center relative to nav-container width */
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.97);
}

/* Inner content clips to border-radius */
.nav-dropdown-menu-wide > .mega-menu-container {
    border-radius: 18px;
    overflow: hidden;
}

/* Transparent bridge between nav-link bottom and menu top */
.nav-dropdown-menu-wide::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu-wide {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0) scale(1);
}



.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    border-radius: 12px;
    transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
    color: var(--text-secondary);
    font-family: var(--font-body);
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: rgba(45, 95, 63, 0.07);
    color: var(--primary);
    transform: translateX(3px);
}

.dropdown-icon {
    width: 34px;
    height: 34px;
    background-color: rgba(45, 95, 63, 0.07);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: background 0.16s ease, color 0.16s ease;
}

.dropdown-icon i,
.dropdown-icon [data-lucide] {
    width: 16px;
    height: 16px;
}

.dropdown-item:hover .dropdown-icon {
    background-color: var(--primary);
    color: var(--white);
}

.dropdown-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.dropdown-sublabel {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
    letter-spacing: 0.005em;
}


.nav-cta {
    margin-left: 0.75rem;
}



/* ── Districts Mega Menu Layout ──────────────────────────────── */
.mega-menu-container {
    display: flex;
    height: 340px;
}

.mega-menu-featured {
    position: relative;
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 17px 0 0 17px;
}

.mega-menu-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mega-menu-featured:hover img {
    transform: scale(1.04);
}

.mega-menu-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 46, 27, 0.90) 40%, rgba(18, 46, 27, 0.12) 100%);
}

.mega-menu-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.1rem 1rem;
    color: var(--white);
}

.mega-menu-featured-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.3rem 0 0.4rem;
    line-height: 1.25;
    color: var(--white);
}

.mega-menu-featured-content p {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
    margin-bottom: 0.6rem;
}

.mega-menu-featured-content a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: #D4804E;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.2s ease, color 0.2s ease;
}

.mega-menu-featured-content a i,
.mega-menu-featured-content a [data-lucide] {
    width: 13px;
    height: 13px;
}

.mega-menu-featured-content a:hover {
    gap: 0.55rem;
    color: var(--white);
}

/* Right grid of districts */
.mega-menu-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0.7rem 0.85rem 0.7rem 0.6rem;
    overflow-y: auto;
    align-content: start;
    scrollbar-width: thin;
    scrollbar-color: rgba(45, 95, 63, 0.18) transparent;
}

/* Categories layout — 2 columns for 7 items */
.mega-menu-grid-categories {
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    padding: 1rem 1rem 1rem 0.75rem;
    gap: 0.3rem;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.5rem;
    border-radius: 9px;
    font-family: var(--font-body);
    font-size: 0.80rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: normal;
    line-height: 1.3;
    transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

/* Category link items */
.mega-menu-cat-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.7rem;
    border-radius: 12px;
    font-family: var(--font-body);
    text-decoration: none;
    transition: background-color var(--t-fast), transform var(--t-fast);
    cursor: pointer;
}

.mega-menu-cat-link:hover {
    background: rgba(45, 95, 63, 0.07);
    transform: translateX(3px);
}

.mega-menu-cat-icon {
    width: 38px;
    height: 38px;
    background: rgba(45, 95, 63, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: background 0.18s ease, color 0.18s ease;
}

.mega-menu-cat-icon i,
.mega-menu-cat-icon [data-lucide] {
    width: 18px;
    height: 18px;
}

.mega-menu-cat-link:hover .mega-menu-cat-icon {
    background: var(--primary);
    color: var(--white);
}

.mega-menu-cat-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.mega-menu-cat-count {
    font-family: var(--font-body);
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.mega-menu-link:hover {
    background: rgba(45, 95, 63, 0.07);
    color: var(--primary);
    transform: translateX(3px);
}

.mega-menu-thumbnail {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid rgba(45, 95, 63, 0.12);
    transition: border-color 0.16s ease;
}

.mega-menu-link:hover .mega-menu-thumbnail {
    border-color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 100005 !important;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--t-base);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9980;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    background-color: transparent;
    z-index: 9990;
    padding: 0;
    transition: right var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mobile-menu.open {
    right: 0;
}

/* (mobile close button styles removed - unified with header hamburger morph) */

.mobile-panels-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mobile-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(30px) saturate(190%);
    -webkit-backdrop-filter: blur(30px) saturate(190%);
    transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: calc(var(--nav-h) + 1.25rem) 1.25rem 2.5rem 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.mobile-panel.panel-main {
    transform: translateX(0);
    z-index: 1;
    overflow-y: auto;
}

.mobile-panel.panel-main.slide-left {
    transform: translateX(-20%);
}

.mobile-panel.panel-sub {
    transform: translateX(100%);
    z-index: 2;
    overflow-y: auto;
}

.mobile-panel.panel-sub.open {
    transform: translateX(0);
}

/* Premium Drawer Branding Header */
.mobile-drawer-brand {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 1.25rem;
    width: 100%;
}

.mobile-drawer-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Modern Card-Style List Link items inside drawer */
.mobile-panel .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: left;
    transition: all var(--t-fast);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.mobile-panel .nav-link:hover,
.mobile-panel .nav-link:active {
    background-color: rgba(45, 95, 63, 0.08);
    border-color: rgba(45, 95, 63, 0.12);
    color: var(--primary);
    transform: translateY(-1px);
}

.mobile-panel .nav-link span {
    display: inline-flex;
    align-items: center;
}

/* Custom premium App Store-style icon grids */
.mobile-panel .nav-link span i,
.mobile-panel .nav-link span [data-lucide] {
    margin-right: 0.75rem;
    color: var(--primary);
    background-color: rgba(45, 95, 63, 0.07);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
    transition: all var(--t-fast);
}

.mobile-panel .nav-link:hover span i,
.mobile-panel .nav-link:hover span [data-lucide] {
    background-color: var(--primary);
    color: var(--white);
}

.mobile-panel .nav-link .arrow-right {
    margin-right: 0;
    color: var(--text-muted);
    width: 14px;
    height: 14px;
    transition: transform var(--t-fast);
}

.mobile-panel .nav-link:hover .arrow-right {
    transform: translateX(2px);
    color: var(--primary);
}

/* Back Button Pill Style */
.mobile-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    width: fit-content;
    align-self: flex-start;
    transition: all var(--t-fast);
    cursor: pointer;
    box-shadow: var(--shadow-xs);
}

.mobile-back-btn:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    background-color: rgba(45, 95, 63, 0.05);
    transform: translateX(-2px);
}

.mobile-back-btn i,
.mobile-back-btn svg {
    width: 12px;
    height: 12px;
    transition: transform var(--t-fast);
}

.mobile-back-btn:hover i,
.mobile-back-btn:hover svg {
    transform: translateX(-1px);
}

.panel-header-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 0.25rem 0.5rem 0.75rem 0.5rem;
}

.panel-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 2rem;
}

.panel-item-link-bold {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
}

.panel-divider {
    height: 1px;
    background-color: var(--border);
    margin: 0.5rem 0.5rem 0.75rem 0.5rem;
}

.panel-item-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 0.4rem;
    transition: all var(--t-fast);
}

.panel-item-link:hover {
    background-color: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xs);
    transform: translateY(-1px);
}

.panel-item-link i,
.panel-item-link svg {
    width: 32px;
    height: 32px;
    background-color: rgba(45, 95, 63, 0.07);
    color: var(--primary);
    border-radius: 8px;
    padding: 6px;
    flex-shrink: 0;
    transition: all var(--t-fast);
}

.panel-item-link:hover i,
.panel-item-link:hover svg {
    background-color: var(--primary);
    color: var(--white);
}

.panel-item-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.panel-item-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.districts-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.district-grid-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background-color: var(--white);
    overflow: hidden;
    transition: all var(--t-fast);
    box-shadow: var(--shadow-xs);
    text-decoration: none;
}

.district-grid-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.district-grid-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.district-grid-item:hover img {
    transform: scale(1.08);
}

.district-grid-item span {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.5rem 0.25rem;
    text-align: center;
    color: var(--text-primary);
    display: block;
    background-color: var(--white);
}

/* Mobile Drawer Search Bar */
.mobile-drawer-search {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    margin-bottom: 1.25rem;
    width: 100%;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.mobile-drawer-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
    color: var(--text-primary);
}

.mobile-drawer-search button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.mobile-drawer-search button i,
.mobile-drawer-search button svg {
    width: 16px;
    height: 16px;
    transition: color var(--t-fast);
}

.mobile-drawer-search:focus-within {
    border-color: var(--primary-light);
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.06);
}

.mobile-drawer-search:focus-within button i,
.mobile-drawer-search:focus-within button svg {
    color: var(--primary);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + 2rem) 4% 2rem 4%;
    overflow: visible;
}

.hero-split-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.hero-split-left {
    flex: 1.2;
    max-width: 720px;
}

.hero-split-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 440px;
    width: 100%;
}

.hero-card-stack {
    position: relative;
    width: 100%;
}

.hero-interactive-card {
    display: block;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s ease,
                box-shadow var(--t-fast);
    text-decoration: none;
    width: 100%;
}

.hero-interactive-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.hero-interactive-card.card-transitioning {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.hero-card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.hero-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-interactive-card:hover .hero-card-img-wrap img {
    transform: scale(1.05);
}

.hero-card-info {
    padding: 1.5rem;
    color: var(--text-primary);
}

.hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.hero-card-tag i,
.hero-card-tag svg {
    width: 12px;
    height: 12px;
}

.hero-card-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hero-card-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.hero-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color var(--t-fast);
}

.hero-card-action i,
.hero-card-action svg {
    width: 16px;
    height: 16px;
    transition: transform var(--t-fast);
}

.hero-interactive-card:hover .hero-card-action i,
.hero-interactive-card:hover .hero-card-action svg {
    transform: translateX(4px);
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    transform: scale(1.03) translate(0, 0);
    z-index: 1;
}

.hero-bg-layer.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 14s ease-in-out infinite;
}

@keyframes kenBurns {
    0% { transform: scale(1.03) translate(0, 0); }
    50% { transform: scale(1.08) translate(1%, -0.5%); }
    100% { transform: scale(1.03) translate(0, 0); }
}

/* SOLID overlay — NOT a gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(22, 46, 30, 0.55);
    z-index: 1;
}

/* Ambient Bokeh Sparkles */
.hero-ambient-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-ambient-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    bottom: -20px;
    filter: blur(1.5px);
}

.hero-ambient-particles .p-1 { width: 6px; height: 6px; left: 15%; animation: floatUp 12s infinite linear; }
.hero-ambient-particles .p-2 { width: 10px; height: 10px; left: 45%; animation: floatUp 16s infinite linear 3s; filter: blur(2.5px); }
.hero-ambient-particles .p-3 { width: 8px; height: 8px; left: 70%; animation: floatUp 14s infinite linear 6s; }
.hero-ambient-particles .p-4 { width: 5px; height: 5px; left: 85%; animation: floatUp 18s infinite linear 9s; }

@keyframes floatUp {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.75; }
    90% { opacity: 0.75; }
    100% { transform: translateY(-105vh) translateX(40px); opacity: 0; }
}

@keyframes heroFadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroCenteredFadeSlideUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    color: var(--white);
    margin: 0 auto 2rem auto;
}

.hero-content > * {
    opacity: 0;
    animation: heroFadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.55rem 1.4rem;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 1.75rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all var(--t-fast);
    animation-delay: 150ms;
}

.hero-badge:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation-delay: 350ms;
}

.hero-title em {
    font-style: italic;
    color: var(--secondary-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation-delay: 550ms;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Premium Floating Glassmorphic Stats Bar (Left Aligned) */
.hero-stats {
    position: absolute;
    bottom: 2.5rem;
    left: 8%;
    transform: none;
    z-index: 3;
    background-color: rgba(18, 30, 22, 0.45);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.1rem 2.2rem;
    border-radius: 24px;
    max-width: 580px;
    width: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: all var(--t-base);
    opacity: 0;
    animation: heroFadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 950ms forwards;
}

.hero-stats:hover {
    background-color: rgba(18, 30, 22, 0.55);
    border-color: rgba(255, 255, 255, 0.20);
    transform: translateY(-2px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.hero-stats-inner {
    max-width: 520px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 2.2rem;
    align-items: center;
}

.hero-stat {
    text-align: center;
    color: var(--white);
    flex: 1;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    display: block;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.76rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.1rem;
    display: block;
}

.hero-text-wrap {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.hero-text-wrap.slide-transitioning {
    opacity: 0;
    transform: translateY(10px);
}

.hero-slider-nav {
    position: absolute;
    bottom: 3.5rem;
    right: 8%;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-slider-dot.active {
    background-color: #CBE25D;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(203, 226, 93, 0.4);
}

@media (max-width: 768px) {
    .hero-slider-nav {
        right: 50%;
        transform: translateX(50%);
        bottom: 2rem;
    }
}

/* Redesigned Left-Aligned Hero content & Floating Search Capsule */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    color: var(--white);
    margin: 0;
    text-align: left;
    align-self: center;
    width: 100%;
}

.hero-badge-script {
    font-family: 'Alex Brush', cursive;
    font-size: 3rem;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
    opacity: 0;
    animation: heroFadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 150ms forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
    text-align: left;
    opacity: 0;
    animation: heroFadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 350ms forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroFadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 550ms forwards;
}

.btn-cyan {
    background-color: #149cb7;
    color: var(--white);
    border: 1px solid #149cb7;
    padding: 1.05rem 2.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--t-fast);
}

.btn-cyan:hover {
    background-color: #0e7d94;
    border-color: #0e7d94;
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(20, 156, 183, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.95rem 2.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--t-fast);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.15);
}

/* Floating Search Bar overlapping bottom boundary */
.hero-floating-search-wrap {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 999;
    opacity: 0;
    animation: heroCenteredFadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 750ms forwards;
}

.hero-floating-search-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
    border-radius: 60px;
    overflow: visible;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    background-color: var(--white);
    padding: 0.5rem;
    align-items: center;
}

.search-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
}

.search-col:has(.custom-select.open) {
    position: relative;
    z-index: 15;
}

.hero-floating-search-bar .search-col:first-of-type {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.search-col-icon {
    color: #149cb7;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-col-icon i,
.search-col-icon svg {
    width: 20px;
    height: 20px;
}

.search-col-fields {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.search-col-fields label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    width: 100%;
    user-select: none;
    gap: 0.5rem;
    padding: 0.15rem 0;
}

.select-chevron {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: transform var(--t-fast) ease;
}

.custom-select.open .select-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 12px);
    left: -1.5rem;
    right: -1.5rem;
    background-color: var(--white);
    border: 1px solid rgba(45, 95, 63, 0.12);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
    z-index: 9999;
    padding: 0.5rem;
    max-height: 260px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--t-fast) ease, transform var(--t-fast) ease, visibility var(--t-fast);
    scrollbar-width: thin;
    scrollbar-color: rgba(45, 95, 63, 0.2) transparent;
}

.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    text-align: left;
}

.custom-option:hover {
    background-color: rgba(45, 95, 63, 0.06);
    color: var(--primary);
}

.custom-option.active {
    background-color: var(--primary);
    color: var(--white);
}

@media (max-width: 1024px) {
    .custom-select-options {
        left: 0;
        right: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
}

.floating-search-btn {
    background-color: #149cb7;
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1.1rem 2.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--t-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-search-btn:hover {
    background-color: #0e7d94;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 156, 183, 0.25);
}

@media (max-width: 1024px) {
    .hero-floating-search-wrap {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none !important;
        width: 100%;
        margin: 3rem auto 0 auto;
        opacity: 1 !important;
        animation: none !important;
    }
    
    .hero-floating-search-bar {
        grid-template-columns: 1fr 1fr;
        border-radius: 24px;
        gap: 1rem;
        padding: 1.5rem;
        background-color: var(--white);
    }
    
    .search-col {
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 0.75rem 1rem;
    }
    
    .floating-search-btn {
        grid-column: span 2;
        justify-content: center;
        padding: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero-floating-search-bar {
        grid-template-columns: 1fr;
    }
    
    .floating-search-btn {
        grid-column: span 1;
    }
}
@media (max-width: 1024px) {
    .hero {
        padding: calc(var(--nav-h) + 3rem) 1.5rem 6rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-badge-script {
        font-size: 2.4rem;
        text-align: left;
    }

    .hero-title {
        font-size: 2.6rem;
        text-align: left;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 1rem;
    }

    .btn-cyan,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 20px;
        margin-top: 4rem;
        padding: 1.25rem 1.5rem;
        box-shadow: none;
        background-color: rgba(18, 30, 22, 0.6);
    }
    
    .hero-stats-inner {
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    
    .hero-stat {
        flex: 1 1 40%;
    }
    
    .hero-stat:not(:last-child)::after {
        display: none;
    }
}

/* Horizontal Card Slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2.5rem;
    scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slider-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
}

.slider-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.slider-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.slider-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.slider-card:hover .slider-card-img img {
    transform: scale(1.06);
}

.slider-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-xs);
}

.slider-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slider-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
    color: var(--primary);
}

.slider-card-loc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.slider-card-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.slider-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.slider-card-rating {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 3px;
}

.slider-card-rating i,
.slider-card-rating svg {
    color: var(--secondary);
    width: 14px;
    height: 14px;
}

.slider-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 2px;
}

.slider-card-action:hover {
    color: var(--secondary-dark);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--r-full);
    background-color: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    cursor: pointer;
    transition: all var(--t-base);
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* Tab Selector for Featured Grid */
.tab-selector {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    background-color: var(--white);
    transition: all var(--t-fast);
}

.tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Split Showcase Grid */
.showcase-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.showcase-map-teaser {
    grid-template-columns: 0.95fr 1.05fr;
}

.showcase-split-img {
    position: relative;
    border-radius: 48px 16px 48px 16px; /* Organic leaf-matching curves */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
}

.showcase-map-teaser .showcase-split-img {
    height: 380px;
}

.showcase-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.showcase-split-img:hover img {
    transform: scale(1.05);
}

.showcase-split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

@media (max-width: 992px) {
    .showcase-split {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    .showcase-split-img {
        height: 320px !important;
        order: -1;
    }
    .showcase-map-teaser .showcase-split-img {
        height: 300px !important;
    }
}

/* Inspiration Quote Section */
.inspiration-quote {
    padding: 7rem 2rem;
    text-align: center;
    background-color: #faf8f4; /* Matches testimonials! */
    color: var(--neutral-dark);
    position: relative;
    overflow: hidden;
}

.inspiration-quote-bg {
    position: absolute;
    inset: -20% 0;
    height: 140%;
    background-image: url('../images/misty_sal_forest.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.inspiration-quote-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(250, 248, 244, 0.65); /* Reduced opacity for visible background details */
    z-index: 1;
}

.inspiration-quote-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.inspiration-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--neutral-dark);
}

.inspiration-quote-author {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
}

/* ── Category Grid ─────────────────────────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: all var(--t-base);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.category-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(45, 95, 63, 0.08);
}

.category-card:hover .category-icon {
    background-color: var(--primary);
    color: var(--white);
}

.category-icon {
    width: 56px;
    height: 56px;
    background-color: var(--surface-muted);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    transition: all var(--t-base);
}

.category-icon svg,
.category-icon i { width: 26px; height: 26px; }

.category-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ── Destination Cards ─────────────────────────────────────── */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.dest-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all var(--t-slow);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 95, 63, 0.08);
    border-color: var(--primary-light);
}

.dest-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.06);
}

.dest-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
}

.dest-card-fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--t-fast);
    z-index: 1;
}

.dest-card-fav:hover {
    color: var(--secondary);
    background-color: var(--white);
}

.dest-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dest-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    transition: color var(--t-fast);
}

.dest-card:hover .dest-card-title {
    color: var(--primary);
}

.dest-card-loc {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.dest-card-loc svg,
.dest-card-loc i { width: 14px; height: 14px; color: var(--secondary); }

.dest-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.dest-card-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dest-card-rating svg,
.dest-card-rating i { width: 16px; height: 16px; color: var(--secondary); }

.dest-card-action {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: all var(--t-fast);
}

.dest-card-action:hover {
    color: var(--primary-dark);
    gap: 0.6rem;
}

.dest-card-action svg,
.dest-card-action i { width: 16px; height: 16px; transition: transform var(--t-fast); }

.dest-card-action:hover svg,
.dest-card-action:hover i { transform: translateX(3px); }

/* ── Featured Destination (Large Card) ─────────────────────── */
.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all var(--t-slow);
}

.featured-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-dark);
}

.featured-card-img {
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-card-img img {
    transform: scale(1.04);
}

.featured-card-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Filter & Search Bar ───────────────────────────────────── */
.filter-bar {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1.25rem 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-xs);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 220px;
    position: relative;
}

.search-input-wrap svg,
.search-input-wrap i {
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: transparent;
    width: 100%;
    padding: 0.5rem 0;
}

.search-input::placeholder { color: var(--text-muted); }

/* Autocomplete */
.autocomplete-results {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: -1rem;
    right: -1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    max-height: 320px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}

.autocomplete-results.open { display: block; }

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background-color var(--t-fast);
}

.autocomplete-item:hover { background-color: var(--surface-muted); }

.autocomplete-item img {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    object-fit: cover;
}

.autocomplete-item-name {
    font-weight: 600;
    font-size: 0.92rem;
}

.autocomplete-item-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.filter-separator {
    width: 1px;
    height: 32px;
    background-color: var(--border);
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    background-color: var(--surface-warm);
    cursor: pointer;
    outline: none;
    transition: border-color var(--t-fast);
    min-width: 140px;
}

.filter-select:focus { border-color: var(--primary); }

/* Filter Tags Row */
.filter-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-tag {
    padding: 0.55rem 1.3rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 1.5px solid var(--border);
    background-color: var(--white);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tag.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.filter-tag svg,
.filter-tag i {
    width: 16px;
    height: 16px;
}

/* View toggle */
.view-toggle {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.view-toggle-btn {
    padding: 0.5rem 0.85rem;
    color: var(--text-muted);
    transition: all var(--t-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-toggle-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.view-toggle-btn:hover:not(.active) {
    background-color: var(--surface-muted);
    color: var(--text-primary);
}

/* ── Destination Detail Page ───────────────────────────────── */

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: calc(var(--nav-h) + 1.5rem) var(--section-px) 1rem;
    background-color: var(--surface-warm);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--t-fast);
}

.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .current { color: var(--text-primary); font-weight: 600; }
.breadcrumbs svg, .breadcrumbs i { width: 14px; height: 14px; }

/* Detail Hero */
.detail-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 64, 41, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem var(--section-px);
}

.detail-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.detail-hero-loc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.detail-hero-tagline {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Detail Content Layout */
.detail-content {
    padding: 3rem var(--section-px);
    max-width: 1300px;
    margin: 0 auto;
}

.detail-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* Overview Section */
.detail-section {
    margin-bottom: 3rem;
}

.detail-section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.detail-section-title .icon {
    color: var(--primary);
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--surface-warm);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg, .highlight-icon i { width: 20px; height: 20px; }

.highlight-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.highlight-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0);
    transition: background-color var(--t-base);
}

.gallery-item:hover::after {
    background-color: rgba(0,0,0,0.15);
}

.gallery-item .gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: var(--white);
    opacity: 0;
    transition: all var(--t-base);
    z-index: 1;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.92);
    z-index: 99999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--white);
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity var(--t-fast);
}

.lightbox-close:hover { opacity: 1; }
.lightbox-close svg { width: 28px; height: 28px; }

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--r-md);
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    padding: 1rem;
    opacity: 0.7;
    transition: opacity var(--t-fast);
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-nav svg { width: 32px; height: 32px; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Distance Table */
.distance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.distance-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.distance-table td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.distance-table tr:last-child td { border-bottom: none; }

.distance-table tr:nth-child(even) td {
    background-color: var(--surface-warm);
}

/* How to Reach */
.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reach-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    transition: all var(--t-base);
}

.reach-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.reach-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--surface-muted);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reach-card-icon svg { width: 24px; height: 24px; }

.reach-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.reach-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}

.sidebar-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.sidebar-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* Nearby Attractions in Sidebar */
.nearby-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--t-fast);
}

.nearby-item:last-child { border-bottom: none; }

.nearby-item:hover { padding-left: 0.5rem; }

.nearby-item img {
    width: 56px;
    height: 56px;
    border-radius: var(--r-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.nearby-item-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.nearby-item-dist {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Tips List */
.tips-list {
    list-style: none;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tips-list li:last-child { border-bottom: none; }

.tips-list li svg,
.tips-list li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Map Container */
.map-container {
    height: 350px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Itinerary / Timeline ──────────────────────────────────── */
.itinerary-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.itinerary-tab {
    padding: 1rem 2rem;
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--t-base);
    background-color: var(--white);
}

.itinerary-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.itinerary-tab.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.timeline {
    position: relative;
    padding-left: 3rem;
    max-width: 800px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 11px;
    width: 2px;
    background-color: var(--border);
}

.timeline-node {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.timeline-node:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--primary);
    z-index: 1;
}

.timeline-node:first-child .timeline-dot {
    background-color: var(--primary);
}

.timeline-day {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Info Cards / Stats ────────────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ── Essentials Split Layout Redesign ─────────────────────── */
.essentials-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1350px;
    margin: 0 auto;
}

.essentials-side-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.essentials-center-media {
    position: relative;
    border-radius: 48px 16px 48px 16px; /* Organic leaf-matching curves */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 560px;
    transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.essentials-center-media:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(45, 95, 63, 0.12);
}

.essentials-center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.essentials-center-media:hover .essentials-center-img {
    transform: scale(1.05);
}

.essentials-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 46, 27, 0.85) 0%, rgba(18, 46, 27, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.essentials-media-label {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    text-align: left;
}

.essentials-media-label h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 0.5rem;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .essentials-split-layout {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .essentials-center-media {
        grid-column: span 2;
        order: -1;
        min-height: 380px;
        height: 380px;
        border-radius: var(--r-xl);
    }
    .essentials-side-column {
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .essentials-split-layout {
        grid-template-columns: 1fr;
    }
    .essentials-center-media {
        grid-column: span 1;
        height: 280px;
        min-height: 280px;
    }
}

.info-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 36px 12px 36px 12px; /* Leaf shape! */
    padding: 2rem;
    transition: all var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.info-card:hover {
    border-radius: 12px 36px 12px 36px; /* Flipped leaf morph! */
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 95, 63, 0.08);
    border-color: var(--primary-light);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--surface-muted);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.info-card:hover .info-card-icon {
    background-color: var(--primary);
    color: var(--white);
}

.info-card-icon svg { width: 24px; height: 24px; }

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ── Contact / Enquiry Form ────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-size: 0.92rem;
    color: var(--text-primary);
    background-color: var(--surface-warm);
    outline: none;
    transition: border-color var(--t-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--t-base);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Helpline Box */
.helpline-box {
    background-color: var(--surface-warm);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.helpline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.helpline-row:last-child { border-bottom: none; }

.helpline-row span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.helpline-row strong {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 700;
}

/* ── Parallax Footer & Newsletter ─────────────────────────── */
.parallax-footer {
    position: relative;
    color: var(--white);
    padding: 12rem var(--section-px) 3rem;
    overflow: hidden;
    z-index: 1;
}

.footer-parallax-bg {
    position: absolute;
    inset: -20% 0;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.footer-newsletter,
.footer-columns-wrap {
    position: relative;
    z-index: 2;
}

.parallax-footer .footer-overlay {
    position: absolute;
    inset: 0;
    /* Precise pixel stops: fades warm light #FAF8F4 completely within 90px, transitioning to high-contrast dark forest wash by 200px */
    background: linear-gradient(to bottom, #FAF8F4 0px, #FAF8F4 15px, rgba(250, 248, 244, 0) 90px, rgba(18, 30, 22, 0.82) 200px, rgba(11, 18, 13, 0.96) 75%, #080d0a 100%);
    z-index: 1;
}

.footer-newsletter {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 5.5rem auto;
}

.news-script-badge {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--secondary-light);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.footer-newsletter h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.news-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.news-form input {
    width: 100%;
    padding: 1.1rem 3.5rem 1.1rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    background-color: var(--white);
    outline: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-form button {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform var(--t-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-form button:hover {
    transform: translateY(-50%) translateX(2px) scale(1.05);
}

.footer-columns-wrap {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--t-fast);
    text-decoration: none;
}

.footer-col ul a:hover {
    color: var(--white);
    padding-left: 0.3rem;
}

.reach-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.reach-list li i,
.reach-list li svg {
    width: 14px;
    height: 14px;
    color: var(--secondary-light);
    flex-shrink: 0;
}

.reach-list li a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: color var(--t-fast);
}

.reach-list li a:hover {
    color: var(--white) !important;
    padding-left: 0 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--t-fast);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99998 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.open { display: flex; }

.modal-card {
    background-color: var(--white);
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 560px;
    padding: 2.5rem;
    position: relative;
    animation: modalIn 0.3s ease-in-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--text-muted);
    padding: 0.35rem;
    transition: color var(--t-fast);
}

.modal-close:hover { color: var(--text-primary); }

/* ── Page-Specific: About ──────────────────────────────────── */
.about-hero {
    position: relative;
    padding: calc(var(--nav-h) + 5rem) var(--section-px) 5rem;
    background-color: var(--primary-dark);
    background-image: url('../images/misty_sal_forest.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 46, 27, 0.8) 0%, rgba(18, 46, 27, 0.6) 100%);
    z-index: -1;
}

.about-hero h1 { 
    position: relative;
    z-index: 2;
    color: var(--white); 
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero p { 
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.9); 
    max-width: 620px; 
    margin: 0 auto; 
    font-size: 1.15rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Category hero background overrides */
.about-hero.plan-hero {
    background-image: url('../images/jharkhand_route_collage.webp');
}

.about-hero.plan-hero::before {
    background: linear-gradient(135deg, rgba(18, 46, 27, 0.85) 0%, rgba(18, 46, 27, 0.7) 100%);
}

.about-hero.culture-hero {
    background-image: url('../images/betla_forest.webp');
}

.about-hero.culture-hero::before {
    background: linear-gradient(135deg, rgba(18, 46, 27, 0.82) 0%, rgba(18, 46, 27, 0.65) 100%);
}

.about-hero.stay-eat-hero {
    background-image: url('../images/patratu_valley.webp');
}

.about-hero.stay-eat-hero::before {
    background: linear-gradient(135deg, rgba(18, 46, 27, 0.82) 0%, rgba(18, 46, 27, 0.65) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid img {
    border-radius: var(--r-xl);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Culture Cards */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culture-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-base);
}

.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.culture-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.culture-card-body {
    padding: 1.5rem;
}

.culture-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.culture-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ── Page-Specific: Gallery ────────────────────────────────── */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-page-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-page-item:hover img { transform: scale(1.06); }

.gallery-page-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: rgba(0,0,0,0.5);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform var(--t-base);
}

.gallery-page-item:hover .gallery-caption { transform: translateY(0); }

/* ── Season Cards ──────────────────────────────────────────── */
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.season-card {
    padding: 1.5rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background-color: var(--white);
    text-align: center;
}

.season-card.recommended {
    border-color: var(--primary);
    background-color: var(--surface-warm);
}

.season-card-months {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.season-card-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.season-card-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--r-full);
    text-transform: uppercase;
    background-color: var(--primary);
    color: var(--white);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

.fade-in { animation: fadeIn 0.5s ease-in-out both; }
.slide-up { animation: slideUp 0.5s ease-in-out both; }

/* Stagger children */
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.2s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.3s; }
.stagger > *:nth-child(7) { animation-delay: 0.35s; }
.stagger > *:nth-child(8) { animation-delay: 0.4s; }

/* ── Responsive Header / Navigation Adjustments ────────────── */
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo img {
        height: 38px !important;
    }
    
    .nav-menu {
        gap: 0.1rem;
    }
    
    .nav-menu .nav-link {
        padding: 0.4rem 0.55rem;
        font-size: 0.85rem;
    }
    
    .header-search {
        width: 110px;
        margin-right: 0.35rem;
        padding: 0.35rem 0.7rem;
    }
    
    .header-search:focus-within {
        width: 150px;
    }
    
    .nav-cta {
        margin-left: 0.35rem;
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 1201px) and (max-width: 1366px) {
    .nav-container {
        padding: 0 1.25rem;
    }
    
    .nav-logo img {
        height: 42px !important;
    }
    
    .nav-menu {
        gap: 0.2rem;
    }
    
    .nav-menu .nav-link {
        padding: 0.45rem 0.75rem;
        font-size: 0.90rem;
    }
    
    .header-search {
        width: 145px;
        margin-right: 0.5rem;
        padding: 0.4rem 0.8rem;
    }
    
    .header-search:focus-within {
        width: 190px;
    }
    
    .nav-cta {
        margin-left: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.84rem;
    }
}

@media (min-width: 1367px) and (max-width: 1440px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-menu .nav-link {
        padding: 0.48rem 0.95rem;
        font-size: 0.93rem;
    }
    
    .header-search {
        width: 170px;
        margin-right: 0.75rem;
    }
    
    .header-search:focus-within {
        width: 220px;
    }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .detail-main-grid { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-card-img { min-height: 280px; }
}

@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .nav-cta  { display: none; }
    .header-search { display: none !important; }
    .hamburger { display: flex; }

    .hero-split-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero-split-left {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-slider-controls {
        display: none !important;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 2rem;
        box-shadow: none;
        background-color: rgba(18, 30, 22, 0.6);
    }
    
    .hero-stats-inner {
        justify-content: center;
        gap: 3rem;
        margin: 0 auto;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: auto;
        grid-template-columns: 1fr;
    }

    :root {
        --section-px: 5%;
        --section-py: 4rem;
    }

    .about-grid { grid-template-columns: 1fr; }
    .about-grid img { height: 280px; }
}

@media (max-width: 768px) {
    :root {
        --section-px: 4%;
        --section-py: 3.5rem;
    }

    .dest-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1rem; }
    .category-card { padding: 1.5rem 1rem; }

    .hero { min-height: 90vh; }
    .hero-stats-inner { gap: 2rem; flex-wrap: wrap; }

    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-separator { width: 100%; height: 1px; }

    .form-row { grid-template-columns: 1fr; }

    .detail-hero { height: 340px; }
    .detail-hero-overlay { padding: 2rem var(--section-px); }

    .highlights-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .reach-grid { grid-template-columns: 1fr; }
    .season-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .category-grid { grid-template-columns: 1fr 1fr; }

    .highlights-grid { grid-template-columns: 1fr; }
    .season-grid { grid-template-columns: 1fr; }

    .section-header { margin-bottom: 2.5rem; }
    .section-title { font-size: 1.75rem; }

    .modal-card { padding: 1.75rem; }
}

/* ── Mega Menu & Search Additions ──────────────────────────── */
.nav-dropdown-menu-wide {
    display: block !important;
    width: min(960px, 95vw) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(12px) scale(0.96) !important;
    padding: 2rem !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: var(--r-xl) !important;
    background-color: var(--white) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    top: calc(100% + 4px);
    position: absolute;
    z-index: 100;
}

.nav-dropdown-static {
    position: static !important;
}

.nav-dropdown-static:hover .nav-dropdown-menu-wide,
.nav-dropdown:hover .nav-dropdown-menu-wide {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

.mega-menu-container {
    display: flex;
    gap: 2rem;
}

.mega-menu-featured {
    width: 200px;
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    height: 265px;
    text-align: left;
}

.mega-menu-featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform var(--t-slow);
}

.mega-menu-featured:hover img {
    transform: scale(1.04);
}

.mega-menu-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.mega-menu-featured-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.mega-menu-featured-content h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.mega-menu-featured-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.mega-menu-featured-content a {
    color: var(--secondary-light);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: all var(--t-fast);
}

.mega-menu-featured-content a:hover {
    color: var(--white);
}

.mega-menu-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.mega-menu-grid-categories {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem 1.25rem !important;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    padding: 0.35rem 0.5rem;
    border-radius: var(--r-md);
    transition: all var(--t-fast);
    white-space: nowrap;
}

.mega-menu-thumbnail {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 0.65rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
    transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.mega-menu-link:hover {
    color: var(--primary);
    background-color: var(--surface-muted);
    transform: translateX(4px);
}

.mega-menu-link:hover .mega-menu-thumbnail {
    transform: scale(1.1);
    border-color: var(--primary-light);
    box-shadow: 0 4px 10px rgba(45, 95, 63, 0.12);
}

.header-search {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--r-full);
    padding: 0.45rem 1.1rem;
    margin-right: 1.25rem;
    width: 200px;
    transition: all var(--t-base);
}

.header-search:focus-within {
    border-color: var(--primary-light);
    width: 260px;
    background-color: var(--white);
    box-shadow: 0 8px 30px rgba(45, 95, 63, 0.08);
}

.header-search:focus-within button i,
.header-search:focus-within button svg,
.header-search:focus-within button [data-lucide] {
    color: var(--primary) !important;
}

.header-search button i,
.header-search button svg,
.header-search button [data-lucide] {
    transition: color var(--t-fast);
}

.header-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.85rem;
    width: 100%;
    color: var(--text-primary);
}

.header-search button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Tab Switching Layouts */
.tab-content {
    animation: fadeIn 300ms ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Helpline box */
.helpline-box {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.helpline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--surface-muted);
    font-size: 0.9rem;
}

.helpline-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.helpline-row span {
    color: var(--text-secondary);
}

.helpline-row strong {
    color: var(--primary);
}

/* Editorial Overview Drop Cap */
.editorial-overview {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.editorial-overview::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    margin-right: 0.75rem;
    line-height: 0.95;
    color: var(--primary);
    text-transform: uppercase;
}

/* Tactile Active Tap Feedback on Mobile Menu Items */
.mobile-panel .nav-link:active,
.mobile-back-btn:active,
.panel-item-link:active,
.district-grid-item:active {
    transform: scale(0.97) !important;
}

/* ── Editorial Alternating Split Feature Sections ─────────── */
.split-feature-section {
    display: flex;
    min-height: 520px;
    background-color: #121E16;
    color: var(--white);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.split-feature-section.split-reverse {
    flex-direction: row-reverse;
}

.split-feature-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 6%;
    position: relative;
    z-index: 2;
    background-color: #111B14;
}

.split-feature-section:nth-of-type(even) .split-feature-content {
    background-color: #16241B;
}

.split-feature-watermark {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-feature-watermark svg {
    width: 80%;
    height: 80%;
    opacity: 0.6;
}

.split-feature-inner {
    position: relative;
    z-index: 2;
    max-width: 480px;
    text-align: center;
    margin: 0 auto;
}

.split-script-badge {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--secondary-light);
    margin-bottom: 0.2rem;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.split-feature-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.split-feature-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.split-feature-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary-light);
    text-decoration: none;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--secondary-light);
    transition: all var(--t-fast);
}

.split-feature-btn:hover {
    color: var(--white);
    border-bottom-color: var(--white);
    transform: translateY(-1px);
}

.split-feature-media {
    flex: 1;
    position: relative;
    min-height: 420px;
    border-radius: 48px 16px 48px 16px; /* Organic leaf-matching curves */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.split-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-feature-section:hover .split-feature-media img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .split-feature-section,
    .split-feature-section.split-reverse {
        flex-direction: column !important;
    }
    
    .split-feature-content {
        padding: 4rem 1.5rem;
    }
    
    .split-feature-media {
        height: 300px;
        min-height: auto;
    }
}

/* ── Why Choose Us / We Offer the Best ─────────────────────── */
.why-choose-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.why-choose-media {
    position: relative;
    overflow: hidden;
    border-radius: 48px 16px 48px 16px; /* Organic leaf-matching curves */
    height: 580px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.parallax-scroll-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-15%);
    transition: transform 0.15s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.why-choose-content {
    text-align: left;
}

.why-badge-script {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.why-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
}

.why-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform var(--t-fast);
}

.why-feature-item:hover {
    transform: translateX(4px);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(45, 95, 63, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--t-fast);
}

.why-feature-item:hover .why-feature-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.why-feature-icon i,
.why-feature-icon svg {
    width: 22px;
    height: 22px;
}

.why-feature-body h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.why-feature-body p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Scroll reveal triggers */
.scroll-reveal-section .why-choose-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-section.revealed .why-choose-content {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-section .why-feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-section.revealed .why-feature-item:nth-child(1) { transition-delay: 100ms; }
.scroll-reveal-section.revealed .why-feature-item:nth-child(2) { transition-delay: 200ms; }
.scroll-reveal-section.revealed .why-feature-item:nth-child(3) { transition-delay: 300ms; }
.scroll-reveal-section.revealed .why-feature-item:nth-child(4) { transition-delay: 400ms; }
.scroll-reveal-section.revealed .why-feature-item:nth-child(5) { transition-delay: 500ms; }
.scroll-reveal-section.revealed .why-feature-item:nth-child(6) { transition-delay: 600ms; }

.scroll-reveal-section.revealed .why-feature-item {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-media {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Recent Gallery ────────────────────────────────────────── */
.gallery-badge-script {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
}

.recent-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.3fr 1.2fr 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    min-width: 0; /* Prevent CSS Grid column expansion */
}

.col-height-md {
    height: 320px;
}

.col-height-lg {
    height: 480px;
}

.col-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.gallery-item.item-height-sm {
    height: 228px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.gallery-item-hover {
    position: absolute;
    inset: 0;
    background-color: rgba(45, 95, 63, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t-base);
    z-index: 2;
}

.gallery-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform var(--t-base);
    box-shadow: var(--shadow-md);
}

.gallery-item-icon i,
.gallery-item-icon svg {
    width: 24px;
    height: 24px;
}

/* Hover States */
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-item-icon {
    transform: scale(1);
}

/* Responsive configurations */
@media (max-width: 1024px) {
    .recent-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .col-height-md,
    .col-height-lg,
    .item-height-sm {
        height: 250px;
    }
    .col-stack {
        display: contents;
    }
    .gallery-col {
        display: contents;
    }
}

@media (max-width: 600px) {
    .recent-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Plan Your Trip With Us Services ─────────────────────── */
.service-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-media-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.collage-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-pill {
    border-radius: 200px;
    height: 480px;
}

.collage-leaf-top {
    border-radius: 120px 120px 0 120px;
    height: 228px;
}

.collage-leaf-bottom {
    border-radius: 120px 0 120px 120px;
    height: 228px;
}

.collage-right-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hover States on Collage */
.collage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collage-item:hover img {
    transform: scale(1.06);
}

.service-text-content {
    text-align: left;
}

.service-badge-script {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.service-row-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    transition: transform var(--t-fast);
}

.service-row-item:hover {
    transform: translateX(4px);
}

.service-row-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0d9488;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-fast), background-color var(--t-fast);
}

.service-row-item:hover .service-row-icon {
    background-color: var(--accent);
    transform: scale(1.1);
}

.service-row-icon i,
.service-row-icon svg {
    width: 22px;
    height: 22px;
}

.service-row-body h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.service-row-body p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.btn-dark-green {
    background-color: #0c2d1c;
    color: var(--white);
    border: 1px solid #0c2d1c;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-dark-green:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-pill {
    border-radius: 50px;
}

@media (max-width: 1024px) {
    .service-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .service-media-collage {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ── Organic Tour Categories ────────────────────────────── */
.cat-badge-script {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.cat-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
}

.organic-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.organic-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    
    /* Scroll Reveal Initial State */
    opacity: 0;
    transform: translateY(30px);
    
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform var(--t-base) cubic-bezier(0.16, 1, 0.3, 1),
                color var(--t-fast);
}

.organic-category-grid.is-visible .organic-cat-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entry transitions */
.organic-category-grid.is-visible .organic-cat-card:nth-child(1) { transition-delay: 0.05s; }
.organic-category-grid.is-visible .organic-cat-card:nth-child(2) { transition-delay: 0.15s; }
.organic-category-grid.is-visible .organic-cat-card:nth-child(3) { transition-delay: 0.25s; }
.organic-category-grid.is-visible .organic-cat-card:nth-child(4) { transition-delay: 0.35s; }
.organic-category-grid.is-visible .organic-cat-card:nth-child(5) { transition-delay: 0.45s; }

.organic-cat-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 36px 12px 36px 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    transition: border-radius var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.organic-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.organic-cat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    transition: color var(--t-fast);
}

.organic-cat-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--t-fast);
}

/* Hover States */
.organic-cat-card:hover {
    transform: translateY(-4px);
}

.organic-cat-card:hover .organic-cat-img {
    border-radius: 12px 36px 12px 36px;
    box-shadow: var(--shadow-md);
}

.organic-cat-card:hover .organic-cat-img img {
    transform: scale(1.08);
}

.organic-cat-card:hover h3 {
    color: var(--primary);
}

.organic-cat-card:hover .organic-cat-link {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .organic-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .organic-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .organic-category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-left {
    text-align: left;
}

.test-badge-script {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.test-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.testimonial-slides-container {
    position: relative;
    min-height: 220px;
}

.test-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.test-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.test-quote {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.test-author-info {
    margin-bottom: 2.5rem;
}

.test-author-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.test-author-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
}

.test-stars {
    display: flex;
    gap: 0.25rem;
}

.star-filled {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    fill: #f59e0b;
}

.testimonial-avatars {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-top: 2rem;
}

.avatar-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color var(--t-fast), transform var(--t-fast);
    box-shadow: var(--shadow-sm);
}

.avatar-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-dot.active {
    border-color: var(--accent);
    transform: scale(1.1);
}

.scalloped-frame-container {
    position: relative;
    height: 480px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.scalloped-main-frame {
    position: relative;
    width: 85%;
    height: 450px;
    overflow: hidden;
    border: 8px solid var(--white);
    z-index: 2;
    box-shadow: 0 15px 45px rgba(18, 46, 27, 0.1);
    border-radius: 160px 40px 160px 40px; /* High-end asymmetric leaf shape */
    animation: floatMainLeaf 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatMainLeaf {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scalloped-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.scalloped-inset-frame {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    height: 240px;
    overflow: hidden;
    border: 6px solid var(--white);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(18, 46, 27, 0.15);
    border-radius: 30px 100px 30px 100px; /* Reversed smaller leaf shape */
    animation: floatInsetLeaf 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatInsetLeaf {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-53%) translateX(6px); }
}

.scalloped-inset-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .scalloped-frame-container {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    .scalloped-main-frame {
        height: 350px;
    }
    .scalloped-inset-frame {
        height: 180px;
    }
}

/* ── Staggered Circular Stats ────────────────────────────── */
@keyframes orbitRotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-stats-circle-section {
    position: relative;
    background: linear-gradient(180deg, #FAF8F4 0%, #F5F1E9 100%);
    padding: 8rem 0 7rem 0; /* extra top padding to give room to the floating search filter */
    overflow: hidden;
    z-index: 1;
}

.circle-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 3rem;
}

.circle-stat-wrapper {
    position: relative;
    width: 230px;
    height: 230px;
    background-color: var(--white);
    border: 5px solid #FAF8F4; /* Thick warm border for premium feel */
    box-shadow: 0 10px 30px rgba(45, 95, 63, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    overflow: hidden;
    
    /* Creative Organic Leaf Shape! */
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    
    /* Scroll Reveal Initial State */
    opacity: 0;
    transform: translateY(calc(var(--base-y) + 30px)) scale(0.9);
    
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                border-color var(--t-base),
                background-color var(--t-base),
                box-shadow var(--t-base);
}

.reveal-stagger.is-visible .circle-stat-wrapper {
    opacity: 1;
    transform: translateY(var(--base-y)) scale(1);
}

/* Stagger delays for circles */
.reveal-stagger.is-visible .circle-stat-wrapper:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible .circle-stat-wrapper:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible .circle-stat-wrapper:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible .circle-stat-wrapper:nth-child(4) { transition-delay: 0.35s; }

.stat-card-sohrai-bg {
    position: absolute;
    inset: 18%;
    color: var(--primary);
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.circle-stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary); /* Deep brand green number */
    line-height: 1.1;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.circle-stat-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    max-width: 140px;
    position: relative;
    z-index: 2;
}

/* Staggered Vertical Offsets */
.stat-pos-1 { --base-y: 40px; --hover-y: 30px; }
.stat-pos-2 { --base-y: -20px; --hover-y: -30px; }
.stat-pos-3 { --base-y: 40px; --hover-y: 30px; }
.stat-pos-4 { --base-y: -20px; --hover-y: -30px; }

/* Interactive Hover States */
.circle-stat-wrapper:hover {
    /* Morph to opposite organic leaf shape! */
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    border-color: var(--primary-light);
    transform: translateY(var(--hover-y)) scale(1.04) rotate(2deg) !important;
    box-shadow: 0 20px 45px rgba(45, 95, 63, 0.14);
    background-color: var(--white);
}

.circle-stat-wrapper:hover .circle-stat-number {
    transform: scale(1.08);
    color: var(--secondary); /* Terracotta highlight on hover */
}

.circle-stat-wrapper:hover .stat-card-sohrai-bg {
    opacity: 0.16;
    transform: scale(1.15) rotate(-8deg);
}

/* Background Vector Placement (Jharkhand-themed) */
.stats-vector-tribal-sun {
    position: absolute;
    left: 4%;
    top: 15%;
    width: 90px;
    height: 90px;
    pointer-events: none;
    animation: rotateSlow 40s linear infinite;
}

.stats-vector-sohrai-bird {
    position: absolute;
    right: 8%;
    top: 45%;
    width: 95px;
    height: 95px;
    pointer-events: none;
    animation: floatSlow 10s ease-in-out infinite alternate;
}

.stats-vector-sohrai-elephant {
    position: absolute;
    right: 5%;
    top: 12%;
    width: 120px;
    height: 120px;
    pointer-events: none;
    animation: floatSlow 12s ease-in-out infinite alternate;
}

.stats-vector-sohrai-tree {
    position: absolute;
    left: 2%;
    bottom: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
    animation: swaySlow 8s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
    .stats-vector-tribal-sun,
    .stats-vector-sohrai-bird,
    .stats-vector-sohrai-elephant,
    .stats-vector-sohrai-tree {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-stats-circle-section {
        padding: 5rem 0;
    }
    
    .circle-stats-grid {
        gap: 2rem;
    }
    
    .stat-pos-1, .stat-pos-2, .stat-pos-3, .stat-pos-4 {
        transform: none;
    }
    
    .stat-pos-1:hover, .stat-pos-2:hover, .stat-pos-3:hover, .stat-pos-4:hover {
        transform: translateY(-5px);
    }
    
    .stats-vector-balloon-1, .stats-vector-balloon-2, .stats-vector-anchor, .stats-vector-palm {
        display: none;
    }
}


/* ── Jharkhand Asymmetric Grid Tours Section ────────────────── */
.signature-tours-section {
    background: radial-gradient(circle at top, #EBF5F0 0%, #FAF9F6 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.signature-tours-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1440 800'%3E%3Cpath d='M-100,200 Q200,100 400,250 T900,100 T1500,300' fill='none' stroke='rgba(45,95,63,0.04)' stroke-width='3'/%3E%3Cpath d='M-100,300 Q150,150 450,350 T1000,150 T1500,450' fill='none' stroke='rgba(45,95,63,0.03)' stroke-width='2.5'/%3E%3Cpath d='M-100,400 Q100,200 500,450 T1100,200 T1500,600' fill='none' stroke='rgba(45,95,63,0.03)' stroke-width='2'/%3E%3Cpath d='M-100,500 Q50,250 550,550 T1200,250 T1500,700' fill='none' stroke='rgba(45,95,63,0.02)' stroke-width='1.5'/%3E%3Cpath d='M1000,700 Q1200,550 1400,750' fill='none' stroke='rgba(45,95,63,0.04)' stroke-width='3'/%3E%3Cpath d='M900,750 Q1150,600 1400,800' fill='none' stroke='rgba(45,95,63,0.03)' stroke-width='2'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    opacity: 0.8;
}

.signature-tours-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.signature-tours-header .subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.signature-tours-header .title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.15;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

.signature-card {
    position: relative;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    
    /* Scroll Reveal Initial State */
    opacity: 0;
    transform: translateY(30px);
    
    transition: opacity 0.8s var(--ease),
                transform var(--t-base), 
                border-radius 450ms var(--ease),
                box-shadow var(--t-base);
}

.signature-grid.is-visible .signature-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entry transitions */
.signature-grid.is-visible .signature-card:nth-child(1) { transition-delay: 0.05s; }
.signature-grid.is-visible .signature-card:nth-child(2) { transition-delay: 0.15s; }
.signature-grid.is-visible .signature-card:nth-child(3) { transition-delay: 0.25s; }
.signature-grid.is-visible .signature-card:nth-child(4) { transition-delay: 0.35s; }
.signature-grid.is-visible .signature-card:nth-child(5) { transition-delay: 0.45s; }
.signature-grid.is-visible .signature-card:nth-child(6) { transition-delay: 0.55s; }

.signature-card.col-span-2 {
    grid-column: span 2;
}



.signature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.signature-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 30, 20, 0.9) 0%, rgba(10, 30, 20, 0.25) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.signature-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
    z-index: 2;
    transition: transform var(--t-base) ease;
}

.signature-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: var(--white);
    font-weight: 500;
}

.signature-card-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.signature-card-content p span {
    font-size: 0.8rem;
    opacity: 0.75;
}

.signature-card-btn {
    display: inline-block;
    background-color: #E8F5F0;
    color: var(--primary-dark);
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color var(--t-fast) ease, transform var(--t-fast) ease;
}

.signature-card-btn:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

/* Hover effects */
.signature-card:hover {
    transform: translateY(-6px);
    border-radius: 16px 16px 80px 16px;
    box-shadow: 0 20px 40px rgba(10, 30, 20, 0.12);
}

.signature-card:hover .signature-card-img {
    transform: scale(1.06);
}

.signature-card:hover .signature-card-overlay {
    background: linear-gradient(to top, rgba(10, 30, 20, 0.95) 0%, rgba(10, 30, 20, 0.35) 60%, transparent 100%);
}

.signature-action {
    text-align: center;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.btn-signature-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 0.9rem 2.25rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(10, 30, 20, 0.15);
    transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, opacity var(--t-fast) ease;
}

.btn-signature-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 30, 20, 0.25);
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .signature-card.col-span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .signature-tours-header .title {
        font-size: 2.25rem;
    }
    .signature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .signature-card.col-span-2 {
        grid-column: span 1;
    }
    .signature-card {
        height: 320px;
    }
}


/* ── Jharkhand Guides Section ────────────────── */
.guides-section {
    background: radial-gradient(circle at top, #FAF9F6 0%, #EBF5F0 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.guides-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1440 800'%3E%3Cpath d='M-100,200 Q200,100 400,250 T900,100 T1500,300' fill='none' stroke='rgba(45,95,63,0.04)' stroke-width='3'/%3E%3Cpath d='M-100,300 Q150,150 450,350 T1000,150 T1500,450' fill='none' stroke='rgba(45,95,63,0.03)' stroke-width='2.5'/%3E%3Cpath d='M-100,400 Q100,200 500,450 T1100,200 T1500,600' fill='none' stroke='rgba(45,95,63,0.03)' stroke-width='2'/%3E%3Cpath d='M-100,500 Q50,250 550,550 T1200,250 T1500,700' fill='none' stroke='rgba(45,95,63,0.02)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    opacity: 0.8;
}

.guides-split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.guides-left-content {
    flex: 0 0 35%;
    max-width: 35%;
}

.guides-left-content .subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.guides-left-content .title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-dark);
    line-height: 1.15;
    margin: 0 0 1.25rem 0;
}

.guides-left-content .desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-guides-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(10, 30, 20, 0.15);
    transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, opacity var(--t-fast) ease;
}

.btn-guides-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 30, 20, 0.25);
    opacity: 0.95;
}

.guides-stamp-decor {
    margin-top: 3.5rem;
    width: 90px;
    height: 90px;
    opacity: 0.2;
}

.guides-right-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.guide-card {
    position: relative;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    
    /* Scroll Reveal Initial State */
    opacity: 0;
    transform: translateY(30px);
    
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform var(--t-base) cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow var(--t-base) ease;
}

.guides-right-cards.is-visible .guide-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entry transitions */
.guides-right-cards.is-visible .guide-card:nth-child(1) { transition-delay: 0.05s; }
.guides-right-cards.is-visible .guide-card:nth-child(2) { transition-delay: 0.15s; }
.guides-right-cards.is-visible .guide-card:nth-child(3) { transition-delay: 0.25s; }

.guide-card.leaf-shape {
    border-radius: 16px 16px 80px 16px;
}

.guide-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.guide-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 30, 20, 0.85) 0%, rgba(10, 30, 20, 0.2) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.guide-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
    z-index: 2;
}

.guide-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 0.25rem 0;
    color: var(--white);
    font-weight: 500;
}

.guide-card-content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.guide-card-socials {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    z-index: 3;
    transform: translateX(15px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.guide-card-social-btn {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.guide-card-social-btn svg,
.guide-card-social-btn [data-lucide] {
    width: 14px;
    height: 14px;
}


.guide-card-social-btn:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

/* Hover effects */
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 30, 20, 0.12);
}

.guide-card:hover .guide-card-img {
    transform: scale(1.06);
}

.guide-card:hover .guide-card-overlay {
    background: linear-gradient(to top, rgba(10, 30, 20, 0.9) 0%, rgba(10, 30, 20, 0.3) 60%, transparent 100%);
}

.guide-card:hover .guide-card-socials {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .guides-split-container {
        flex-direction: column;
        gap: 3rem;
    }
    .guides-left-content {
        flex: unset;
        max-width: 100%;
        text-align: center;
    }
    .guides-stamp-decor {
        display: none;
    }
}

@media (max-width: 768px) {
    .guides-left-content .title {
        font-size: 2.25rem;
    }
    .guides-right-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .guide-card {
        height: 320px;
    }
}


/* ── Jharkhand Parallax Reviews Section ─────────────────────── */
.parallax-reviews-section {
    position: relative;
    padding: 8rem 0;
    overflow: visible;
    background-color: var(--primary-dark);
}

.parallax-reviews-bg {
    position: absolute;
    inset: -20% 0;
    height: 140%;
    background-image: url('../images/patratu_valley.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.parallax-reviews-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 46, 27, 0.85); /* Deep forest green overlay */
    z-index: 1;
}

.parallax-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.reviews-media-col {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.reviews-cutout-img {
    max-width: 105%;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: -8.5rem; /* Extends past bottom boundary for premium 3D layout! */
    z-index: 5;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.reviews-content-col {
    color: var(--white);
}

.reviews-badge {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: #CBE25D; /* Light neon green style matching screenshot */
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 1rem;
}

.reviews-section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin: 0 0 2.5rem 0;
    line-height: 1.15;
}

.reviews-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.review-tab-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all var(--t-fast) ease;
}

.review-tab-btn:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
}

.review-tab-btn.active {
    background-color: #CBE25D; /* Neon green matching active tab */
    border-color: #CBE25D;
    color: var(--primary-dark);
}

.testimonial-card-body {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-stars {
    color: #F3C65F; /* Warm gold stars */
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 0 1rem 0;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.initials-avatar {
    width: 48px;
    height: 48px;
    background-color: #D4804E; /* Terracotta secondary-light theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.author-info p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.15rem 0 0 0;
}

.reviews-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.btn-reviews-gallery {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #CBE25D;
    color: var(--primary-dark);
    padding: 0.85rem 2.25rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, opacity var(--t-fast) ease;
}

.btn-reviews-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 226, 93, 0.35);
    opacity: 0.95;
}

.reviews-badge-decor {
    width: 100px;
    height: 100px;
}

@media (max-width: 1024px) {
    .parallax-reviews-section {
        padding: 6rem 0;
    }
    .parallax-reviews-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .reviews-media-col {
        height: 350px;
        align-items: center;
    }
    .reviews-cutout-img {
        position: relative;
        bottom: 0;
        max-height: 100%;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .reviews-section-title {
        font-size: 2.25rem;
    }
    .testimonial-card-body {
        padding: 1.5rem;
    }
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Premium Button Icons & Testimonials Hover Zoom ──────── */
.btn i, .btn svg, 
.btn-pill i, .btn-pill svg, 
.btn-signature-explore i, .btn-signature-explore svg, 
.btn-guides-action i, .btn-guides-action svg, 
.btn-reviews-gallery i, .btn-reviews-gallery svg {
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-fast) ease;
}

/* Right align arrow icons specifically */
.btn-signature-explore i, .btn-signature-explore svg,
.dest-card-action i, .dest-card-action svg {
    margin-right: 0;
    margin-left: 0.5rem;
}

.btn:hover i, .btn:hover svg, 
.btn-pill:hover i, .btn-pill:hover svg, 
.btn-signature-explore:hover i, .btn-signature-explore:hover svg, 
.btn-guides-action:hover i, .btn-guides-action:hover svg, 
.btn-reviews-gallery:hover i, .btn-reviews-gallery:hover svg {
    transform: translateX(3px); /* Interactive nudge on hover */
}

/* Testimonial Images Hover Zoom */
.scalloped-main-frame img {
    transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-in-out !important;
}
.scalloped-main-frame:hover img {
    transform: scale(1.06);
}

.scalloped-inset-frame img {
    transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-in-out !important;
}
.scalloped-inset-frame:hover img {
    transform: scale(1.06);
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .cta-section,
    .filter-bar, .hero-actions, .hamburger,
    .lightbox, .modal-overlay { display: none !important; }

    body { color: #000; background: #fff; }
    .section { padding: 2rem 0; }
    .dest-card, .info-card { break-inside: avoid; }
}

/* ── Premium Video Lightbox Modal ── */
.video-modal-overlay {
    backdrop-filter: blur(10px);
}

.video-modal-container {
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Video Card Premium Hover Overlay ── */
.video-showcase-card {
    transition: transform var(--t-base) cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--t-base) ease;
}

.video-showcase-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.video-showcase-card:hover .video-card-thumb img {
    transform: scale(1.08);
}

.video-showcase-card:hover .play-btn-circle {
    transform: scale(1.15) rotate(15deg);
    background-color: var(--secondary) !important;
    color: #000000 !important;
}

/* ── Custom video section styling ── */
.video-preview-banner {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform var(--t-base) cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--t-base) ease;
    margin-bottom: 2rem;
}

.video-preview-banner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-preview-banner:hover .video-preview-overlay-play {
    transform: scale(1.1);
    background: var(--secondary) !important;
    color: #000000 !important;
}

.video-preview-banner:hover img {
    transform: scale(1.04);
}

/* ── Destination Video Play Indicator Overlay ── */
.dest-video-play-indicator {
    transition: transform var(--t-fast) cubic-bezier(0.16, 1, 0.3, 1), background-color var(--t-fast) ease, color var(--t-fast) ease;
}

.dest-video-play-indicator:hover {
    transform: scale(1.15) rotate(15deg) !important;
    background-color: var(--secondary) !important;
    color: #000000 !important;
}

/* ── Scroll to Top Button ── */
#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    pointer-events: none;
}

#scrollToTopBtn.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
    pointer-events: auto;
}

#scrollToTopBtn:hover {
    background-color: var(--secondary) !important;
    color: #000000 !important;
    transform: scale(1.1) translateY(-2px) !important;
    box-shadow: var(--shadow-lg) !important;
}

/* ── Tribal Background Decorations ── */
.tribal-bg-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    opacity: 0.45;
}

.decor-item {
    position: absolute;
    color: rgba(45, 95, 63, 0.05);
    transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.decor-sun {
    top: 12%;
    left: 2%;
    width: 90px;
    height: 90px;
    animation: rotateSlow 40s linear infinite;
}

.decor-leaf {
    bottom: 8%;
    left: 1.5%;
    width: 100px;
    height: 150px;
    animation: swaySlow 8s ease-in-out infinite alternate;
}

.decor-elephant {
    top: 18%;
    right: 3%;
    width: 120px;
    height: 100px;
    animation: floatSlow 12s ease-in-out infinite alternate;
}

.decor-deer {
    bottom: 12%;
    right: 2%;
    width: 100px;
    height: 100px;
    animation: floatSlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes swaySlow {
    from { transform: rotate(-5deg); }
    to { transform: rotate(5deg); }
}

@keyframes floatSlow {
    from { transform: translateY(0px) rotate(-3deg); }
    to { transform: translateY(12px) rotate(3deg); }
}



