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

/* ==========================================
   1. DESIGN SYSTEM & ROOT VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --primary: #0A2A1B;
    /* Deep Jungle Green */
    --primary-rgb: 10, 42, 27;
    --secondary: #F5A623;
    /* Golden Yellow */
    --secondary-rgb: 245, 166, 35;
    --accent: #FF5722;
    /* Royal Orange */
    --accent-rgb: 255, 87, 34;

    --bg-light: #F7FAF8;
    --bg-dark: #05140D;
    --card-light: rgba(255, 255, 255, 0.45);
    --card-dark: rgba(10, 42, 27, 0.45);

    --text-light: #2D3E35;
    --text-dark: #E2ECE6;
    --text-muted-light: #62756B;
    --text-muted-dark: #A5BCAE;

    --border-light: rgba(255, 255, 255, 0.3);
    --border-dark: rgba(255, 255, 255, 0.08);

    /* Active values dynamic (default Light, toggled by JS) */
    --bg-primary: var(--bg-light);
    --bg-sec: #ffffff;
    --text-main: var(--text-light);
    --text-muted: var(--text-muted-light);
    --card-bg: var(--card-light);
    --card-border: var(--border-light);
    --shadow: 0 8px 32px 0 rgba(10, 42, 27, 0.08);
    --glass-blur: blur(12px);

    /* Sunset Gradient */
    --sunset-gradient: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    --jungle-gradient: linear-gradient(135deg, #0A2A1B 0%, #155E3B 100%);
    --luxury-gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;

    /* Timing & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Variables override */
[data-theme="dark"] {
    --bg-primary: var(--bg-dark);
    --bg-sec: #0A1E15;
    --text-main: var(--text-dark);
    --text-muted: var(--text-muted-dark);
    --card-bg: var(--card-dark);
    --card-border: var(--border-dark);
    --shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
    /* overflow-x: hidden removed — it breaks position: sticky/fixed on children */
    /* Instead use a clipping wrapper if needed */
    padding-top: 110px;
    /* compensate for fixed sticky-top-bar height (~40px bar + 70px nav) */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Premium Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 2px solid var(--bg-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ==========================================
   2. REUSABLE PREMIUM UI COMPONENTS
   ========================================== */

/* Glassmorphism Card Base */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 166, 35, 0.4);
}

/* Luxury Gradient Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background: var(--sunset-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-smooth);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-secondary-outline:hover {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    transform: translateY(-2px);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

@media (max-width: 1024px) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

/* ==========================================
   3. GLOBAL HEADER & STICKY NAVIGATION
   ========================================== */
.top-announcement {
    background: var(--jungle-gradient);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-dark);
}

.marquee-container {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: inline-block;
    padding-right: 50px;
    font-weight: 500;
}

.marquee-item span {
    color: var(--secondary);
    margin-right: 5px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ===== FIXED STICKY TOP BAR WRAPPER ===== */
.sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    max-width: 100vw;
    /* overflow:visible so hamburger button z-index is not clipped */
    overflow: visible;
}

/* Hide marquee on scroll via JS .bar-hidden class */
.sticky-top-bar .top-announcement {
    transition: max-height 0.35s ease, opacity 0.3s ease;
    max-height: 45px;
    opacity: 1;
    overflow: hidden;
}

.sticky-top-bar.scrolled .top-announcement {
    max-height: 0;
    opacity: 0;
}

header.navbar-main {
    /* position managed by parent .sticky-top-bar */
    position: relative;
    background: rgba(var(--primary-rgb), 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
    padding: 18px 0;
}

header.navbar-main.shrink {
    padding: 10px 0;
    background: rgba(var(--primary-rgb), 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* anchor for tiger-mascot absolute positioning */
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.logo-link span {
    color: var(--secondary);
}

.logo-img {
    height: 45px;
    width: auto;
}



/* ══════════════════════════════════════════════════
   CINEMATIC FULL-SCREEN TIGER OVERLAY SYSTEM
   GPU-accelerated, 60fps, fixed viewport, pointer-events disabled
   ══════════════════════════════════════════════════ */

#tigerOverlay {
    position: fixed;
    bottom: 18vh;
    left: 0;
    width: 100vw;
    height: 160px;
    z-index: 99999;
    /* overlay above everything, even modals and admin headers */
    pointer-events: none;
    overflow: visible;
    display: none;
    /* Controlled by JS trigger */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#tigerOverlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

#tigerRig {
    position: absolute;
    width: 210px;
    height: 110px;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Horizontal animation classes triggered dynamically */
#tigerOverlay.run-lr #tigerRig {
    animation: tigerTraverseLR 4.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

#tigerOverlay.run-rl #tigerRig {
    animation: tigerTraverseRL 4.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

#tigerOverlayImg {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    will-change: transform, filter;
    /* Soft premium drop shadow + realism settings */
    filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.4));
}

