/* ══════════════════════════════════════════════════════════════════
   Royal Inn Travels — Celestial / Futuristic-Spiritual Design System
   ─────────────────────────────────────────────────────────────────
   Concept: Cosmic dawn over the desert. Deep indigo night meeting
   amber horizon. Islamic geometric tessellation as tech pattern.
   Glass, starlight, and carved-stone typography.
   ══════════════════════════════════════════════════════════════════ */

:root {
    /* ─── Celestial palette ──────────────────────── */
    --void:        #050510;       /* deep space */
    --midnight:    #0a0b1e;       /* night sky */
    --twilight:    #161635;       /* pre-dawn */
    --nebula:      #252550;       /* atmospheric gradient mid */
    --dusk:        #3a2c4f;       /* horizon purple */
    --ember:       #8b4a2b;       /* warm horizon */
    --dawn:        #d4915a;       /* amber sunrise */
    --dawn-soft:   #f4c68a;       /* pale sun glow */
    --star:        #fef3c7;       /* warm starlight */

    --gold:        #d4af5f;       /* sacred gold */
    --gold-bright: #f5d78a;       /* highlight */
    --gold-deep:   #8b6a2a;       /* ore */

    --crystal:     #6ee7e0;       /* prayer-bead cyan */
    --crystal-dim: rgba(110,231,224,0.15);

    --surface-1:   rgba(255,255,255,0.03);  /* glass */
    --surface-2:   rgba(255,255,255,0.06);
    --surface-3:   rgba(255,255,255,0.09);
    --border-glow: rgba(212,175,95,0.22);
    --border-soft: rgba(255,255,255,0.08);

    --text:        #f4efe4;
    --text-muted:  rgba(244,239,228,0.65);
    --text-faint:  rgba(244,239,228,0.42);
    --text-ink:    #0a0b1e;         /* on light surfaces */

    /* Ivory for light sections */
    --ivory:       #f7f3ea;
    --ivory-dim:   #e8e0d0;
    --stone:       #d4cab5;

    /* ─── Typography ──────────────────────── */
    --font-display: 'Cinzel', 'Cormorant Garamond', Georgia, serif;  /* carved stone */
    --font-body:    'Outfit', 'Manrope', system-ui, sans-serif;      /* clean geometric */
    --font-mono:    'Syne Mono', 'JetBrains Mono', monospace;        /* technical */

    /* ─── Geometry ──────────────────────── */
    --radius-xs: 2px;
    --radius-sm: 6px;
    --radius:   12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --container: 1280px;
    --nav-h: 74px;

    --glow-gold:    0 0 48px rgba(212,175,95,0.35);
    --glow-gold-sm: 0 0 18px rgba(212,175,95,0.4);
    --glow-crystal: 0 0 32px rgba(110,231,224,0.3);
    --shadow-deep:  0 30px 80px rgba(0,0,0,0.45);
    --shadow-sm:    0 4px 14px rgba(0,0,0,0.25);

    --ease:        cubic-bezier(0.22, 0.68, 0, 1.15);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--midnight);
    overflow-x: hidden;
    min-height: 100vh;
    font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--text-ink); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p  { color: var(--text-muted); line-height: 1.72; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Section background — cosmic gradient */
body {
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, var(--twilight) 0%, var(--midnight) 60%),
        var(--midnight);
    background-attachment: fixed;
}

/* ═══ Sacred geometry — 8-point star pattern as global background layer ═══ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        /* scattered stars */
        radial-gradient(1px 1px at 12% 18%, rgba(254,243,199,0.7), transparent),
        radial-gradient(1px 1px at 28% 52%, rgba(212,175,95,0.4), transparent),
        radial-gradient(0.8px 0.8px at 44% 24%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 68% 48%, rgba(110,231,224,0.3), transparent),
        radial-gradient(0.6px 0.6px at 82% 34%, rgba(254,243,199,0.5), transparent),
        radial-gradient(1px 1px at 92% 72%, rgba(212,175,95,0.4), transparent),
        radial-gradient(0.8px 0.8px at 18% 78%, rgba(255,255,255,0.5), transparent),
        radial-gradient(0.6px 0.6px at 58% 88%, rgba(212,175,95,0.3), transparent);
    background-size: 100% 100%;
    opacity: 0.9;
}
body > * { position: relative; z-index: 1; }

