/* ═══════════════════════════════════════════════════════════════════════════
   ZIMBA TOURS & SAFARIS — PREMIUM THEME
   Engineered by Jay Sirya Maitha
   ───────────────────────────────────────────────────────────────────────────
   "Elegance is not about being noticed, it's about being remembered."
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS — Ultra-premium palette
   ─────────────────────────────────────────────────────────────────────────── */
:root {
    /* Primary — Savanna Gold */
    --gold: #C9A24B;
    --gold-light: #E4C57C;
    --gold-dark: #9C7B33;
    --gold-pale: #F5ECD7;
    --gold-rgb: 201, 162, 75;

    /* Dark — Ink */
    --ink: #0A0A0C;
    --ink-soft: #131316;
    --ink-warm: #1A1714;
    --ink-rgb: 10, 10, 12;

    /* Light — Paper */
    --paper: #FFFFFF;
    --paper-soft: #F8F7F4;
    --paper-warm: #FBF9F5;
    --paper-rgb: 255, 255, 255;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --container: 1280px;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-pill: 60px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --duration-slow: 0.8s;
    --duration-med: 0.5s;
    --duration-fast: 0.3s;

    /* Shadows */
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.06);
    --shadow-glass: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(201, 162, 75, 0.15);
}

/* ───────────────────────────────────────────────────────────────────────────
   RESET ENHANCEMENTS
   ─────────────────────────────────────────────────────────────────────────── */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ───────────────────────────────────────────────────────────────────────────
   NAVBAR — Ultra-premium glass
   ─────────────────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--duration-med) var(--ease-out-expo);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* Logo — Premium mark */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--duration-fast) var(--ease-out-expo);
}

.logo:hover {
    opacity: 0.85;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    transition: var(--duration-fast) var(--ease-out-expo);
}

.logo:hover .logo-mark {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(201, 162, 75, 0.3);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--paper);
}

.logo-text span {
    color: var(--gold);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.nav-links a i {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: var(--duration-fast);
}

.nav-links a:hover {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a:hover i {
    opacity: 1;
    color: var(--gold);
}

.nav-links a.active {
    color: var(--paper);
    background: rgba(201, 162, 75, 0.12);
}

.nav-links a.active i {
    opacity: 1;
    color: var(--gold);
}

/* CTA Button — Gold */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gold);
    color: var(--ink) !important;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    transition: all var(--duration-fast) var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(201, 162, 75, 0.25);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 162, 75, 0.35);
    background: var(--gold-light);
    color: var(--ink) !important;
}

.btn-gold i {
    opacity: 1 !important;
    color: inherit !important;
}

/* ───────────────────────────────────────────────────────────────────────────
   LANGUAGE SWITCHER — Premium dropdown
   ─────────────────────────────────────────────────────────────────────────── */
.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 162, 75, 0.3);
}

.lang-toggle i {
    font-size: 0.6rem;
    color: var(--gold);
    transition: transform var(--duration-fast);
}

.lang-switcher.open .lang-toggle i {
    transform: rotate(180deg);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    padding: 8px;
    background: rgba(19, 19, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.96);
    transition: all var(--duration-fast) var(--ease-out-expo);
    z-index: 100;
    list-style: none;
    margin: 0;
}

.lang-switcher.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.lang-menu li:hover {
    background: rgba(201, 162, 75, 0.1);
    color: var(--paper);
}

.lang-menu li.is-active {
    background: rgba(201, 162, 75, 0.15);
    color: var(--gold);
}

.lang-flag-item {
    font-size: 1.1rem;
}

.lang-native {
    font-size: 0.7rem;
    opacity: 0.4;
    margin-left: auto;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ZIMBA TOURS & SAFARIS — THEME PREMIUM
   ───────────────────────────────────────────────────────────────────────────
   Additions layered on top of style.css.
   Engineered by Jay Sirya Maitha
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── HERO SLIDER ─── */
.hero {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.6s cubic-bezier(0.45, 0, 0.2, 1);
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    animation: heroKenBurns 9s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

@keyframes heroKenBurns {
    0%   { transform: scale(1.08); }
    100% { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.68) 45%, rgba(10,10,12,0.92) 100%),
        linear-gradient(90deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.15) 55%, rgba(10,10,12,0.35) 100%);
}

.hero > .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

/* Slide indicator dots */
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 3px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    transform-origin: left;
    transform: scaleX(0);
    background: var(--gold);
}