#tigerOverlay.active #tigerOverlayImg {
    animation: tigerLeapLoop 0.9s ease-in-out infinite;
}

/* Faint ground shadow following the tiger */
#tigerGndShadow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 12px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28) 0%, transparent 70%);
    border-radius: 50%;
    will-change: transform, opacity;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#tigerOverlay.active #tigerGndShadow {
    animation: tigerShadowLoop 0.9s ease-in-out infinite;
}

/* Dust particles trailing the landing spots */
.tof-particles {
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 120px;
    height: 20px;
    pointer-events: none;
    overflow: visible;
}

.tof-p {
    position: absolute;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(210, 185, 135, 0.5);
    /* Sand/dirt colored */
    opacity: 0;
    will-change: transform, opacity;
}

#tigerOverlay.active .tof-p.p1 {
    animation: puff 0.9s 0.0s infinite;
}

#tigerOverlay.active .tof-p.p2 {
    animation: puff 0.9s 0.18s infinite;
}

#tigerOverlay.active .tof-p.p3 {
    animation: puff 0.9s 0.36s infinite;
}

#tigerOverlay.active .tof-p.p4 {
    animation: puff 0.9s 0.54s infinite;
}

#tigerOverlay.active .tof-p.p5 {
    animation: puff 0.9s 0.72s infinite;
}

/* ── KEYFRAMES ─────────────────────────────────── */

/* Horizontal Traverse: Left to Right */
@keyframes tigerTraverseLR {
    0% {
        transform: translate3d(-260px, 0, 0) scaleX(1);
    }

    100% {
        transform: translate3d(calc(100vw + 260px), 0, 0) scaleX(1);
    }
}

/* Horizontal Traverse: Right to Left (scaled to face left) */
@keyframes tigerTraverseRL {
    0% {
        transform: translate3d(calc(100vw + 260px), 0, 0) scaleX(-1);
    }

    100% {
        transform: translate3d(-260px, 0, 0) scaleX(-1);
    }
}

/* Vertical Gallop & Body Dynamics */
@keyframes tigerLeapLoop {

    0%,
    100% {
        /* Compression at landing */
        transform: translate3d(0, 0px, 0) scaleY(0.85) scaleX(1.05) rotate(0deg);
        filter: blur(0px) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45));
    }

    15% {
        /* Wind up right before push-off */
        transform: translate3d(0, 3px, 0) scaleY(0.82) scaleX(1.08) rotate(-3deg);
        filter: blur(0px) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    }

    45% {
        /* Apex of the leap (Stretched, leaning forward, blurred) */
        transform: translate3d(0, -68px, 0) scaleY(1.04) scaleX(0.96) rotate(6deg);
        filter: blur(1.5px) drop-shadow(0 24px 20px rgba(0, 0, 0, 0.3));
    }

    75% {
        /* Heading back down (Diving rotation) */
        transform: translate3d(0, -28px, 0) scaleY(1.01) scaleX(0.99) rotate(-4deg);
        filter: blur(1px) drop-shadow(0 14px 12px rgba(0, 0, 0, 0.38));
    }

    90% {
        /* Touchdown compression */
        transform: translate3d(0, 0px, 0) scaleY(0.86) scaleX(1.04) rotate(-1deg);
        filter: blur(0px) drop-shadow(0 5px 7px rgba(0, 0, 0, 0.43));
    }
}

/* Shadow loop matching vertical leaps */
@keyframes tigerShadowLoop {

    0%,
    90%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.48;
    }

    45% {
        transform: translateX(-50%) scale(0.48);
        opacity: 0.12;
    }
}

/* Dirt puff animation */
@keyframes puff {

    0%,
    85% {
        transform: translate3d(0, 0, 0) scale(0.4);
        opacity: 0;
    }

    87% {
        opacity: 0.75;
    }

    100% {
        transform: translate3d(-34px, -24px, 0) scale(2.2);
        opacity: 0;
    }
}