/* ═════════════════════════════════════════════════════════════
   NAVBAR — celestial glass bar
   ═════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(10, 11, 30, 0.55);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    background-clip: padding-box;
    transition: all .35s;
}
.navbar::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212,175,95,0.25) 30%,
        rgba(212,175,95,0.5) 50%,
        rgba(212,175,95,0.25) 70%,
        transparent 100%);
}
.nav-inner {
    width: 100%; max-width: var(--container);
    margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}

.brand {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.brand-mark {
    width: 40px; height: 40px;
    position: relative;
    display: grid; place-items: center;
    color: var(--gold-bright);
}
.brand-mark::before, .brand-mark::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid var(--gold);
    border-radius: 4px;
}
.brand-mark::before { transform: rotate(0deg); }
.brand-mark::after  { transform: rotate(45deg); opacity: 0.5; }
.brand-mark span {
    position: relative; z-index: 1;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(212,175,95,0.5));
}
.brand em { font-style: normal; color: var(--gold); font-weight: 400; }

.nav-links { display: none; gap: 34px; }
.nav-links a {
    position: relative;
    font-size: 0.74rem;
    font-weight: 400;
    color: var(--text-faint);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 0;
    transition: color .25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::before {
    content: '◆';
    position: absolute;
    left: -14px; top: 50%;
    transform: translateY(-50%);
    font-size: 0.55rem;
    color: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-ghost { display: none; }

.menu-toggle {
    width: 42px; height: 42px;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    background: var(--surface-1);
    display: grid; place-items: center;
    color: var(--text-muted);
}
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,11,30,0.96);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glow);
    padding: 18px;
    transform: translateY(-120%);
    transition: transform .4s var(--ease-smooth);
    z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
    display: block; padding: 13px 16px; border-radius: 8px;
    font-size: 0.82rem; letter-spacing: 0.08em;
    color: var(--text-muted); transition: all .15s;
}
.mobile-menu a:hover { background: var(--surface-2); color: var(--text); }
.mobile-menu .divider { height: 1px; background: var(--border-soft); margin: 8px 0; }

@media (min-width: 960px) {
    .nav-links { display: flex; }
    .nav-cta .btn-ghost { display: inline-flex; }
    .menu-toggle { display: none; }
    .mobile-menu { display: none !important; }
}

/* ═════════════════════════════════════════════════════════════
   BUTTONS — metallic pill with glow
   ═════════════════════════════════════════════════════════════ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all .35s var(--ease-smooth);
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: var(--text-ink);
    font-weight: 600;
    box-shadow:
        0 0 0 1px rgba(212,175,95,0.6) inset,
        0 8px 28px rgba(212,175,95,0.3);
}
.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px var(--gold-bright) inset,
        0 12px 36px rgba(212,175,95,0.5),
        0 0 60px rgba(212,175,95,0.25);
}

.btn-ghost {
    background: var(--surface-1);
    color: var(--text);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(8px);
}
.btn-ghost::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(212,175,95,0.12) 50%, transparent);
    opacity: 0;
    transition: opacity .3s;
    z-index: -1;
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}
.btn-ghost:hover::before { opacity: 1; }

.btn-outline {
    background: transparent;
    color: var(--text-ink);
    border: 1px solid rgba(10,11,30,0.2);
}
.btn-outline:hover { border-color: var(--text-ink); background: rgba(10,11,30,0.04); }

.btn-sky {
    background: linear-gradient(135deg, var(--crystal) 0%, #5ac4be 100%);
    color: var(--text-ink);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(110,231,224,0.25);
}
.btn-sky:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(110,231,224,0.4); }

.btn-dark {
    background: var(--void);
    color: var(--text);
    border: 1px solid var(--border-soft);
}
.btn-dark:hover { border-color: var(--gold); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.72rem; }
.btn-lg { padding: 16px 34px; font-size: 0.9rem; }

/* ═════════════════════════════════════════════════════════════
   HERO — cosmic dawn with mihrab arch
   ═════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 24px;
    overflow: hidden;
}

/* Aurora gradient wash */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 60%, rgba(139,74,43,0.45), transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 30%, rgba(37,37,80,0.6), transparent 70%),
        radial-gradient(ellipse 40% 30% at 60% 15%, rgba(110,231,224,0.12), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Horizon glow at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(180deg, transparent 0%, rgba(212,145,90,0.15) 60%, rgba(244,198,138,0.25) 100%);
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    position: relative; z-index: 3;
    max-width: var(--container); margin: 0 auto; width: 100%;
    padding: calc(var(--nav-h) + 80px) 0 120px;
    display: grid; gap: 60px; align-items: center;
}
@media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

/* Hero copy */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 16px;
    background: var(--surface-2);
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 32px;
    animation: eyebrowFade 1s var(--ease-smooth) forwards;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 8px var(--gold-bright);
    animation: starPulse 2s ease-in-out infinite;
}
@keyframes eyebrowFade { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
@keyframes starPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold-bright); }
    50%      { opacity: 0.6; box-shadow: 0 0 14px var(--gold-bright), 0 0 24px rgba(212,175,95,0.4); }
}

.hero h1 {
    color: var(--text);
    font-family: var(--font-display);
    line-height: 1.0;
    margin-bottom: 26px;
    animation: heroLift 1.2s .15s var(--ease-smooth) forwards;
}
.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--dawn) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}
.hero h1 em::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.5;
}
@keyframes heroLift { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

.hero .lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 40px;
    animation: heroLift 1.2s .3s var(--ease-smooth) forwards;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 56px;
    animation: heroLift 1.2s .45s var(--ease-smooth) forwards;
}

.hero-stats {
    display: flex; gap: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--border-soft);
    animation: heroLift 1.2s .6s var(--ease-smooth) forwards;
}
.hero-stats .stat strong {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-bright);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 24px rgba(212,175,95,0.25);
}
.hero-stats .stat span {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* ─── Hero visual: real Kaaba illustration ─────── */
.hero-visual {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroLift 1.4s .25s var(--ease-smooth) forwards;
}

/* The ambient halo behind the Kaaba */
.hero-halo {
    position: absolute;
    inset: 10% 5% 0 5%;
    background:
        radial-gradient(ellipse 50% 60% at 50% 55%, rgba(212,175,95,0.25), transparent 65%),
        radial-gradient(ellipse 80% 80% at 50% 70%, rgba(139,74,43,0.3), transparent 70%);
    filter: blur(4px);
    pointer-events: none;
}

/* Circumambulation (tawaf) orbit rings around the Kaaba */
.tawaf-ring {
    position: absolute;
    left: 50%;
    top: 58%;
    border-radius: 50%;
    border: 1px dashed rgba(212,175,95,0.22);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.tawaf-ring-1 {
    width: 360px;
    height: 140px;
    animation: orbitSpin 90s linear infinite;
}
.tawaf-ring-2 {
    width: 440px;
    height: 170px;
    border-color: rgba(110,231,224,0.12);
    animation: orbitSpin 140s linear infinite reverse;
}
.tawaf-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold-bright);
    transform: translateX(-50%);
}
.tawaf-ring-2::before { background: var(--crystal); box-shadow: 0 0 10px var(--crystal); }
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* The Kaaba SVG itself */
.kaaba-svg {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 400px;
    height: auto;
    filter:
        drop-shadow(0 30px 40px rgba(0,0,0,0.6))
        drop-shadow(0 0 80px rgba(212,175,95,0.2));
    animation: kaabaRise 1.8s .4s var(--ease-smooth) forwards;
}
@keyframes kaabaRise {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating "departures open" status pill */
.kaaba-status {
    position: absolute;
    top: 8%;
    right: 8%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(10,11,30,0.7);
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    z-index: 4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: heroLift 1.4s 1s var(--ease-smooth) forwards;
}
.kaaba-status .pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.6; transform: scale(1.3); }
}