.hero-dot.is-active {
    background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active::after {
    animation: heroDotFill 6s linear forwards;
}

@keyframes heroDotFill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Slide counter */
.hero-counter {
    position: absolute;
    right: 24px;
    bottom: 36px;
    z-index: 3;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-counter .current {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-counter { display: none; }
    .hero-dots { bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active { animation: none; transform: scale(1); }
    .hero-dot.is-active::after { animation: none; transform: scaleX(1); }
}

/* ───────────────────────────────────────────────────────────────────────────
   MOBILE MENU — Premium hamburger
   ─────────────────────────────────────────────────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--paper);
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        padding: 40px 32px;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transition: right var(--duration-med) var(--ease-in-out-expo);
        gap: 4px;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 14px 20px;
        font-size: 1rem;
        justify-content: center;
    }

    .nav-links a i {
        font-size: 0.9rem;
    }

    .nav-cta {
        margin-top: 16px;
        width: 100%;
    }

    .nav-cta .btn-gold {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }

    .lang-switcher {
        width: 100%;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .lang-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.03);
        max-height: 300px;
        overflow-y: auto;
    }

    .lang-switcher.open .lang-menu {
        display: block;
    }
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0A0A0C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ───────────────────────────────────────────────────────────────────────────
   DESTINATION TICKER — Luxury travel inspiration strip
   ─────────────────────────────────────────────────────────────────────────── */
.ticker {
    position: relative;
    z-index: 1;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    padding: 14px 0;
    margin-top: 74px;
}

.ticker-track {
    display: inline-flex;
    gap: 40px;
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.ticker-item i {
    font-size: 0.6rem;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

/* ───────────────────────────────────────────────────────────────────────────
   RESPONSIVE REFINEMENTS
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .navbar .container { padding: 0 20px; }
    .logo-text { font-size: 0.9rem; letter-spacing: 0.1em; }
    .logo-mark { width: 36px; height: 36px; font-size: 1.1rem; }
    .ticker { padding: 10px 0; margin-top: 66px; }
    .ticker-item { font-size: 0.65rem; gap: 6px; }
    .ticker-track { gap: 24px; animation-duration: 25s; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 0.75rem; letter-spacing: 0.08em; }
    .logo-mark { width: 32px; height: 32px; font-size: 0.9rem; }
    .ticker { padding: 8px 0; margin-top: 60px; }
}


/* Index.php */
/* ═══════════════════════════════════════════════════════════════════════════════
   HOMEPAGE EXTRA STYLES — Beyond the header
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── Cinematic Hero ─── */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--ink);
    overflow: hidden;
    padding: 0;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    animation: heroKenBurns 24s ease-in-out infinite;
    will-change: transform, opacity;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 22s; }

@keyframes heroKenBurns {
    0%   { opacity: 0; transform: scale(1.1); }
    8%   { opacity: 1; transform: scale(1); }
    25%  { opacity: 1; transform: scale(1.05); }
    33%  { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.1); }
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.scrim-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,12,0.3) 0%, rgba(10,10,12,0.1) 30%, rgba(10,10,12,0.7) 85%, rgba(10,10,12,0.9) 100%),
        linear-gradient(90deg, rgba(10,10,12,0.6) 0%, transparent 50%);
}

.scrim-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(10,10,12,0.4) 100%);
}

/* ─── Hero Decor ─── */
.hero-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 120px;
    overflow: hidden;
}

.decor-line {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,162,75,0.2), transparent);
    animation: decorSway 8s ease-in-out infinite;
}

.decor-line:nth-child(1) { bottom: 20px; height: 1px; }
.decor-line:nth-child(2) { bottom: 50px; height: 1.5px; }
.decor-line:nth-child(3) { bottom: 80px; height: 1px; }
.decor-line:nth-child(4) { bottom: 100px; height: 0.5px; }
.decor-line:nth-child(5) { bottom: 10px; height: 2px; }

@keyframes decorSway {
    0%   { transform: translateX(-5%) scaleX(1); opacity: 0.3; }
    50%  { transform: translateX(5%) scaleX(1.2); opacity: 0.8; }
    100% { transform: translateX(-5%) scaleX(1); opacity: 0.3; }
}

/* ─── Hero Content ─── */
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-content {
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    padding: 6px 16px 6px 12px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.06);
}

.dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(201,162,75,0.6);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,162,75,0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(201,162,75,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,162,75,0); }
}

.hero-headline {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.headline-light {
    display: block;
    color: rgba(255,255,255,0.85);
}

.headline-emphasis {
    display: block;
    color: var(--gold);
    font-size: 1.1em;
}

.hero-subline {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.subline-break {
    display: block;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--ink) !important;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(201,162,75,0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(201,162,75,0.4);
    background: var(--gold-light);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(201,162,75,0.1);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ─── Hero Stats ─── */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
}

/* ─── Hero Trust ─── */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
}

.trust-logos {
    display: flex;
    gap: 1.5rem;
}

.trust-logo {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
}

/* ─── Quick Enquiry Card ─── */
.hero-quick-enquiry {
    position: relative;
    z-index: 2;
}

.enquiry-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--white);
}

.enquiry-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.enquiry-header i {
    color: var(--gold);
}

.enquiry-field {
    margin-bottom: 1rem;
}