/* ── RESPONSIVE ADAPTATIONS ────────────────────── */

/* Desktop Extra Large default width is 210px */

/* Tablet & Smaller Screens */
@media (max-width: 991px) {
    #tigerOverlay {
        bottom: 14vh;
        height: 120px;
    }

    #tigerRig {
        width: 160px;
        height: 80px;
    }

    #tigerOverlay.run-lr #tigerRig {
        animation: tigerTraverseLR-Tablet 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    #tigerOverlay.run-rl #tigerRig {
        animation: tigerTraverseRL-Tablet 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    #tigerOverlay.active #tigerOverlayImg {
        animation: tigerLeapLoopTablet 0.9s ease-in-out infinite;
    }

    #tigerGndShadow {
        width: 100px;
        bottom: -10px;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    #tigerOverlay {
        bottom: 12vh;
        height: 90px;
    }

    #tigerRig {
        width: 115px;
        height: 60px;
    }

    #tigerOverlay.run-lr #tigerRig {
        animation: tigerTraverseLR-Mobile 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    #tigerOverlay.run-rl #tigerRig {
        animation: tigerTraverseRL-Mobile 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    #tigerOverlay.active #tigerOverlayImg {
        animation: tigerLeapLoopMobile 0.85s ease-in-out infinite;
    }

    #tigerGndShadow {
        width: 75px;
        bottom: -8px;
    }
}

/* Lower Height leaping cycles for smaller viewports */
@keyframes tigerLeapLoopTablet {

    0%,
    100% {
        transform: translate3d(0, 0px, 0) scaleY(0.85) scaleX(1.05) rotate(0deg);
        filter: blur(0px) drop-shadow(0 3px 5px rgba(0, 0, 0, 0.4));
    }

    15% {
        transform: translate3d(0, 2px, 0) scaleY(0.83) scaleX(1.07) rotate(-2deg);
        filter: blur(0px) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
    }

    45% {
        transform: translate3d(0, -46px, 0) scaleY(1.03) scaleX(0.97) rotate(4deg);
        filter: blur(1px) drop-shadow(0 16px 14px rgba(0, 0, 0, 0.25));
    }

    75% {
        transform: translate3d(0, -18px, 0) scaleY(1) scaleX(1) rotate(-3deg);
        filter: blur(0.7px) drop-shadow(0 9px 8px rgba(0, 0, 0, 0.32));
    }

    90% {
        transform: translate3d(0, 0px, 0) scaleY(0.86) scaleX(1.04) rotate(0deg);
        filter: blur(0px) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.38));
    }
}



/* Tablet Traverse Keyframes (Offset is -200px based on 160px width) */
@keyframes tigerTraverseLR-Tablet {
    0% {
        transform: translate3d(-200px, 0, 0) scaleX(1);
    }

    100% {
        transform: translate3d(calc(100vw + 200px), 0, 0) scaleX(1);
    }
}

@keyframes tigerTraverseRL-Tablet {
    0% {
        transform: translate3d(calc(100vw + 200px), 0, 0) scaleX(-1);
    }

    100% {
        transform: translate3d(-200px, 0, 0) scaleX(-1);
    }
}

/* Mobile Traverse Keyframes (Offset is -140px based on 115px width) */
@keyframes tigerTraverseLR-Mobile {
    0% {
        transform: translate3d(-140px, 0, 0) scaleX(1);
    }

    100% {
        transform: translate3d(calc(100vw + 140px), 0, 0) scaleX(1);
    }
}

@keyframes tigerTraverseRL-Mobile {
    0% {
        transform: translate3d(calc(100vw + 140px), 0, 0) scaleX(-1);
    }

    100% {
        transform: translate3d(-140px, 0, 0) scaleX(-1);
    }
}