/* Plane streak across hero sky */
.plane-streak {
    position: absolute;
    top: 18%;
    left: -10%;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    filter: blur(0.6px);
    animation: streakAcross 12s ease-in-out infinite 2s;
    opacity: 0;
    z-index: 1;
}
@keyframes streakAcross {
    0%   { left: -30%; opacity: 0; transform: rotate(-6deg); }
    15%  { opacity: 0.85; }
    85%  { opacity: 0.85; }
    100% { left: 130%; opacity: 0; transform: rotate(-6deg); }
}

@media (max-width: 640px) {
    .hero-visual { max-width: 340px; }
    .tawaf-ring-1 { width: 280px; height: 110px; }
    .tawaf-ring-2 { width: 340px; height: 130px; }
    .kaaba-status { top: 4%; right: 4%; font-size: 0.6rem; padding: 6px 12px; }
}

/* ═════════════════════════════════════════════════════════════
   SEARCH BAR — holographic glass panel
   ═════════════════════════════════════════════════════════════ */
.search-bar {
    max-width: var(--container);
    margin: -40px auto 0;
    background: rgba(10, 11, 30, 0.6);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep), 0 0 60px rgba(212,175,95,0.1);
    padding: 20px;
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.search-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    opacity: 0.6;
}
.search-bar .field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.search-bar .field input,
.search-bar .field select {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--surface-1);
    outline: none;
    transition: all .2s;
}
.search-bar .field input::placeholder { color: var(--text-faint); }
.search-bar .field input:focus,
.search-bar .field select:focus {
    border-color: var(--gold);
    background: var(--surface-2);
    box-shadow: 0 0 0 3px rgba(212,175,95,0.12);
}
.search-bar .field select option { background: var(--midnight); color: var(--text); }
@media (min-width: 760px) {
    .search-bar { grid-template-columns: 1fr 1fr 1.1fr 1fr auto; align-items: end; }
}

/* ═════════════════════════════════════════════════════════════
   SECTIONS
   ═════════════════════════════════════════════════════════════ */
.section { padding: 120px 24px; position: relative; }
.section-dawn {
    background:
        radial-gradient(ellipse 80% 100% at 50% 100%, rgba(139,74,43,0.3), transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(110,231,224,0.06), transparent 70%);
}
.section-light {
    background: var(--ivory);
    color: var(--text-ink);
}
.section-light p { color: rgba(10,11,30,0.6); }
.section-light h2, .section-light h3 { color: var(--text-ink); }

/* Section header with compass divider */
.section-head { max-width: var(--container); margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
    content: ''; width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.section-head .eyebrow::after { background: linear-gradient(270deg, transparent, var(--gold)); }

.section-head h2 {
    font-family: var(--font-display);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.1;
}
.section-head h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-bright), var(--dawn));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-head > p {
    max-width: 540px;
    margin: 18px auto 0;
    font-size: 1rem;
}

/* ═════════════════════════════════════════════════════════════
   PAGE INTRO — reused on packages/hotels/etc
   ═════════════════════════════════════════════════════════════ */
.page-intro {
    padding: calc(var(--nav-h) + 80px) 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-intro::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(139,74,43,0.25), transparent 60%),
        radial-gradient(ellipse 40% 50% at 30% 30%, rgba(37,37,80,0.5), transparent 70%);
    pointer-events: none;
}
.page-intro > * { position: relative; }
.page-intro .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.page-intro .eyebrow::before {
    content: '◆'; color: var(--gold); font-size: 0.5rem;
}
.page-intro h1 {
    max-width: 800px;
    margin: 0 auto 22px;
    color: var(--text);
}
.page-intro p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ═════════════════════════════════════════════════════════════
   GRID HELPERS
   ═════════════════════════════════════════════════════════════ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.flex { display: flex; }
.between { justify-content: space-between; align-items: center; }

/* ═════════════════════════════════════════════════════════════
   PACKAGE CARDS — glass with amber under-glow
   ═════════════════════════════════════════════════════════════ */
.package-card {
    position: relative;
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    backdrop-filter: blur(16px);
    transition: all .35s var(--ease-smooth);
    isolation: isolate;
}
.package-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, transparent 40%, rgba(212,175,95,0.35) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity .35s;
    z-index: -1;
}
.package-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.4),
        0 0 80px rgba(212,175,95,0.15);
}
.package-card:hover::before { opacity: 1; }

.package-card .media {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--twilight), var(--dusk));
    display: grid;
    place-items: center;
}
.package-card .media::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(212,175,95,0.25), transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(110,231,224,0.1), transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.package-card .media-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.package-card .media:has(.media-img)::before {
    background:
        linear-gradient(180deg, rgba(5,5,16,0.1) 0%, transparent 40%, rgba(5,5,16,0.65) 100%);
}
.package-card .media-icon {
    position: relative; z-index: 1;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(212,175,95,0.25);
    user-select: none;
    filter: drop-shadow(0 0 24px rgba(212,175,95,0.3));
}

.tier-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 12px;
    background: rgba(5,5,16,0.72);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    z-index: 2;
}
.tier-badge.vip, .tier-badge.luxury {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--text-ink);
    font-weight: 600;
    border-color: transparent;
}

