/* ═══════════════════════════════════════════════════════════════════════════
   ZIMBA TOURS & SAFARIS — COMPLETE STYLESHEET
   ───────────────────────────────────────────────────────────────────────────
   Engineered by Jay Sirya Maitha
   Palette:  #C9A24B (Gold)  |  #0A0A0C (Ink)  |  #FFFFFF (Paper)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
    /* Primary Colors */
    --gold: #C9A24B;
    --gold-light: #E4C57C;
    --gold-dark: #9C7B33;
    --gold-pale: #F5ECD7;
    --gold-rgb: 201, 162, 75;

    /* Dark Colors */
    --ink: #0A0A0C;
    --ink-soft: #131316;
    --ink-warm: #1A1714;
    --ink-rgb: 10, 10, 12;

    /* Light Colors */
    --paper: #FFFFFF;
    --paper-soft: #F8F7F4;
    --paper-warm: #FBF9F5;
    --paper-rgb: 255, 255, 255;

    /* UI Colors */
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F4;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-400: #A8A8A8;
    --gray-500: #6B6B70;
    --gray-600: #4A4A4E;
    --gray-700: #2A2A2E;
    --gray-800: #1A1A1E;
    --gray-900: #0A0A0C;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing System */
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-pill: 60px;

    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 8px 40px rgba(201, 162, 75, 0.25);
    --shadow-gold-lg: 0 16px 60px rgba(201, 162, 75, 0.30);

    /* Focus ring (accessibility) */
    --focus-ring: 0 0 0 3px rgba(201, 162, 75, 0.35);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

/* ─── ACCESSIBILITY — FOCUS STATES ─── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

button, a, input, textarea, select {
    font-family: inherit;
}

/* ─── CONTAINER ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 75, 0.10);
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 0.75rem;
}

.section-tag.gold {
    color: var(--gold);
    background: rgba(201, 162, 75, 0.12);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-actions {
    text-align: center;
    margin-top: 3rem;
}

/* ─── PULL QUOTE (editorial accent, reusable across pages) ─── */
.pull-quote {
    position: relative;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.6;
    color: var(--ink);
    padding-left: 2rem;
    border-left: 3px solid var(--gold);
    max-width: 640px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Shine sweep on hover — subtle, premium micro-interaction */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

.btn:hover::before {
    left: 125%;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.btn:disabled,
.btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    background: var(--gold-light);
}

.btn-secondary {
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--gray-700);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--paper);
    border: 2px solid rgba(255, 255, 255, 0.30);
}

.btn-outline:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn i {
    font-size: 0.85em;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Icon-only round button (used by back-to-top, carousel arrows, etc.) */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 75, 0.25);
    box-shadow: var(--shadow-md);
}

.btn-icon:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
}

/* ─── HEADER / NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 0;
    background: rgba(10, 10, 12, 0.70);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 12, 0.94);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.30);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--paper);
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.70);
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    text-decoration: none;
}

.nav-links a i {
    font-size: 0.75rem;
    opacity: 0.4;
    transition: all 0.25s ease;
}

.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);
}

/* Contact Button in Nav */
.contact-btn {
    background: var(--gold) !important;
    color: var(--ink) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-gold);
}

.contact-btn:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.contact-btn i {
    opacity: 1 !important;
    color: var(--ink) !important;
}

/* ─── MOBILE MENU ─── */
.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 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    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: 380px;
        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 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        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-links .contact-btn {
        margin-top: 16px;
        width: 100%;
        justify-content: center;
        padding: 16px !important;
    }
}

/* ─── LANGUAGE SWITCHER ─── */
.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.80);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(201, 162, 75, 0.30);
}

.lang-toggle i {
    font-size: 0.6rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.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: 200px;
    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 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.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.70);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lang-menu li:hover {
    background: rgba(201, 162, 75, 0.10);
    color: var(--paper);
}

.lang-menu li.is-active {
    background: rgba(201, 162, 75, 0.15);
    color: var(--gold);
}

.lang-menu li span {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .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;
    }
}