/* Redefined Mobile Leap with more visual height (-42px instead of -30px) */
@keyframes tigerLeapLoopMobile {

    0%,
    100% {
        transform: translate3d(0, 0px, 0) scaleY(0.86) scaleX(1.04) rotate(0deg);
        filter: blur(0px) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
    }

    15% {
        transform: translate3d(0, 1px, 0) scaleY(0.84) scaleX(1.06) rotate(-1deg);
        filter: blur(0px) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.42));
    }

    45% {
        transform: translate3d(0, -42px, 0) scaleY(1.03) scaleX(0.97) rotate(4deg);
        filter: blur(0.5px) drop-shadow(0 10px 8px rgba(0, 0, 0, 0.22));
    }

    75% {
        transform: translate3d(0, -16px, 0) scaleY(1) scaleX(1) rotate(-2deg);
        filter: blur(0px) drop-shadow(0 6px 5px rgba(0, 0, 0, 0.26));
    }

    90% {
        transform: translate3d(0, 0px, 0) scaleY(0.87) scaleX(1.03) rotate(0deg);
        filter: blur(0px) drop-shadow(0 3px 4px rgba(0, 0, 0, 0.35));
    }
}




/* Nav Menu Items */
/* ── Desktop nav bar links ─────────────────────────────────────── */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-links-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item a {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition-smooth);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item a:hover {
    color: var(--secondary);
}

.theme-toggle-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ── Hamburger button ──────────────────────────────────────────── */
/* Positioned FIXED outside the sticky-top-bar stacking context   */
/* so z-index:100002 truly controls the global paint order.        */
.hamburger {
    display: none;
    /* hidden on desktop */
    position: fixed;
    top: 44px;
    /* approx: below 40px announcement bar, centred in navbar */
    right: 20px;
    /* right edge padding */
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 100002;
    /* above backdrop(100000) + drawer(100001) */
    padding: 8px;
    border-radius: 8px;
    transition: background-color var(--transition-fast),
        top 0.35s ease;
    /* follows navbar shrink */
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.3s ease,
        background-color 0.3s ease;
}

/* ── Dark Backdrop (appears behind drawer) ─────────────────────── */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    /* Above tiger overlay (99999) and page loader (99999) */
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* ── Mobile Drawer ─────────────────────────────────────────────── */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -110%;
    width: min(85vw, 340px);
    height: 100dvh;
    height: 100vh;
    /* fallback */
    background: linear-gradient(160deg, #0A2A1B 0%, #05140D 60%, #091a10 100%);
    border-left: 1.5px solid rgba(245, 166, 35, 0.28);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
    /* Above backdrop (100000) */
    z-index: 100001;
    display: flex;
    flex-direction: column;
    transition: right 0.42s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Ensure it's always rendered, just off-screen */
    visibility: visible;
}

.nav-drawer.active {
    right: 0;
}

/* Drawer top header */
.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(245, 166, 35, 0.12);
    flex-shrink: 0;
}

.nav-drawer-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.nav-drawer-close:hover {
    background: rgba(245, 166, 35, 0.15);
    color: var(--secondary);
    transform: rotate(90deg);
}

/* Drawer nav links list */
.nav-drawer-links {
    list-style: none;
    margin: 0;
    padding: 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nav-drawer-links .nav-item {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
    transition: opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1),
        transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-drawer-links .nav-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Staggered delays when drawer opens */
.nav-drawer.active .nav-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.nav-drawer.active .nav-item:nth-child(1) {
    transition-delay: 0.08s;
}

.nav-drawer.active .nav-item:nth-child(2) {
    transition-delay: 0.13s;
}

.nav-drawer.active .nav-item:nth-child(3) {
    transition-delay: 0.18s;
}

.nav-drawer.active .nav-item:nth-child(4) {
    transition-delay: 0.23s;
}

.nav-drawer.active .nav-item:nth-child(5) {
    transition-delay: 0.28s;
}

.nav-drawer.active .nav-item:nth-child(6) {
    transition-delay: 0.33s;
}

.nav-drawer.active .nav-item:nth-child(7) {
    transition-delay: 0.38s;
}

.nav-drawer-links .nav-item a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 28px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
    text-transform: none;
    transition: color 0.25s, background 0.25s, padding-left 0.25s;
}

.nav-drawer-links .nav-item a i {
    font-size: 1rem;
    width: 22px;
    text-align: center;
    color: var(--secondary);
    opacity: 0.75;
    flex-shrink: 0;
}

.nav-drawer-links .nav-item a:hover {
    color: var(--secondary);
    background: rgba(245, 166, 35, 0.07);
    padding-left: 36px;
}

.nav-drawer-links .nav-item a:hover i {
    opacity: 1;
}

/* Active link golden shimmer */
.nav-drawer-links .nav-item.active a {
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FCF6BA, #AA771C);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 6s infinite linear;
    font-weight: 800;
}

