/* ================================================================
   LA TRAVEL · style.css
   Premium Transport Website — v2.0
   Fonts: Fraunces (display), DM Sans (body)
   Palette: Deep Navy #0A0F1E | Gold #C9A84C | Cream #F5F0E8 | White
================================================================ */

/* ── IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; }
ul, ol { list-style: none; }

/* ── ROOT TOKENS ── */
:root {
  --navy:        #0A0F1E;
  --navy-mid:    #111828;
  --navy-soft:   #1A2235;
  --gold:        #C9A84C;
  --gold-light:  #E0C06E;
  --gold-pale:   rgba(201,168,76,0.15);
  --cream:       #F5F0E8;
  --cream-dark:  #EDE5D6;
  --white:       #FFFFFF;
  --text-dark:   #0D1117;
  --text-mid:    #3D4455;
  --text-muted:  #7A8099;
  --border:      rgba(255,255,255,0.1);
  --border-dark: rgba(0,0,0,0.08);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --nav-h:       84px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-hero:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ================================================================
   LOADING SCREEN
================================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

#loading-screen.done { opacity: 0; visibility: hidden; }

.loading-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.9;
  animation: loadPulse 1.5s ease infinite;
}

.loading-bar-wrap {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loadBar 1.6s var(--ease-out) forwards;
}

.loading-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

@keyframes loadBar { from { width: 0%; } to { width: 100%; } }
@keyframes loadPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* ================================================================
   SITE HEADER — fixed navbar
================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#navbar {
  position: relative;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  gap: 12px;
  color: var(--white);
  background: rgba(10, 15, 30, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, border-color 0.5s;
}

#navbar.scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-color: rgba(255,255,255,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-icon-btn svg {
  display: block;
}

.nav-icon-btn:hover {
  transform: scale(1.06);
  opacity: 0.92;
}

.nav-icon-wa { background: #25D366; }
.nav-icon-viber { background: #665CAC; }

.nav-email-btn {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
}

.nav-email-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.4);
}

.nav-brand-text {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 1px 14px rgba(10,15,30,0.55);
}

.nav-brand-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: -2px;
  text-shadow: 0 1px 12px rgba(10,15,30,0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  position: relative;
  transition: color 0.3s;
  text-shadow: 0 1px 14px rgba(10,15,30,0.55);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  border-radius: 100px;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s,
    opacity 0.45s var(--ease),
    visibility 0.45s,
    max-width 0.45s var(--ease),
    padding 0.45s var(--ease),
    margin 0.45s var(--ease),
    border-width 0.45s ease !important;
  white-space: nowrap;
  text-shadow: none !important;
  max-width: 280px;
}

/* Skrito v heroju in ob dnu (brez podvajanja z gumbi v #home / #kontakt) — razred doda script.js */
.nav-actions .nav-cta.nav-cta--suppressed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  border-width: 0;
  overflow: hidden;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================================================
   MOBILE DRAWER
================================================================ */
#drawer {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

#drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 28px; right: 6%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.drawer-close:hover { opacity: 1; }

#drawer a {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

#drawer a:hover { color: var(--gold-light); }

.drawer-tel {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  letter-spacing: 0.06em !important;
}

/* ================================================================
   HERO SECTION
================================================================ */
#home {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease), transform 8s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}

.hero-slide:nth-child(1) { background-image: url('assets/azurna_obala.png'); background-position: center 35%; }
.hero-slide:nth-child(2) { background-image: url('assets/hero_airport.png'); background-position: center 50%; }
.hero-slide:nth-child(3) { background-image: url('assets/alps.png'); background-position: center 40%; }

@media (max-width: 640px) {
  .hero-slide {
    background-position: 60% center;
  }
}

/* layered overlay — bottom darkens, right side stays bright */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.45) 35%, rgba(10,15,30,0.1) 65%, rgba(10,15,30,0.25) 100%),
    linear-gradient(to right, rgba(10,15,30,0.55) 0%, rgba(10,15,30,0.0) 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 7% 80px;
  max-width: 780px;
  width: 100%;
}

/* slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 42px;
  right: 7%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  will-change: transform, opacity;
}

.hero-indicator {
  width: 2px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.hero-indicator.active { background: rgba(255,255,255,0.15); }

.hero-indicator-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  border-radius: 2px;
}

.hero-indicator.active .hero-indicator-fill {
  animation: indicFill 6s linear forwards;
}

@keyframes indicFill { from { height: 0%; } to { height: 100%; } }

/* eye-line: horizontal gold rule */
.hero-eyeline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  will-change: transform, opacity;
}

.hero-eyeline-line {
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-eyeline-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
  will-change: transform, opacity;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 44px;
  will-change: transform, opacity;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  will-change: transform, opacity;
}

/* STATS BAR */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(10,15,30,0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: stretch;
  will-change: transform, opacity;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  border-right: 1px solid rgba(255,255,255,0.07);
  gap: 2px;
}

.hero-stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.stat-label-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.55);
  animation: statGoldPulse 2s ease-in-out infinite;
}

@keyframes statGoldPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201,168,76,0.45);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(201,168,76,0);
  }
}

/* Hero vstop — po koncu loading zaslona (razred doda script.js) */
@keyframes heroSettle {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettleX {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroStatsLift {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#home.hero--entrance-ready .hero-eyeline {
  animation: heroSettle 1.2s var(--ease-hero) 0.12s both forwards;
}

#home.hero--entrance-ready .hero-h1 {
  animation: heroSettle 1.35s var(--ease-hero) 0.32s both forwards;
}

#home.hero--entrance-ready .hero-sub {
  animation: heroSettle 1.22s var(--ease-hero) 0.52s both forwards;
}

#home.hero--entrance-ready .hero-actions {
  animation: heroSettle 1.18s var(--ease-hero) 0.72s both forwards;
}

#home.hero--entrance-ready .hero-indicators {
  animation: heroSettleX 1.1s var(--ease-hero) 0.88s both forwards;
}

#home.hero--entrance-ready .hero-stats {
  animation: heroStatsLift 1.15s var(--ease-hero) 1.02s both forwards;
}

@media (prefers-reduced-motion: reduce) {
  #home.hero--entrance-ready .hero-eyeline,
  #home.hero--entrance-ready .hero-h1,
  #home.hero--entrance-ready .hero-sub,
  #home.hero--entrance-ready .hero-actions,
  #home.hero--entrance-ready .hero-indicators,
  #home.hero--entrance-ready .hero-stats {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   BUTTONS (global)
================================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.38);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.btn-viber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #665CAC;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-viber:hover {
  background: #7B6FC4;
  transform: translateY(-1px);
}

.btn-viber svg {
  flex-shrink: 0;
  display: block;
}

/* ================================================================
   SECTION COMMONS
================================================================ */
.section-eyeline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyeline-line {
  width: 32px; height: 1px;
  background: var(--gold);
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-tag-dark { color: var(--navy-soft); }

.section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-h2 em { font-style: italic; color: var(--gold); }
.section-h2-white { color: var(--white); }
.section-h2-white em { color: var(--gold-light); }

.section-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 540px;
}

.section-lead-white { color: rgba(255,255,255,0.58); }

/* ================================================================
   PHOTO GALLERY (#storitve) — direktno pod hero (brez booking stripa)
================================================================ */
#storitve.section-galerija {
  padding: 88px 7% 100px;
  background: var(--white);
}

.galerija-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.galerija-header {
  margin-bottom: 48px;
  max-width: 640px;
}

.galerija-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-bottom: 14px;
  width: 100%;
}

.g-col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 560px;
}

.galerija-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.g-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--navy-soft);
  cursor: pointer;
}

.g-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.g-card--tall {
  min-height: 560px;
  height: 560px;
}

.g-col-right .g-card {
  flex: 1;
  min-height: 0;
}