.package-card .body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.package-card h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.2;
}
.package-card .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.package-card .meta span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.package-card .desc { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.58; flex: 1; }
.package-card .foot {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
}
.package-card .price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.55rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212,175,95,0.2);
}
.package-card .price small {
    display: block;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-style: normal;
    color: var(--text-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ═════════════════════════════════════════════════════════════
   HOTEL CARDS
   ═════════════════════════════════════════════════════════════ */
.hotel-card {
    position: relative;
    background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    backdrop-filter: blur(16px);
    transition: all .35s var(--ease-smooth);
}
.hotel-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hotel-card .media {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--twilight), var(--dusk));
}
.hotel-card .media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hotel-card .city-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--text-ink);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}
.hotel-card .stars {
    position: absolute; top: 12px; right: 12px;
    color: var(--gold-bright);
    font-size: 0.85rem;
    letter-spacing: 2px;
    z-index: 2;
    text-shadow: 0 0 10px rgba(212,175,95,0.6);
}
.hotel-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.hotel-card h3 { color: var(--text); font-size: 1.08rem; margin-bottom: 6px; }
.hotel-card .dist {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 10px;
}
.hotel-card p { font-size: 0.84rem; flex: 1; }
.hotel-card .foot {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-top: 14px; margin-top: 12px;
    border-top: 1px solid var(--border-soft);
}
.hotel-card .price {
    font-family: var(--font-display); font-style: italic;
    font-size: 1.35rem; color: var(--gold-bright); line-height: 1;
}
.hotel-card .price small {
    display: block; margin-top: 3px;
    font-family: var(--font-mono); font-style: normal; font-size: 0.6rem;
    color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ═════════════════════════════════════════════════════════════
   PROMO CARDS
   ═════════════════════════════════════════════════════════════ */
.promo-card {
    position: relative;
    background: linear-gradient(180deg, var(--surface-3), var(--surface-1));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 32px;
    backdrop-filter: blur(16px);
}
.promo-card::before {
    content: '';
    position: absolute; top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,95,0.18), transparent 60%);
    pointer-events: none;
}
.promo-image { margin: -32px -32px 22px; height: 150px; overflow: hidden; border-bottom: 1px solid var(--border-glow); }
.promo-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-discount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-bright), var(--dawn));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(212,175,95,0.3);
    position: relative;
}
.promo-card h3 { color: var(--text); margin-bottom: 10px; position: relative; }
.promo-card p { color: var(--text-muted); margin-bottom: 18px; position: relative; }
.promo-code {
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    border: 1px dashed var(--gold);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--gold-bright);
    background: rgba(212,175,95,0.08);
    margin-bottom: 18px;
}

/* Countdown timer */
.countdown { display: flex; gap: 8px; margin: 16px 0; position: relative; }
.countdown .cd-box {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    padding: 10px 12px;
    border-radius: 8px;
    min-width: 58px;
    text-align: center;
}
.countdown .cd-box strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-bright);
    line-height: 1;
}
.countdown .cd-box span {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* ═════════════════════════════════════════════════════════════
   TESTIMONIAL CARDS
   ═════════════════════════════════════════════════════════════ */
.testi-card {
    position: relative;
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(14px);
    transition: all .3s;
}
.testi-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}
.testi-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 22px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}
.testi-card .stars {
    color: var(--gold-bright);
    font-size: 0.88rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-shadow: 0 0 10px rgba(212,175,95,0.4);
}
.testi-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.testi-card .author { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--twilight), var(--dusk));
    border: 1px solid var(--border-glow);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-bright);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testi-card .author strong { color: var(--text); font-size: 0.92rem; display: block; }
.testi-card .author small { color: var(--text-faint); font-size: 0.75rem; font-family: var(--font-mono); letter-spacing: 0.06em; }

/* ═════════════════════════════════════════════════════════════
   VALUES / CTA / PAGE STRIPS
   ═════════════════════════════════════════════════════════════ */
.values-strip {
    position: relative;
    padding: 72px 24px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.values-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,95,0.05), transparent 70%);
    pointer-events: none;
}
.values-grid {
    max-width: var(--container); margin: 0 auto;
    display: grid; gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    position: relative;
}
.value-item { text-align: center; }
.value-item .icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    margin-bottom: 14px;
    background: var(--surface-2);
    border: 1px solid var(--border-glow);
    border-radius: 14px;
    color: var(--gold-bright);
    font-family: var(--font-display); font-size: 1.4rem; font-style: italic;
}
.value-item strong {
    display: block; color: var(--text);
    font-family: var(--font-display);
    font-size: 1.05rem; font-style: italic;
    margin-bottom: 8px;
}
.value-item p { color: var(--text-faint); font-size: 0.84rem; line-height: 1.55; max-width: 220px; margin: 0 auto; }

/* CTA block */
.cta-block {
    position: relative;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(139,74,43,0.3), transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 30%, rgba(110,231,224,0.08), transparent 70%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    max-width: 720px; margin: 0 auto;
    padding: 60px 40px;
    background: var(--surface-2);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.cta-inner h2 { color: var(--text); margin-bottom: 14px; }
.cta-inner h2 em { font-style: italic; color: var(--gold-bright); }
.cta-inner p { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═════════════════════════════════════════════════════════════
   FILTER BAR
   ═════════════════════════════════════════════════════════════ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-bar button, .filter-bar .filter-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: var(--surface-1);
    backdrop-filter: blur(8px);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    cursor: pointer; transition: all .2s;
    text-decoration: none; display: inline-block;
}
.filter-bar button:hover, .filter-bar .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}
.filter-bar button.active, .filter-bar .filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-color: transparent;
    color: var(--text-ink);
    font-weight: 600;
}

/* ═════════════════════════════════════════════════════════════
   FORMS
   ═════════════════════════════════════════════════════════════ */