.nav-drawer-links .nav-item.active a i {
    -webkit-text-fill-color: initial;
    color: var(--secondary);
    opacity: 1;
}

.nav-drawer-links .nav-item.active {
    border-left: 3px solid var(--secondary);
    background: rgba(245, 166, 35, 0.05);
}

/* Drawer footer */
.nav-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(245, 166, 35, 0.12);
    flex-shrink: 0;
}

/* ── Hamburger → X animation when active ───────────────────────── */
.hamburger.active span {
    background-color: var(--secondary);
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ── Responsive breakpoint: show hamburger, hide desktop nav ────── */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav-desktop {
        display: none;
    }

    .tiger-mascot {
        display: none;
    }

    .d-desktop-only {
        display: none !important;
    }

    .d-mobile-only {
        display: block;
    }
}

/* ==========================================
   4. HERO BANNER & BOOKING DATE BAR
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(5, 20, 13, 0.4) 0%, rgba(5, 20, 13, 0.8) 100%),
        url('../assets/images/hero-sundarban.webp') center/cover no-repeat;
    color: #ffffff;
    padding: 100px 20px;
    overflow: hidden;
}

/* Background floating elements */
.floating-leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.leaf-particle {
    position: absolute;
    width: 35px;
    height: 35px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32" opacity="0.6"><path d="M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L7,19C12,18 15.86,16.05 18.5,13.5C22.42,9.72 22,3 22,3C22,3 18.28,3.2 14.5,6.5C12.5,8.2 11,10.5 10,13C10,13 12.19,10.2 17,8Z"/></svg>') no-repeat center/contain;
    animation: drift 15s linear infinite;
    pointer-events: none;
}

@keyframes drift {
    0% {
        transform: translate3d(0, -50px, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translate3d(120vw, 110vh, 0) rotate(720deg);
        opacity: 0;
    }
}

.birds-container {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 1;
}

.bird-particle {
    position: absolute;
    width: 25px;
    height: 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 30" fill="%23ffffff" opacity="0.4"><path d="M 0,0 C 15,10 35,10 50,0 C 35,20 15,20 0,0 Z"/></svg>') no-repeat center/contain;
    animation: flyBird 20s linear infinite;
}

@keyframes flyBird {
    0% {
        transform: translate3d(0, 50px, 0) scale(0.6);
    }

    50% {
        transform: translate3d(60vw, 0px, 0) scale(0.8);
    }

    100% {
        transform: translate3d(115vw, 40px, 0) scale(0.6);
    }
}

.clouds-container {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 30%;
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}

.cloud-particle {
    position: absolute;
    background: #ffffff;
    filter: blur(25px);
    border-radius: 50%;
    animation: floatCloud 60s linear infinite;
}

.cloud-1 {
    width: 300px;
    height: 100px;
    top: 10%;
    left: -200px;
}

.cloud-2 {
    width: 450px;
    height: 120px;
    top: 30%;
    left: -400px;
    animation-delay: 20s;
}

@keyframes floatCloud {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(120vw, 0, 0);
    }
}

/* Hero Content Grid */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text-block {
    text-align: left;
}