.galerija-bottom-row .g-card {
  min-height: 260px;
  height: 260px;
}

.g-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.g-card:hover img { transform: scale(1.07); }

.g-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 30, 0.92) 0%,
    rgba(10, 15, 30, 0.5) 42%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  pointer-events: none;
}

.g-card:hover .g-card-overlay { opacity: 1; }

.g-card-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.g-card-country {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.g-card-place {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

/* ─── Galerija lightbox ─── */
.galerija-lightbox[hidden] {
  display: none !important;
}

.galerija-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.42s var(--ease-out),
    visibility 0.42s;
}

.galerija-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.galerija-lightbox__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.galerija-lightbox__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(1120px, 100%);
  max-height: min(94vh, 1000px);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.48s var(--ease-out),
    opacity 0.4s var(--ease-out);
}

.galerija-lightbox.is-open .galerija-lightbox__shell {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.galerija-lightbox__close {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.galerija-lightbox__close:hover {
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
}

.galerija-lightbox__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.galerija-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.galerija-lightbox__arrow:hover {
  background: rgba(201, 168, 76, 0.22);
  color: var(--gold-light);
}

.galerija-lightbox__arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.galerija-lightbox__arrow--prev { left: -8px; }
.galerija-lightbox__arrow--next { right: -8px; }

@media (max-width: 720px) {
  .galerija-lightbox__arrow--prev { left: 4px; }
  .galerija-lightbox__arrow--next { right: 4px; }
  .galerija-lightbox__close { top: 8px; right: 8px; }
}

.galerija-lightbox__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerija-lightbox__loader {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  animation: galerijaLbSpin 0.75s linear infinite;
}

.galerija-lightbox__stage.is-loading .galerija-lightbox__loader {
  opacity: 1;
}

@keyframes galerijaLbSpin {
  to { transform: rotate(360deg); }
}

.galerija-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: min(72vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.galerija-lightbox__img.is-visible {
  opacity: 1;
}

.galerija-lightbox__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  flex-shrink: 0;
}

.galerija-lightbox__caption {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.galerija-lightbox__country {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.galerija-lightbox__place {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.galerija-lightbox__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.galerija-lightbox__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.2s, background 0.25s;
}

.galerija-lightbox__dot:hover {
  background: rgba(201, 168, 76, 0.45);
}

.galerija-lightbox__dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.galerija-lightbox__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .galerija-lightbox,
  .galerija-lightbox__shell,
  .galerija-lightbox__img {
    transition-duration: 0.01ms !important;
  }
  .galerija-lightbox__loader {
    animation: none;
    border-top-color: var(--gold-light);
    opacity: 0.6;
  }
}

.galerija-footer {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.galerija-tagline {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}

.galerija-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   ROUTES (diagonal clip shape)
================================================================ */
#destinacije {
  position: relative;
  background: var(--navy);
  padding: 120px 7% 140px;
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin: -60px 0;
  z-index: 2;
}

.routes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.routes-left { }
.routes-right { }

.route-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.route-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: padding-left 0.35s var(--ease);
}

.route-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.route-item:hover { padding-left: 8px; }

.route-arrow {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.route-item:hover .route-arrow { transform: translateX(4px); }

.route-from {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.route-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.route-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Route visual map (SVG animated) */
.route-map-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ================================================================
   WHY US  — asymmetric two-col
================================================================ */
#zakaj {
  position: relative;
  padding: 160px 7% 120px;
  background: var(--cream);
  z-index: 3;
}

.zakaj-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zakaj-img-wrap {
  position: relative;
}

.zakaj-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.zakaj-img-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.badge-icon { font-size: 2rem; }

.badge-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.badge-lbl {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* amenities icons */
.amenities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: border-color 0.3s, color 0.3s;
}

.amenity:hover { border-color: var(--gold); color: var(--navy); }
.amenity-icon { font-size: 0.9rem; }

.perks { display: flex; flex-direction: column; gap: 16px; }

.perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  transition: box-shadow 0.3s, transform 0.3s;
}

.perk:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.perk-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.perk-title {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.perk-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   LOCATIONS SEO SECTION
================================================================ */
#lokacije {
  padding: 100px 7%;
  background: var(--white);
}

.lokacije-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.lokacija-card {
  padding: 40px;
  padding-bottom: 48px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}

.lokacija-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.lokacija-icon-svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.lokacija-icon-svg svg {
  display: block;
  width: 28px;
  height: 28px;
}

.lokacija-card-arrow {
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  transform: translateX(-4px);
  transition: transform 0.35s var(--ease-out);
  pointer-events: none;
}

.lokacija-card:hover .lokacija-card-arrow {
  transform: translateX(0);
}

.lokacija-card h2,
.lokacija-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.lokacija-card p {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ================================================================
   TESTIMONIALS
================================================================ */
#mnenja {
  padding: 100px 7%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#mnenja::before {
  content: '★';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28vw;
  color: rgba(255,255,255,0.02);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: background 0.3s, border-color 0.3s;
}

.review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.25);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.review-loc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ================================================================
   FAQ SECTION
================================================================ */
#faq {
  padding: 100px 7%;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}