/* ─── DESTINATION TICKER ─── */
.ticker {
    background: var(--ink-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    animation: tickerScroll 40s linear infinite;
    padding-left: 2.5rem;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

/* ─── HERO SECTION (base — overridden by theme-premium.css for the slider) ─── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 50%, var(--ink-warm) 100%);
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 75, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 162, 75, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    color: var(--paper);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 1.5rem;
    padding: 6px 16px 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    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.60);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.50);
    }
    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-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--paper);
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: var(--gold);
    display: inline-block;
}

.hero-content p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.70);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.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);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat {
        flex: 0 0 45%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stat h3 {
        font-size: 1.4rem;
    }

    .stat p {
        font-size: 0.6rem;
    }
}

/* ─── PAGE BANNER (inner-page hero — about, safaris, contact, etc.) ─── */
.page-banner {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 60%, var(--ink-warm) 100%);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(201, 162, 75, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 70%, rgba(201, 162, 75, 0.05) 0%, transparent 50%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--paper);
    margin-bottom: 0.75rem;
}

.page-banner h1 .highlight {
    color: var(--gold);
}

.page-banner p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
}

/* Breadcrumb (sits inside .page-banner) */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.70);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb .current {
    color: var(--gold);
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 56px;
    }
}

/* ─── TOURS SECTION ─── */
.tours-section {
    padding: 5rem 0;
    background: var(--paper-soft);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 75, 0.20);
}

.tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    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;
    box-shadow: var(--shadow-gold);
}

.tour-card-body {
    padding: 1.5rem;
}

.tour-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tour-card-body .description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tour-meta {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1rem;
}

.tour-meta span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.tour-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.tour-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ─── FEATURES SECTION ─── */
.features-section {
    padding: 5rem 0;
    background: var(--ink);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 162, 75, 0.20);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    text-align: center;
    color: var(--ink);
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.cta-content h2 span {
    color: var(--paper);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(10, 10, 12, 0.70);
    max-width: 520px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    border-color: var(--ink);
    color: var(--ink);
}

.cta-section .btn-outline:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ─── AIR SAFARI PREVIEW ─── */
.air-safari-preview {
    padding: 5rem 0;
    background: var(--paper);
}

.air-safari-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.air-safari-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.air-safari-content p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.air-safari-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 3px;
}

.highlight-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.air-safari-visual {
    position: relative;
}

.air-safari-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.air-safari-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.air-safari-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--ink);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-gold);
    font-size: 0.9rem;
}

.air-safari-badge i {
    font-size: 1rem;
}

@media (max-width: 992px) {
    .air-safari-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .air-safari-card img {
        height: 280px;
    }
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    padding: 5rem 0;
    background: var(--paper-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: var(--paper);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 4px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: rgba(201, 162, 75, 0.10);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 75, 0.18);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.testimonial-text {
    position: relative;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--ink);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ─── FORMS (contact, booking, newsletter — reusable across the site) ─── */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    transition: all 0.25s ease;
}

.form-control::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--paper);
    box-shadow: var(--focus-ring);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-hint {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 0.4rem;
}

.form-error {
    font-size: 0.78rem;
    color: #C0392B;
    margin-top: 0.4rem;
}

.form-control.is-invalid {
    border-color: #C0392B;
}

/* Dark variant — for forms placed on ink backgrounds (e.g. footer newsletter) */
.form-dark .form-label {
    color: rgba(255, 255, 255, 0.60);
}

.form-dark .form-control,
.form-dark .form-select,
.form-dark .form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.10);
    color: var(--paper);
}

.form-dark .form-control::placeholder,
.form-dark .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-dark .form-control:focus,
.form-dark .form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ─── BADGES ─── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-gold {
    background: rgba(201, 162, 75, 0.12);
    color: var(--gold-dark);
}

.badge-dark {
    background: var(--ink);
    color: var(--paper);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
}

/* ─── PAGINATION ─── */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--paper);
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.pagination .active {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ─── GLASS PANEL UTILITY (booking widgets, floating cards, overlays) ─── */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

/* ─── BACK TO TOP ─── */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 75, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--ink);
    color: var(--paper);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255, 255, 255, 0.30);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* ─── UTILITY CLASSES ─── */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

.col-full {
    grid-column: 1 / -1;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger helpers — add alongside .reveal for cascading entrances */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE REFINEMENTS ─── */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .air-safari-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .air-safari-badge i {
        font-size: 0.8rem;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .tours-section {
        padding: 3rem 0;
    }

    .features-section {
        padding: 3rem 0;
    }

    .air-safari-preview {
        padding: 3rem 0;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* ─── PRELOADER ─── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 75, 0.12);
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    animation: spin 1s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    position: relative;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-mark {
    position: absolute;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.preloader-word {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--paper);
}

.preloader-word span {
    color: var(--gold);
}

.preloader-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.30);
    letter-spacing: 0.05em;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ─── SELECTION ─── */
::selection {
    background: var(--gold);
    color: var(--ink);
}

::-moz-selection {
    background: var(--gold);
    color: var(--ink);
}