.hero-badge {
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: var(--glass-blur);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 40%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.hero-subtitle span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-subtitle span::after {
    content: '•';
    margin-left: 15px;
    color: var(--secondary);
}

.hero-subtitle span:last-child::after {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Floating Statistics */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

/* Countdown Card */
.hero-countdown-card {
    background: rgba(10, 42, 27, 0.65);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.countdown-tag {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.countdown-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 5px;
}

.timer-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.timer-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Animated Wave Bottom */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 5;
    pointer-events: none;
}

.wave-path {
    animation: waveMove 12s linear infinite;
    fill: var(--bg-primary);
    transition: fill var(--transition-smooth);
}

@keyframes waveMove {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-20vw, 5px, 0);
    }

    100% {
        transform: translate3d(-40vw, 0, 0);
    }
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text-block {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Interactive Booking Dates Calendar Banner */
.calendar-section {
    padding: 60px 20px;
    background: var(--bg-sec);
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calendar-card {
    padding: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-month {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.calendar-nav-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-main);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.calendar-nav-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 5px 0;
}

.calendar-day {
    padding: 10px 0;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.available {
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
    font-weight: 600;
}

.calendar-day.available:hover {
    background: #2e7d32;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.calendar-day.limited {
    background: rgba(245, 166, 35, 0.08);
    color: #d68102;
    font-weight: 600;
}

.calendar-day.limited:hover {
    background: var(--secondary);
    color: #ffffff;
}

.calendar-day.selected {
    background: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(10, 42, 27, 0.3);
}

.calendar-info-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.info-date-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary);
}

[data-theme="dark"] .info-date-title {
    color: var(--secondary);
}

.info-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
}

.info-lbl {
    color: var(--text-muted);
    font-weight: 500;
}

.info-val {
    font-weight: 700;
}

.status-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.status-pill.avail {
    background: rgba(46, 125, 50, 0.15);
    color: #2e7d32;
}

.status-pill.lim {
    background: rgba(245, 166, 35, 0.15);
    color: #d68102;
}

@media (max-width: 768px) {
    .calendar-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   5. WHY CHOOSE US & GROUP TOURS
   ========================================== */
.why-us-section {
    padding: 80px 20px;
    background: var(--bg-primary);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: transform 0.3s, background 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    background: var(--secondary);
    color: #ffffff;
}

.why-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Split Group Section */
.split-group-section {
    padding: 80px 20px;
    background: var(--bg-sec);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.group-column {
    padding: 40px;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.group-header-icon {
    font-size: 2rem;
    color: var(--secondary);
}

.group-title {
    font-size: 1.8rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: #2e7d32;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-txt strong {
    color: var(--text-main);
}

.benefit-txt p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   6. WILDLIFE GALLERY & VIEWPOINTS
   ========================================== */
.wildlife-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.wildlife-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.wildlife-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.wildlife-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.wildlife-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    transition: padding var(--transition-smooth);
}

.wildlife-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

.wildlife-desc {
    font-size: 0.8rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s, height 0.3s;
}

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

.wildlife-card:hover .wildlife-overlay {
    padding-bottom: 25px;
}

.wildlife-card:hover .wildlife-desc {
    opacity: 1;
    height: auto;
    margin-top: 5px;
}

/* Sundarban Viewpoints Section */
.viewpoints-section {
    padding: 80px 20px;
    background: var(--bg-sec);
}

.viewpoints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.viewpoint-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vp-img-container {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.viewpoint-card:hover .vp-img {
    transform: scale(1.08);
}

.vp-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sunset-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
}

.vp-content {
    padding: 25px;
}

.vp-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.vp-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.vp-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    border-top: 1px solid var(--card-border);
    padding-top: 15px;
    font-size: 0.8rem;
}

.vp-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.vp-meta-item strong {
    color: var(--secondary);
}

@media (max-width: 480px) {
    .viewpoints-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   7. INTERACTIVE ROUTE MAP & WEATHER WIDGET
   ========================================== */
.interactive-assets-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.interactive-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container-card {
    padding: 30px;
    position: relative;
}

.route-map-svg {
    width: 100%;
    height: auto;
    max-height: 450px;
}

.map-dot {
    fill: var(--accent);
    cursor: pointer;
    transition: r 0.3s, fill 0.3s;
}

.map-dot:hover {
    r: 10;
    fill: var(--secondary);
}

.map-boat {
    offset-path: path("M 50,380 C 120,380 200,320 220,240 C 240,160 380,180 400,280 C 420,380 550,320 580,240");
    animation: cruiseBoatMove 15s infinite linear;
}

@keyframes cruiseBoatMove {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

.weather-forecast-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.weather-loc {
    font-size: 1.2rem;
    font-weight: 700;
}

.weather-main-panel {
    text-align: center;
    margin-bottom: 25px;
}

.weather-temp {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.weather-desc-lbl {
    font-size: 1.05rem;
    margin-top: 5px;
    color: var(--text-main);
    font-weight: 500;
}

.weather-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    font-size: 0.85rem;
}

.weather-info-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .interactive-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   8. PRICING & TOUR PACKAGES
   ========================================== */
.pricing-section {
    padding: 80px 20px;
    background: var(--bg-sec);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--secondary);
}

.popular-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.price-header {
    margin-bottom: 25px;
    text-align: center;
}

.price-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.price-title {
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.price-val-block {
    display: inline-block;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.price-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
}

.price-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.price-feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

/* ==========================================
   9. HOTEL & FOOD
   ========================================== */
.hotel-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.hotel-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.hotel-info-block {
    text-align: left;
}

.hotel-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.hotel-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.hotel-feat svg {
    color: var(--secondary);
}

.hotel-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hg-item {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
}

.hg-item.tall {
    grid-row: span 2;
    height: 380px;
}

.hg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hg-item:hover .hg-img {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .hotel-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Food Section Page Elements */
.food-section {
    padding: 80px 20px;
    background: var(--bg-sec);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-card {
    padding: 30px;
    text-align: center;
}

.menu-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.menu-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.menu-list {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-item-row {
    padding: 6px 0;
    border-bottom: 1px dotted var(--card-border);
}

.menu-item-row:last-child {
    border: none;
}

/* ==========================================
   10. TESTIMONIALS & FOUNDER SECTION
   ========================================== */
.testimonials-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.reviews-slider-container {
    max-width: 850px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

.review-stars {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--text-main);
}

.reviewer-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.reviewer-info {
    text-align: left;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

.reviewer-city {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.slider-dot.active {
    background: var(--secondary);
    width: 25px;
    border-radius: 10px;
}

/* Founder Message Card */
.founder-section {
    padding: 80px 20px;
    background: var(--bg-sec);
}

.founder-card {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.founder-photo-block {
    text-align: center;
}

.founder-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    margin: 0 auto 15px;
    box-shadow: var(--shadow);
}

.founder-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.founder-msg-block {
    font-size: 1rem;
    color: var(--text-muted);
}

.founder-msg-block p {
    margin-bottom: 15px;
}

.founder-signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

/* ==========================================
   11. FAQ ACCORDION SECTION
   ========================================== */
.faq-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.faq-search-bar {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-main);
    backdrop-filter: var(--glass-blur);
    font-size: 1rem;
    outline: none;
    box-shadow: var(--shadow);
    transition: border-color 0.3s;
}

.faq-search-input:focus {
    border-color: var(--secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-quest-btn {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-quest-btn:hover {
    background: rgba(245, 166, 35, 0.05);
}

.faq-icon-arrow {
    transition: transform 0.3s;
    font-size: 0.8rem;
    font-weight: 800;
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    border-bottom: 0 solid var(--card-border);
    transition: max-height 0.4s ease-out, padding 0.4s ease, border-width 0.2s;
    padding: 0 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-quest-btn {
    border-bottom: none;
    color: var(--secondary);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-ans {
    padding: 20px 25px;
    border-bottom-width: 1px;
}

/* ==========================================
   12. CONTACT PAGE & FORM
   ========================================== */
.contact-section {
    padding: 80px 20px;
    background: var(--bg-sec);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.contact-details-panel {
    padding: 45px;
}

.contact-detail-box {
    margin-bottom: 30px;
}

.contact-detail-box h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.contact-detail-box p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-embed-container {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid var(--card-border);
}

.contact-form-card {
    padding: 45px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-input {
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--secondary);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-details-panel,
    .contact-form-card {
        padding: 30px;
    }
}

/* ==========================================
   13. FOOTER
   ========================================== */
.footer-main {
    background: #04120C;
    color: #A5BCAE;
    padding: 80px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-desc {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-bio {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.social-link-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-col-links h4,
.footer-col-news h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-links-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 15px;
}

.footer-link-item a {
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link-item a:hover {
    color: var(--secondary);
}

.footer-newsletter-p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-form {
    display: flex;
    gap: 10px;
}

.news-input {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-sans);
    outline: none;
    font-size: 0.85rem;
}

.news-input:focus {
    border-color: var(--secondary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #62756B;
}

.footer-credits a {
    color: var(--secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Float CTA Buttons (WhatsApp / Call / Back to Top) */
.float-widgets-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    /* Raise above cookie banners and footer components */
}

/* Mobile Floating Icon Optimization */
@media (max-width: 768px) {
    .float-widgets-container {
        bottom: 20px !important;
        right: 20px !important;
        gap: 10px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .float-btn {
        width: 44px !important;
        height: 44px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    }

    .float-btn i {
        font-size: 1.25rem !important;
        /* Scale down icons slightly for mobile */
    }

    .float-btn.whatsapp i {
        font-size: 1.5rem !important;
    }
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background-color 0.3s;
    animation: bounceWidget 4s infinite;
}

.float-btn.whatsapp {
    background-color: #25d366;
}

.float-btn.whatsapp:hover {
    background-color: #128c7e;
}

.float-btn.call {
    background-color: var(--accent);
}

.float-btn.call:hover {
    background-color: #e64a19;
}

.float-btn.scroll-top {
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    animation: none;
    /* No bounce for scroll top */
}

.float-btn.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn.scroll-top:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

@keyframes bounceWidget {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* ==========================================
   14. POPUPS & OVERLAYS (Exit Intent / Cookie)
   ========================================== */
.overlay-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 20, 13, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.overlay-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.popup-card {
    max-width: 500px;
    width: 90%;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.overlay-popup.active .popup-card {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
}

.popup-close-btn:hover {
    color: var(--accent);
}

.popup-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup-title span {
    color: var(--secondary);
}

.popup-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    width: calc(100% - 60px);
    padding: 25px;
    z-index: 9990;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-cookie-accept {
    padding: 8px 18px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-cookie-deny {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-main);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Skeleton Loading Screens */
.skeleton-loader {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--card-bg) 25%, rgba(255, 255, 255, 0.1) 50%, var(--card-bg) 75%);
    background-size: 200% 100%;
    animation: loadingSkeleton 1.5s infinite;
}

@keyframes loadingSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Page loader overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 2000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--card-border);
    border-top: 4px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--sunset-gradient);
    z-index: 1001;
    width: 0;
}

/* Premium Luxury Typography Highlights */
.luxury-title-highlight {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.25;
    background: var(--luxury-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    background-size: 200% auto;
    animation: goldShimmer 6s infinite linear;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.luxury-title-highlight::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--secondary);
    margin-top: 10px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.6);
}

.timeline-title-highlight {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    background: var(--luxury-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background-size: 200% auto;
    animation: goldShimmer 6s infinite linear;
    margin-bottom: 8px;
}

/* Premium pricing amounts highlight */
.premium-price-highlight {
    background: var(--luxury-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShimmer 6s infinite linear;
    font-weight: 800;
    display: inline-block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

/* Premium accordion container styling */
details.timeline-accordion {
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

details.timeline-accordion:hover,
details.timeline-accordion[open] {
    border-color: var(--secondary) !important;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.1);
}

details.timeline-accordion summary::-webkit-details-marker {
    display: none;
}

details.timeline-accordion summary {
    outline: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

details.timeline-accordion summary:hover {
    background: rgba(245, 166, 35, 0.25) !important;
}

details.timeline-accordion[open] summary i.fa-chevron-down {
    transform: rotate(180deg);
}

/* ==========================================
   15. COMPREHENSIVE RESPONSIVENESS OVERRIDES
   ========================================== */

/* Tablet & Smaller (<= 768px) */
@media (max-width: 768px) {
    /* Section Padding Compression */
    .hotel-section,
    .why-us-section,
    .wildlife-section,
    .viewpoints-section,
    .interactive-assets-section,
    .pricing-section,
    .food-section,
    .reviews-section,
    .faq-section,
    .contact-section,
    .founder-section {
        padding: 50px 15px !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    /* Calendar Card Layout Optimization */
    .calendar-card {
        padding: 15px !important;
    }
    
    .calendar-grid {
        gap: 3px !important;
    }
    
    .calendar-day-name {
        font-size: 0.7rem !important;
    }
    
    .calendar-day {
        font-size: 0.8rem !important;
        padding: 8px 0 !important;
    }
    
    /* Weather Widget Grid Collapse */
    .weather-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
}

/* Mobile Screens (<= 576px) */
@media (max-width: 576px) {
    /* Page Layout Base Padding Adjustment */
    body {
        padding-top: 100px !important; /* adjust for compact top bar on scroll */
    }

    /* Hero Stats Grid Adaptability (2x2 Grid) */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .stat-num {
        font-size: 1.35rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    /* Countdown Timer Compression */
    .hero-countdown-card {
        padding: 20px 15px !important;
    }
    
    .timer-val {
        font-size: 1.2rem !important;
    }
    
    .timer-lbl {
        font-size: 0.6rem !important;
    }
    
    /* Hotel Details Features list Collapse */
    .hotel-features-list {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    /* Pricing Card Spacing Compression */
    .pricing-card {
        padding: 30px 15px !important;
    }
}

/* Ultra Small Viewports (<= 480px) */
@media (max-width: 480px) {
    /* News Form Stacking */
    .news-form {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .news-form button {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Contact Details padding compression */
    .contact-details-panel,
    .contact-form-card {
        padding: 20px 15px !important;
    }
}