.form-wrap {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(16px);
}
.form-grid { display: grid; gap: 18px; }
.form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-grid.cols-2 { grid-template-columns: 1fr; } }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.input, .select, .textarea {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font-body); font-size: 0.92rem;
    color: var(--text);
    background: var(--surface-1);
    outline: none;
    transition: all .2s;
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .select:focus, .textarea:focus {
    border-color: var(--gold);
    background: var(--surface-2);
    box-shadow: 0 0 0 3px rgba(212,175,95,0.12);
}
.select option { background: var(--midnight); color: var(--text); }
.textarea { resize: vertical; min-height: 110px; }

/* ═════════════════════════════════════════════════════════════
   ALERTS
   ═════════════════════════════════════════════════════════════ */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; border: 1px solid; margin-bottom: 14px; backdrop-filter: blur(10px); }
.alert-success { background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.3); color: #86efac; }
.alert-error   { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.3); color: #fca5a5; }
.alert-info    { background: rgba(212,175,95,0.08); border-color: rgba(212,175,95,0.3); color: var(--gold-bright); }

/* ═════════════════════════════════════════════════════════════
   BADGES
   ═════════════════════════════════════════════════════════════ */
.badge, .badge-pending, .badge-approved, .badge-confirmed, .badge-rejected,
.badge-completed, .badge-contacted, .badge-active, .badge-inactive, .badge-sold {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    background: rgba(255,255,255,0.03);
}
.badge-pending   { color: #fbbf24; }
.badge-approved, .badge-confirmed, .badge-active { color: #86efac; }
.badge-rejected, .badge-sold { color: #fca5a5; }
.badge-completed { color: #c4b5fd; }
.badge-contacted { color: #7dd3fc; }
.badge-inactive  { color: var(--text-faint); }

/* ═════════════════════════════════════════════════════════════
   AUTH PAGES
   ═════════════════════════════════════════════════════════════ */
.auth-wrap {
    min-height: 100vh;
    display: grid; place-items: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.auth-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 50% 20%, rgba(139,74,43,0.3), transparent 60%),
        radial-gradient(ellipse 40% 50% at 50% 90%, rgba(37,37,80,0.4), transparent 60%);
    pointer-events: none;
}
.auth-card {
    position: relative;
    background: var(--surface-2);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 44px;
    width: 100%; max-width: 440px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-deep);
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.auth-card h2 { color: var(--text); margin-bottom: 6px; }
.auth-card h2 em { font-style: italic; color: var(--gold-bright); }
.auth-card .sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.auth-card .foot { margin-top: 20px; text-align: center; font-size: 0.85rem; color: var(--text-faint); }
.auth-card .foot a { color: var(--gold-bright); font-weight: 500; }

/* ═════════════════════════════════════════════════════════════
   DASHBOARD
   ═════════════════════════════════════════════════════════════ */
.dash-wrap {
    max-width: var(--container); margin: 0 auto;
    padding: calc(var(--nav-h) + 40px) 24px 60px;
    display: grid; gap: 28px;
}
@media (min-width: 860px) { .dash-wrap { grid-template-columns: 230px 1fr; align-items: start; } }
.dash-side {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 26px;
    backdrop-filter: blur(14px);
    position: sticky; top: calc(var(--nav-h) + 18px);
}
.dash-side h4 { color: var(--text); font-size: 1rem; margin-bottom: 4px; }
.dash-side .email { color: var(--text-faint); font-size: 0.78rem; margin-bottom: 22px; font-family: var(--font-mono); }
.dash-nav { display: flex; flex-direction: column; gap: 3px; }
.dash-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--text-faint);
    transition: all .18s;
}
.dash-nav a:hover { background: var(--surface-2); color: var(--text); }
.dash-nav a.active {
    background: rgba(212,175,95,0.14);
    color: var(--gold-bright);
}
.dash-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(14px);
    transition: border-color .2s;
}
.stat-card:hover { border-color: var(--border-glow); }
.stat-card .val {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem; font-style: italic;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(212,175,95,0.25);
}
.stat-card .lbl {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* ═════════════════════════════════════════════════════════════
   TABLES
   ═════════════════════════════════════════════════════════════ */
.table-wrap {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    backdrop-filter: blur(14px);
}
.table-head { padding: 18px 22px; border-bottom: 1px solid var(--border-soft); }
.table-head h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--text);
}
.tbl { width: 100%; border-collapse: collapse; }
.tbl th {
    text-align: left;
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-soft);
}
.tbl td {
    padding: 14px 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-soft);
    vertical-align: middle;
}
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover td { background: var(--surface-1); color: var(--text); }
.tbl strong { color: var(--text); }

/* ═════════════════════════════════════════════════════════════
   ADMIN PANEL
   ═════════════════════════════════════════════════════════════ */
.admin-body { background: var(--midnight); min-height: 100vh; }
.admin-top {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(10,11,30,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
    display: flex; align-items: center;
    padding: 0 24px; gap: 16px; z-index: 1000;
}
.admin-top .brand { color: var(--text); }
.admin-top .admin-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 4px 10px;
    border: 1px solid var(--border-glow);
    border-radius: 4px;
}
.admin-wrap {
    display: grid;
    min-height: calc(100vh - var(--nav-h));
    padding-top: var(--nav-h);
}
@media (min-width: 860px) { .admin-wrap { grid-template-columns: 230px 1fr; } }
.admin-side {
    background: var(--surface-1);
    border-right: 1px solid var(--border-soft);
    padding: 18px 12px;
    min-height: calc(100vh - var(--nav-h));
    position: sticky; top: var(--nav-h); align-self: start;
    height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-soft) transparent;
}
.admin-side::-webkit-scrollbar { width: 6px; }
.admin-side::-webkit-scrollbar-thumb { background: var(--border-soft); border-radius: 3px; }
.admin-nav { display: flex; flex-direction: column; gap: 1px; }
.admin-nav a {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--text-faint);
    transition: all .18s;
    white-space: nowrap;
}
.admin-nav a:hover { background: var(--surface-2); color: var(--text); }
.admin-nav a.active { background: rgba(212,175,95,0.14); color: var(--gold-bright); }
.admin-main { padding: 30px 28px; }
.admin-main h2 { color: var(--text); margin-bottom: 22px; font-size: 1.6rem; }