.faq-list { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* MAP / availability sidebar */
.faq-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  height: auto;
  position: sticky;
  top: 100px;
  align-self: start;
}

/* ================================================================
   CTA CONTACT
================================================================ */
#kontakt {
  padding: 120px 7%;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kontakt-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.kontakt-content { position: relative; z-index: 1; }

.kontakt-content .section-h2 { margin-bottom: 16px; }

.kontakt-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.kontakt-btn-primary {
  font-size: 0.72rem;
  padding: 14px 10px;
}

.kontakt-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}

.kontakt-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 10px;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: normal;
}

.kontakt-actions > a svg {
  flex-shrink: 0;
}

.kontakt-btn-viber { color: #9179EE; border-color: #9179EE; }
.kontakt-btn-viber:hover { background: rgba(145,121,238,0.1); }
.kontakt-btn-email { color: var(--gold); border-color: var(--gold); }
.kontakt-btn-email:hover { background: rgba(201,168,76,0.08); }

@media (max-width: 720px) {
  .kontakt-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.kontakt-phone-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 36px;
}

.kontakt-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.k-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

.k-badge-icon { color: var(--gold); font-size: 1.1rem; }

/* MOBILE STICKY BAR */
#mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  align-items: stretch;
  background: rgba(10, 15, 30, 0.38);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 5px 2.5% max(4px, env(safe-area-inset-bottom, 0px));
  gap: 6px;
  z-index: 499;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.32s var(--ease-out),
    visibility 0.32s,
    background 0.22s ease,
    backdrop-filter 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

#mobile-bar:active,
#mobile-bar:has(.mobile-bar-btn:active) {
  background: rgba(10, 15, 30, 0.55);
  border-top-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.14);
}

.mobile-bar-btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s ease, filter 0.15s ease;
}

.mobile-bar-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.mobile-bar-btn:hover { opacity: 0.88; }

#mobile-bar:active .mobile-bar-btn,
#mobile-bar:has(.mobile-bar-btn:active) .mobile-bar-btn {
  filter: brightness(1.06);
}

.mobile-call {
  background: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.65);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
/* Blago crvena slušalica = asocijacija na poziv */
.mobile-call .mobile-call-icon {
  display: block;
  color: #c23a3a;
}

.mobile-wa   { background: rgba(37, 211, 102, 0.35); color: white; border: 1px solid rgba(255,255,255,0.12); }
.mobile-viber { background: rgba(102, 92, 172, 0.4); color: white; border: 1px solid rgba(255,255,255,0.1); }
.mobile-email { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.1); }

.mobile-viber .mobile-viber-icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}

footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  letter-spacing: 0.06em;
}

.footer-links a:hover { color: var(--gold-light); }