.enquiry-field input,
.enquiry-field select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.enquiry-field input:focus,
.enquiry-field select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.enquiry-field select option {
    background: var(--ink);
}

.enquiry-note {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.75rem;
}

/* ─── Hero Scroll Indicator ─── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-body);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
}

.scroll-indicator i {
    font-size: 0.6rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Destinations Showcase ─── */
.destinations-showcase {
    padding: 5rem 0;
    background: var(--paper);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.destination-card {
    display: block;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
    height: 340px;
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 20%, rgba(10,10,12,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: background 0.4s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(10,10,12,0.85) 100%);
}

.destination-content {
    color: var(--white);
}

.destination-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,162,75,0.15);
    padding: 2px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 0.5rem;
}

.destination-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.destination-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-link {
    gap: 12px;
}

/* ─── Tours Showcase ─── */
.tours-showcase {
    padding: 5rem 0;
    background: var(--paper-soft);
}

.tour-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--paper-line);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--ink);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

/* ─── Tour Cards Extended ─── */
.tour-card-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.tour-duration {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.tour-type {
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.15);
    padding: 2px 12px;
    border-radius: var(--radius-pill);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tour-rating .stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.tour-rating .reviews {
    font-size: 0.75rem;
    color: var(--gray);
}

.tour-price-group {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tour-price-group small {
    font-size: 0.7rem;
    color: var(--gray);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
    border-radius: var(--radius-pill);
}

/* ─── Air Safari Feature ─── */
.air-safari-feature {
    padding: 5rem 0;
    background: var(--paper);
}

.air-safari-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.air-safari-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0.5rem 0 1.5rem;
}

.air-safari-lead {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.air-safari-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 4px;
}

.highlight-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.air-safari-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.air-safari-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
}

.air-safari-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
}

.air-safari-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.air-safari-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}



.air-safari-stats {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 0.8rem;
}

.air-safari-stats i {
    color: var(--gold);
}

/* ─── Excursions Feature ─── */
.excursions-feature {
    padding: 5rem 0;
    background: var(--paper-soft);
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.excursion-card {
    display: flex;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.excursion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.excursion-image {
    position: relative;
    width: 200px;
    flex-shrink: 0;
}

.excursion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.excursion-price-badge {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: var(--ink);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
}

.excursion-price-badge small {
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.6;
}

.excursion-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.excursion-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.excursion-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.excursion-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.excursion-meta i {
    color: var(--gold);
}

/* ─── Why Zimba ─── */
.why-zimba {
    padding: 5rem 0;
    background: var(--paper);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    padding: 2rem;
    background: var(--paper-soft);
    border-radius: var(--radius);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.why-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(201,162,75,0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.why-number {
    position: absolute;
    top: -4px;
    right: -4px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gold);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ─── Testimonials Showcase ─── */
.testimonials-showcase {
    padding: 5rem 0;
    background: var(--paper-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--paper);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

/* ─── As Seen In ─── */
.as-seen-in {
    padding: 3rem 0;
    background: var(--paper);
    border-top: 1px solid var(--paper-line);
    border-bottom: 1px solid var(--paper-line);
}

.as-seen-label {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.as-seen-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.as-seen-item {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.as-seen-item:hover {
    opacity: 0.8;
}

.as-seen-item svg {
    height: 24px;
    width: auto;
}

/* ─── Journal Preview ─── */
.journal-preview {
    padding: 5rem 0;
    background: var(--paper);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.journal-card {
    background: var(--paper-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.journal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.journal-card:hover .journal-image img {
    transform: scale(1.05);
}

.journal-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--ink);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.journal-content {
    padding: 1.5rem;
}

.journal-date {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.journal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.journal-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ─── CTA Block ─── */
.cta-block {
    padding: 5rem 0;
    background: var(--ink);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,162,75,0.1);
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text h2 span {
    color: var(--gold);
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.cta-guarantee i {
    color: var(--gold);
    margin-right: 6px;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-quick-enquiry {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .air-safari-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .excursions-grid {
        grid-template-columns: 1fr;
    }
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }
    .destination-card {
        height: 220px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        flex: 0 0 45%;
    }
    .hero-trust {
        flex-wrap: wrap;
    }
    .trust-logos {
        flex-wrap: wrap;
    }
    .tours-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .journal-grid {
        grid-template-columns: 1fr;
    }
    .excursion-card {
        flex-direction: column;
    }
    .excursion-image {
        width: 100%;
        height: 180px;
    }
    .cta-text h2 {
        font-size: 2.2rem;
    }
    .cta-guarantee {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats .stat-item {
        flex: 0 0 48%;
    }
    .tour-filters {
        gap: 0.3rem;
    }
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    .as-seen-grid {
        gap: 1.5rem;
    }
    .as-seen-item svg {
        height: 18px;
    }
}