/* ═════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    padding: 80px 24px 32px;
    border-top: 1px solid var(--border-soft);
    background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(139,74,43,0.1), transparent 60%), var(--void);
}
.footer .container { max-width: var(--container); }
.footer-grid {
    display: grid; gap: 48px;
    grid-template-columns: 1fr;
    margin-bottom: 56px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer .brand-foot {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}
.footer .brand-foot em { font-style: italic; color: var(--gold-bright); }
.footer .desc { font-size: 0.9rem; line-height: 1.68; max-width: 280px; color: var(--text-muted); }
.footer h4 {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color .18s;
}
.footer a:hover { color: var(--gold-bright); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
    width: 34px; height: 34px;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--text-faint);
    padding: 0;
    transition: all .2s;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--surface-1); }
.footer .copy {
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    text-align: center;
}

/* ═════════════════════════════════════════════════════════════
   WHATSAPP FAB
   ═════════════════════════════════════════════════════════════ */
.wa-fab, .whatsapp-fab {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: grid; place-items: center;
    box-shadow:
        0 12px 36px rgba(37,211,102,0.5),
        0 0 0 4px rgba(37,211,102,0.18);
    z-index: 900;
    color: #fff;
    transition: transform .3s var(--ease), box-shadow .3s;
    isolation: isolate;
}
.wa-fab::before, .whatsapp-fab::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    animation: waRipple 2.5s ease-out infinite;
    pointer-events: none;
}
@keyframes waRipple {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-fab:hover, .whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow:
        0 16px 42px rgba(37,211,102,0.65),
        0 0 0 6px rgba(37,211,102,0.25);
}
.wa-fab svg, .whatsapp-fab svg {
    width: 28px; height: 28px;
    fill: #fff;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .wa-fab, .whatsapp-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .wa-fab svg, .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* ═════════════════════════════════════════════════════════════
   GROUP SEATS — flight inventory
   ═════════════════════════════════════════════════════════════ */
.seat-filter-bar {
    display: grid; gap: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 28px;
    backdrop-filter: blur(14px);
}
@media (min-width: 640px) { .seat-filter-bar { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .seat-filter-bar { grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr auto auto; align-items: end; } }
.seat-filter-bar .field { display: flex; flex-direction: column; gap: 5px; }
.seat-filter-bar .field label { font-family: var(--font-mono); font-size: 0.64rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.seat-filter-bar .field input, .seat-filter-bar .field select {
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 0.88rem;
    background: var(--surface-1); color: var(--text);
    outline: none; font-family: var(--font-body);
}
.seat-filter-bar .field input:focus, .seat-filter-bar .field select:focus { border-color: var(--gold); }
.seat-filter-bar .field select option { background: var(--midnight); color: var(--text); }

.seat-list { display: grid; gap: 14px; }
.seat-card {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    backdrop-filter: blur(14px);
    transition: all .25s;
}
.seat-card:hover { border-color: var(--border-glow); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
@media (min-width: 700px) { .seat-card { grid-template-columns: 1fr 210px; } }
.seat-main { padding: 22px; }
.seat-side {
    padding: 22px;
    border-top: 1px solid var(--border-soft);
    display: flex; flex-direction: column; justify-content: center;
    background: var(--surface-1);
}
@media (min-width: 700px) {
    .seat-side { border-top: none; border-left: 1px solid var(--border-soft); }
}
.seat-airline { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.airline-mark {
    background: linear-gradient(135deg, var(--midnight), var(--twilight));
    color: var(--gold-bright);
    font-family: var(--font-display); font-style: italic;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 50px; text-align: center; flex-shrink: 0;
    border: 1px solid var(--border-glow);
    box-shadow: inset 0 0 12px rgba(212,175,95,0.15);
}
.airline-name { color: var(--text); font-weight: 600; font-size: 0.95rem; }
.airline-sub { color: var(--text-faint); font-family: var(--font-mono); font-size: 0.72rem; margin-top: 2px; letter-spacing: 0.04em; }
.seat-leg { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border-soft); }
.leg-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crystal);
    margin-bottom: 8px;
    display: inline-block;
}
.leg-body { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.leg-flight { font-family: var(--font-mono); font-size: 0.86rem; color: var(--text-muted); letter-spacing: 0.04em; }
.leg-date { font-family: var(--font-display); font-style: italic; color: var(--gold-bright); font-size: 0.98rem; }
.leg-route { display: flex; align-items: center; gap: 8px; }
.leg-route .ap { color: var(--text); font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; font-family: var(--font-mono); }
.leg-route .arrow { color: var(--gold); font-size: 0.8rem; }
.leg-times { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-muted); }
.seat-notes {
    font-size: 0.82rem; color: var(--text-muted);
    background: var(--surface-1);
    border-left: 2px solid var(--gold);
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 12px;
}
.seat-fare-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.seat-fare {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.1rem;
    color: var(--text);
    line-height: 1;
    text-shadow: 0 0 24px rgba(212,175,95,0.2);
}
.seat-fare-unit {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-faint);
    margin-top: 4px; margin-bottom: 14px;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.seat-low {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 400;
    color: #fca5a5;
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ═════════════════════════════════════════════════════════════
   UTILITIES
   ═════════════════════════════════════════════════════════════ */
.gold { color: var(--gold-bright); }
.text-center { text-align: center; }
code {
    font-family: var(--font-mono);
    font-size: 0.86em;
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    padding: 2px 7px;
    border-radius: 4px;
    color: var(--gold-bright);
}
.action-links { display: flex; gap: 8px; align-items: center; }
.action-links a, .action-links button.danger {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    background: none; border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all .15s;
}
.action-links a:hover { background: var(--surface-1); color: var(--text); }
.action-links button.danger:hover { background: rgba(248,113,113,0.1); color: #fca5a5; }

@media (max-width: 640px) {
    .section { padding: 80px 20px; }
    .page-intro { padding: calc(var(--nav-h) + 60px) 20px 60px; }
    .form-wrap { padding: 22px; }
    .auth-card { padding: 30px 22px; }
    .hero-stats { gap: 24px; }
    .hero-stats .stat strong { font-size: 1.7rem; }
    .seat-main, .seat-side { padding: 16px; }
    .tbl th, .tbl td { padding: 10px 12px; }
    h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .cta-inner { padding: 40px 24px; }
}

/* ═════════════════════════════════════════════════════════════
   PACKAGE FLIGHT INFO — shows departure/return/airline on cards
   ═════════════════════════════════════════════════════════════ */
.pkg-flight {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    margin-bottom: 14px;
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-left: 2px solid var(--gold);
    border-radius: var(--radius-sm);
}
.pkg-flight-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 0.82rem;
}
.pkg-flight-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    flex-shrink: 0;
}
.pkg-flight-row strong {
    color: var(--text);
    font-weight: 500;
    text-align: right;
}

/* ═════════════════════════════════════════════════════════════
   BOOKING SUMMARY CARD — what user is booking
   ═════════════════════════════════════════════════════════════ */
.booking-summary {
    background: var(--surface-2);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(16px);
    margin-bottom: 22px;
}
.booking-summary-head {
    padding: 24px 22px 18px;
    border-bottom: 1px solid var(--border-soft);
}
.booking-summary-head .eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.booking-summary-head h2 {
    font-size: 1.6rem;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}
.booking-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.booking-facts .fact {
    padding: 14px 22px;
    border-bottom: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
}
.booking-facts .fact:nth-child(2n) { border-right: none; }
.booking-facts .fact .lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: .64rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.booking-facts .fact strong {
    color: var(--text);
    font-weight: 500;
    font-size: .96rem;
}

/* ═════════════════════════════════════════════════════════════
   ROOM TYPE SELECTOR
   ═════════════════════════════════════════════════════════════ */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.room-opt {
    cursor: pointer;
    display: block;
}
.room-opt input { position: absolute; opacity: 0; pointer-events: none; }
.room-opt-inner {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 14px;
    background: var(--surface-1);
    transition: all .2s;
}
.room-opt:hover .room-opt-inner {
    border-color: var(--border-glow);
    background: var(--surface-2);
}
.room-opt input:checked + .room-opt-inner {
    border-color: var(--gold);
    background: rgba(212,175,95,0.08);
    box-shadow: 0 0 0 3px rgba(212,175,95,0.12);
}
.room-opt-head { margin-bottom: 8px; }
.room-opt-head strong {
    display: block;
    color: var(--text);
    font-size: .92rem;
    margin-bottom: 2px;
}
.room-opt-head span {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    color: var(--text-faint);
    text-transform: uppercase;
}
.room-opt-price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold-bright);
}
.room-opt-price small {
    display: block;
    font-style: normal;
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--text-faint);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ═════════════════════════════════════════════════════════════
   CONFIRMATION PAGE
   ═════════════════════════════════════════════════════════════ */