/* ================================================================
   REVEAL ANIMATIONS (GSAP triggers via class)
================================================================ */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ================================================================
   KEYFRAMES
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .galerija-grid {
    grid-template-columns: 1fr;
  }
  .g-card--tall {
    height: auto;
    min-height: 420px;
  }
  .g-col-right {
    height: auto;
    flex-direction: row;
    min-height: 0;
  }
  .g-col-right .g-card {
    flex: 1;
    min-height: 220px;
    height: 240px;
  }
  .galerija-bottom-row .g-card {
    height: auto;
    min-height: 240px;
  }
  .routes-layout { grid-template-columns: 1fr; gap: 48px; }
  .route-map-wrap { min-height: 280px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 70px; }
  /* Glavni meni (ul); CTA je na mobilu/tabletu v #mobile-bar */
  #navbar > ul.nav-links { display: none !important; }
  .nav-actions .nav-cta { display: none !important; }
  .nav-icon-btn { display: none !important; }
  .nav-email-btn { display: none !important; }
  .hamburger { display: flex; }

  .zakaj-layout { grid-template-columns: 1fr; gap: 48px; }
  .zakaj-img-badge { right: 0; bottom: -20px; }

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

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

  .faq-layout { grid-template-columns: 1fr; }
  .faq-map-wrap { height: auto; position: static; }

  /* Sticky bar: skrita v heroju; prikaže se po scrollu (razred mobile-bar--visible v script.js) */
  #mobile-bar {
    display: flex;
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.32s var(--ease-out),
      visibility 0.32s,
      background 0.22s ease,
      backdrop-filter 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  #mobile-bar.mobile-bar--visible {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  @media (prefers-reduced-motion: reduce) {
    #mobile-bar {
      transition: transform 0.32s var(--ease-out), visibility 0.32s;
    }
  }

  body.mobile-bar-pad {
    padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
  }

  #destinacije { clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%); }
}

@media (max-width: 640px) {
  .g-col-right {
    flex-direction: column;
    height: auto;
  }
  .g-col-right .g-card {
    min-height: 200px;
    height: 220px;
    flex: none;
  }
  .g-card--tall {
    min-height: 320px;
    height: auto;
  }
  .galerija-bottom-row { grid-template-columns: 1fr; }
  .galerija-bottom-row .g-card { min-height: 220px; height: auto; }
  .lokacije-grid { grid-template-columns: 1fr; }
  .kontakt-phone-num { font-size: 1.5rem; }
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  /* Hero: statistike v toku pod CTA — zapolnijo praznino, ob skrolu izginejo z herojem */
  #home {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  .hero-content {
    padding: 0 7% 8px;
  }

  .hero-indicators {
    bottom: auto;
    top: 22%;
    right: 5%;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin: 0;
    padding-bottom: max(6px, env(safe-area-inset-bottom, 0px));
    background: rgba(10, 15, 30, 0.38);
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    flex-shrink: 0;
  }

  .hero-stat {
    flex: none;
    min-width: 0;
    padding: 9px 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 3px;
  }

  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-child(n + 3) { border-bottom: none; }

  .stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: rgba(214, 201, 150, 0.75);
  }

  .stat-label {
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.34);
    line-height: 1.2;
    text-align: center;
  }

  .stat-label-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .stat-pulse-dot {
    width: 5px;
    height: 5px;
    opacity: 0.85;
  }
}

/* ================================================================
   FAQ MOMENT CARD (airport story — no duplicate CTAs)
================================================================ */
.faq-moment-card {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}

.faq-moment-scene {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-moment-scene svg {
  width: 100%;
  height: auto;
  display: block;
}

.faq-moment-body {
  padding: 26px 26px 28px;
}

.faq-moment-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-moment-title {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.faq-moment-title em {
  color: var(--gold-light);
  font-style: italic;
}

.faq-moment-text {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  margin-bottom: 18px;
}

.faq-moment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.faq-moment-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