.confirm-banner {
    text-align: center;
    padding: 40px 24px;
    background: var(--surface-2);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}
.confirm-icon {
    width: 60px; height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    display: grid; place-items: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 0 0 6px rgba(74,222,128,0.15);
}
.confirm-ref {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: var(--surface-3);
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    font-family: var(--font-mono);
}
.confirm-ref .lbl { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.confirm-ref strong { color: var(--gold-bright); font-size: .95rem; letter-spacing: .12em; }

.confirm-card {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(14px);
}
.confirm-card-head {
    padding: 22px;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
.confirm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.confirm-cell {
    padding: 14px 22px;
    border-bottom: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
}
.confirm-cell:nth-child(2n) { border-right: none; }
.confirm-cell .lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: .64rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}
.confirm-cell strong { color: var(--text); font-weight: 500; }

.confirm-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.confirm-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.confirm-steps li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.confirm-steps strong {
    color: var(--text);
    font-size: .92rem;
    font-weight: 600;
}
.confirm-steps span {
    color: var(--text-muted);
    font-size: .82rem;
}
.step-num {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(212,175,95,0.12);
    border: 1px solid var(--border-glow);
    display: grid; place-items: center;
    font-family: var(--font-mono);
    font-size: .74rem;
    color: var(--gold-bright);
    font-weight: 600;
}

/* Print friendly */
@media print {
    .navbar, .mobile-menu, .footer, .wa-fab, button { display: none !important; }
    body { background: white !important; color: black !important; }
    .confirm-card, .confirm-banner { border: 1px solid #ccc !important; background: white !important; }
    .confirm-card-head h3, .confirm-cell strong, .confirm-banner h1 { color: black !important; }
}

/* ═════════════════════════════════════════════════════════════
   SECTOR BUILDER (admin) — multi-leg flight form
   ═════════════════════════════════════════════════════════════ */
#sectors-container { display: flex; flex-direction: column; gap: 14px; }
.sector-row {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 14px;
    position: relative;
}
.sector-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.sector-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--text-ink);
    display: grid; place-items: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .78rem;
    flex-shrink: 0;
}
.sector-dir { max-width: 140px; flex: 0 0 auto; }
.sector-leg { max-width: 80px; flex: 0 0 auto; }
.sector-remove {
    margin-left: auto;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    color: #fca5a5;
    background: transparent;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: all .2s;
}
.sector-remove:hover {
    border-color: #fca5a5;
    background: rgba(239,68,68,0.1);
}
.sector-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
@media (min-width: 800px) {
    .sector-fields { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1fr; }
}

/* Display helper for leg/sector layovers in seat-card */
.leg-continued { padding-top: 6px; }
.leg-layover {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--crystal);
    padding: 4px 0 4px 22px;
    letter-spacing: .04em;
}

/* ═════════════════════════════════════════════════════════════
   NEWS — "Resource of News" listing & detail
   ═════════════════════════════════════════════════════════════ */
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-card {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px 26px;
    backdrop-filter: blur(14px);
    transition: border-color .2s, transform .2s;
}
.news-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.news-cat {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .18em;
    color: var(--gold);
    padding: 2px 10px;
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    background: rgba(212,175,95,0.06);
}
.news-date {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-faint);
    letter-spacing: .04em;
}
.news-source {
    font-size: .76rem;
    color: var(--text-muted);
    font-style: italic;
}
.news-card h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.3;
}
.news-card h3 a { color: inherit; transition: color .2s; }
.news-card h3 a:hover { color: var(--gold-bright); }
.news-snippet {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 14px;
}
.news-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
}
.news-link {
    font-family: var(--font-mono);
    font-size: .76rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-bright);
}
.news-source-link {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-faint);
    letter-spacing: .04em;
}
.news-source-link:hover { color: var(--text); }

.news-article .news-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
    white-space: pre-wrap;
}
.news-article .news-body strong { color: var(--text); }

/* ═════════════════════════════════════════════════════════════
   AD SLOT WRAPPER
   ═════════════════════════════════════════════════════════════ */
.ad-slot {
    margin: 22px 0;
    padding: 8px;
    background: var(--surface-1);
    border: 1px dashed var(--border-soft);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
    min-height: 60px;
}
.ad-slot::before {
    content: 'Advertisement';
    display: block;
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 4px;
}
.ad-slot ins { display: block; margin: 0 auto; }

/* ═════════════════════════════════════════════════════════════
   ACCESSIBILITY — respect motion preference + bulletproof visibility
   ═════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Bulletproof: if animations fail to load/run for ANY reason,
   make sure hero content stays visible */
.hero-eyebrow, .hero h1, .hero .lead, .hero-actions, .hero-stats, .hero-visual, .kaaba-svg, .kaaba-status {
    opacity: 1;
}

/* ═════════════════════════════════════════════════════════════
   HERO UNIFIED SEARCH — tabbed search bar (packages/hotels/seats)
   ═════════════════════════════════════════════════════════════ */
.hero-search {
    max-width: var(--container);
    margin: -40px auto 0;
    background: rgba(10, 11, 30, 0.7);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep), 0 0 60px rgba(212,175,95,0.1);
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.hero-search::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.hero-search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-soft);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.hero-tab {
    flex: 1;
    min-width: 130px;
    padding: 16px 22px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.hero-tab:hover { color: var(--text); background: var(--surface-1); }
.hero-tab.active {
    color: var(--gold-bright);
    border-bottom-color: var(--gold);
    background: rgba(212,175,95,0.06);
}

.hero-search-form {
    display: none;
    padding: 22px;
    gap: 14px;
}
.hero-search-form.active { display: grid; }
@media (min-width: 760px) {
    .hero-search-form { grid-template-columns: 1fr 1fr 1.2fr 1fr auto; align-items: end; }
}
.hero-search-form .field { display: flex; flex-direction: column; gap: 6px; }
.hero-search-form label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-search-form input,
.hero-search-form select {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--surface-1);
    outline: none;
    transition: all .2s;
}
.hero-search-form input::placeholder { color: var(--text-faint); }
.hero-search-form input:focus,
.hero-search-form select:focus {
    border-color: var(--gold);
    background: var(--surface-2);
    box-shadow: 0 0 0 3px rgba(212,175,95,0.12);
}
.hero-search-form select option { background: var(--midnight); color: var(--text); }

/* ═════════════════════════════════════════════════════════════
   SEARCH CONTEXT BANNER (shows what user searched on listing pages)
   ═════════════════════════════════════════════════════════════ */
.search-context {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 18px;
    background: var(--surface-2);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    margin-bottom: 22px;
    backdrop-filter: blur(12px);
}
.search-context-label {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}
.search-context-tag {
    font-size: 0.86rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
}
.search-context-tag strong { color: var(--text); font-weight: 500; }
.search-context-clear {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
}
.search-context-clear:hover { color: var(--gold-bright); background: var(--surface-1); }

/* ═════════════════════════════════════════════════════════════
   ICONS — gold inline SVG icons (use currentColor)
   ═════════════════════════════════════════════════════════════ */
.icon {
    flex-shrink: 0;
    vertical-align: -3px;
    margin-right: 8px;
    color: var(--gold);
    transition: color .2s, transform .2s;
}
.icon:last-child { margin-right: 0; margin-left: 6px; }

/* Buttons inherit currentColor — but on gold buttons, use ink */
.btn-primary .icon { color: var(--text-ink); }
.btn-sky .icon     { color: var(--text-ink); }

/* Admin sidebar — tighter alignment */
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-nav a .icon {
    color: var(--gold);
    margin-right: 0;
    opacity: 0.85;
}
.admin-nav a:hover .icon  { color: var(--gold-bright); opacity: 1; }
.admin-nav a.active .icon { color: var(--gold-bright); opacity: 1; }

/* Hero search tabs */
.hero-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hero-tab .icon {
    color: var(--text-faint);
    margin-right: 0;
    transition: color .2s;
}
.hero-tab:hover .icon  { color: var(--text); }
.hero-tab.active .icon { color: var(--gold-bright); }

/* In primary buttons, icon stays dark/ink */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-primary .icon { margin-right: 0; }

/* ═════════════════════════════════════════════════════════════
   HOTEL AVAILABILITY BADGE — date range on hotel cards
   ═════════════════════════════════════════════════════════════ */
.hotel-availability {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 8px 12px;
    margin: 10px 0 12px;
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-left: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
}
.hotel-availability-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.hotel-availability strong {
    color: var(--text);
    font-weight: 500;
    text-align: right;
}
