/* ============================================================
   VIPCT — Luxury Dark Theme
   Deep Navy · Real Gold · Playfair + Poppins
   ============================================================ */

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

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  color-scheme: dark;

  /* Deep luxury backgrounds */
  --bg:          #0C0F1A;
  --bg-solid:    #0C0F1A;
  --surface:     #111520;
  --surface-2:   #161A28;
  --surface-3:   #1C2133;
  --surface-glass: rgba(255, 255, 255, 0.04);

  /* Text */
  --ink:         #F0EDE8;
  --ink-2:       rgba(240, 237, 232, 0.82);
  --ink-3:       rgba(240, 237, 232, 0.55);
  --ink-4:       rgba(240, 237, 232, 0.35);
  --muted:       rgba(240, 237, 232, 0.60);
  --soft:        rgba(240, 237, 232, 0.45);

  /* Real gold accent system */
  --gold:        #C9A84C;
  --gold-2:      #D4B460;
  --gold-3:      #E8CC88;
  --gold-4:      #F5E4B0;
  --gold-dark:   #A08030;
  --gold-glow:   rgba(201, 168, 76, 0.22);
  --gold-line:   rgba(201, 168, 76, 0.18);
  --gold-subtle: rgba(201, 168, 76, 0.08);

  /* Legacy compat tokens */
  --cream:       #111520;
  --cream-2:     #161A28;
  --cream-ink:   #F0EDE8;
  --cream-muted: rgba(240, 237, 232, 0.60);
  --cream-line:  rgba(255, 255, 255, 0.08);

  --platinum:    rgba(201, 168, 76, 0.55);
  --platinum-line: rgba(201, 168, 76, 0.14);

  /* UI utility */
  --whatsapp:    #25d366;
  --danger:      #f05060;
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Geometry */
  --max:         1200px;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --radius-sm:   6px;
  --nav-h:       80px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.5);
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-lg:   0 20px 80px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.28),
                 0 2px 8px rgba(201, 168, 76, 0.14);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.5),
                 0 8px 32px rgba(0, 0, 0, 0.3);

  /* Section rhythm */
  --section-pad: 88px;
  --card-gap:    24px;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in:     cubic-bezier(0.55, 0, 1, 0.45);
  --dur-fast:    150ms;
  --dur-mid:     260ms;
  --dur-slow:    380ms;
  --dur-hero:    600ms;
}

/* ── 2. RESET & BASE ───────────────────────────────────���───── */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg-solid);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.rtl { direction: rtl; }
.rtl     { direction: rtl; }

main { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }

/* ── 3. SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ── 4. LAYOUT PRIMITIVES ─────────────────────────────────── */
.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  scroll-margin-top: var(--nav-h);
}
.section.tight { padding: 48px 0; }
.section.light-surface {
  background: var(--surface);
  isolation: isolate;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.span-3  { grid-column: span 3; }
.span-4  { grid-column: span 4; }
.span-5  { grid-column: span 5; }
.span-6  { grid-column: span 6; }
.span-7  { grid-column: span 7; }
.span-8  { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] { display: none !important; }

/* ── 5. TYPOGRAPHY ─────────────────────────────────────────── */
h1 {
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: #F0EDE8;
}

h2, h3 { text-wrap: balance; color: var(--ink); }

.section-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  color: var(--ink);
}

/* Eyebrow — gold pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  background: rgba(201, 168, 76, 0.1);
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.eyebrow::before,
.eyebrow::after { display: none; }

.lead {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 32px;
  font-weight: 400;
}

.help {
  color: var(--ink-4);
  font-size: 12.5px;
  margin-bottom: 0;
}

/* ── 6. FOCUS & ACCESSIBILITY ──────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 7. BUTTONS ────────────────────────────────────────────── */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-fast) var(--ease-spring),
    background var(--dur-mid) ease,
    border-color var(--dur-mid) ease,
    box-shadow var(--dur-mid) ease,
    color var(--dur-mid) ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.btn:active { transform: translateY(0) scale(0.99); }

/* Primary button: gold gradient */
.btn.primary {
  background: linear-gradient(135deg, #D4B460 0%, #C9A84C 50%, #A08030 100%);
  color: #0C0F1A;
  border: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn.primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s var(--ease-out);
}
.btn.primary:hover::after { left: 160%; }
.btn.primary:hover {
  background: linear-gradient(135deg, #E8CC88 0%, #D4B460 50%, #B8952C 100%);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
  transform: translateY(-3px);
}
.btn.primary:active { transform: translateY(0) scale(0.985); }

/* WhatsApp button */
.btn.whatsapp {
  background: linear-gradient(135deg, #40e37e 0%, #20c05a 50%, #18a84e 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(32, 192, 90, 0.24);
}
.btn.whatsapp:hover {
  background: linear-gradient(135deg, #4eea8a 0%, #2acf65 50%, #20b355 100%);
  box-shadow: 0 8px 28px rgba(32, 192, 90, 0.36);
  transform: translateY(-3px);
}

/* Outline button */
.btn.outline {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-2);
}
.btn.outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-3);
}

.btn-large { min-height: 56px; padding: 15px 34px; font-size: 13px; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ── 8. HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 380ms ease,
    box-shadow 380ms ease,
    border-color 380ms ease,
    backdrop-filter 380ms ease;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--nav-h);
  padding-block: 12px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  transition: opacity var(--dur-fast) ease;
}
.brand:hover { opacity: 0.8; }

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgba(201, 168, 76, 0.06);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 36px; height: 36px; object-fit: contain; }

.brand-name {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-meta {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-links a,
.language-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(240, 237, 232, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--dur-mid) var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--gold); font-weight: 700; }
.nav-links a.active::after { width: 60%; }

.language-links {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.05);
}
.language-links a {
  min-width: 38px;
  border-radius: 5px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 10px;
}
.language-links a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.14);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.language-links a:hover { color: var(--gold-2); background: rgba(201, 168, 76, 0.1); }

/* Nav CTA button */
.nav-cta-btn,
.nav-cta-static {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #D4B460 0%, #C9A84C 50%, #A08030 100%) !important;
  color: #0C0F1A !important;
  border: none !important;
  box-shadow: 0 3px 14px rgba(201, 168, 76, 0.35) !important;
  transition: box-shadow var(--dur-mid) ease, transform var(--dur-fast) var(--ease-spring) !important;
}
.nav-cta-btn:hover,
.nav-cta-static:hover {
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.5) !important;
  transform: translateY(-1px) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid) ease;
}
.nav-toggle:hover { border-color: rgba(201, 168, 76, 0.5); background: rgba(201, 168, 76, 0.06); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 9. MOBILE NAV DRAWER ──────────────────────────────────── */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 13, 24, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 48px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  border-left: 1px solid rgba(201, 168, 76, 0.12);
  visibility: hidden;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}
.mobile-nav-links a {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 400;
  color: rgba(240, 237, 232, 0.45);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: color var(--dur-fast) ease;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--gold); }

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.mobile-nav-cta .btn { justify-content: center; }

.mobile-nav-lang {
  display: flex;
  gap: 8px;
}
.mobile-nav-lang a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 14px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.mobile-nav-lang a.active, .mobile-nav-lang a:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.44);
}

/* ── 10. FORM FIELDS ───────────────────────────────────────── */
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
}

.field input,
.field select {
  min-height: 46px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: rgba(240, 237, 232, 0.28); }
.field select option { background: #161A28; color: var(--ink); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

/* ── 11. HERO ──────────────────────────────────────────────── */
.hero {
  min-height: clamp(520px, 72vh, 840px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050810;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.58);
  transform-origin: center;
  animation: hero-drift 20s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.06) translateX(-1%) translateY(-0.5%); }
  to   { transform: scale(1.00) translateX(0%) translateY(0.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: scale(1.02); }
}

/* Hero dark overlay — rich cinematic */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(5, 8, 16, 0.95) 0%, rgba(5, 8, 16, 0.7) 45%, rgba(5, 8, 16, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.2) 0%, rgba(5, 8, 16, 0.92) 100%);
}

/* Gold accent line at base */
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201, 168, 76, 0.5) 35%, rgba(232, 204, 136, 0.6) 50%, rgba(201, 168, 76, 0.5) 65%, transparent 95%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  z-index: 1;
}

/* Hero text */
.hero h1 { color: #F0EDE8; }
.hero .lead { color: rgba(240, 237, 232, 0.72); }

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0;
}
.hero-proof-row span {
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  padding-top: 12px;
  color: rgba(240, 237, 232, 0.48);
  font-size: 12px;
  line-height: 1.5;
}
.hero-proof-row strong {
  display: block;
  color: #F0EDE8;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.hero-actions { margin-top: 6px; }
.hero-help { margin-top: 16px; }

/* Hero social badge */
.hero-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: rgba(240, 237, 232, 0.9);
  margin-bottom: 22px;
}
.badge-stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* ── 12. HOME HERO ─────────────────────────────────────────── */
.home-hero {
  min-height: 100dvh;
  min-height: 100vh;
  align-items: stretch;
}

.home-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 5.8vw, 84px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #F0EDE8;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: calc(var(--nav-h) + 72px) 0 88px;
  position: relative;
  z-index: 1;
}

/* Override hero-content when inside home-hero-grid */
.home-hero-grid .hero-content {
  max-width: none;
  padding: 0;
}

/* Widget bullets (used in hero booking widget) */
.widget-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: grid;
  gap: 9px;
}
.widget-bullets li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.widget-bullets li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── 13. BOOKING WIDGET ────────────────────────────────────── */
.booking-widget {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: rgba(10, 14, 24, 0.85);
  color: var(--ink);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  position: relative;
  overflow: hidden;
}
/* Gold top accent */
.booking-widget::before {
  content: "";
  display: block;
  height: 2px;
  margin: -32px -32px 24px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-2), var(--gold-dark), transparent);
}
.booking-widget::after { content: none; }

.booking-widget-head {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
}
.booking-widget-head span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.booking-widget-head strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

/* Field overrides inside widget */
.booking-widget .field label { color: rgba(240, 237, 232, 0.5); }
.booking-widget .field input,
.booking-widget .field select {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.1);
}
.booking-widget .field input::placeholder { color: rgba(240, 237, 232, 0.28); }
.booking-widget .field input:focus,
.booking-widget .field select:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.booking-widget .btn { width: 100%; }

.widget-field-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10px;
}

.booking-widget-wa {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  transition: color var(--dur-fast) ease;
}
.booking-widget-wa:hover { color: var(--ink); }

/* ── 14. STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  border-block: 1px solid rgba(201, 168, 76, 0.12);
  background: var(--surface);
  overflow: hidden;
  padding: 0;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .stats-bar-inner { animation: none; justify-content: center; width: 100%; }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 44px;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  white-space: nowrap;
  flex-shrink: 0;
}
.stat-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  max-width: 110px;
  line-height: 1.4;
}
.stat-item::before {
  content: "◆";
  font-size: 5px;
  color: var(--gold);
  opacity: 0.4;
  margin-right: -6px;
}

/* ── 15. TRUST STRIP ───────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.trust-item {
  background: var(--surface);
  padding: 20px 18px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  position: relative;
  transition: background var(--dur-mid) ease;
}
.trust-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur-mid) ease;
}
.trust-item:hover { background: var(--surface-2); }
.trust-item:hover::before { opacity: 1; }

.trust-item-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.85;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.trust-item span {
  color: var(--ink-3);
  font-size: 11px;
  line-height: 1.5;
}

/* ── 16. SECTION HEAD ──────────────────────────────────────── */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 44px;
}
.section-head.centered {
  align-items: center;
  text-align: center;
}
.section-head-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.section-head-text {
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}
.section-head > p {
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
}

/* ── 17. CARDS ─────────────────────────────────────────────── */
.card {
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) ease,
    box-shadow var(--dur-mid) ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card .actions { margin-top: auto; padding-top: 20px; }
.card h2,
.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
}
.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}
.service-card,
.fleet-card {
  will-change: transform;
  cursor: default;
}
.service-card .actions .btn { flex: 1 1 auto; white-space: nowrap; }

/* ── 18. MEDIA ─────────────────────────────────────────────── */
.media {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.fleet-card .media { aspect-ratio: 4 / 3; }

.media picture { display: block; width: 100%; height: 100%; }
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) ease;
  filter: saturate(0.85) brightness(0.95);
}
.card:hover .media img {
  transform: scale(1.06);
  filter: saturate(1.0) brightness(1.0);
}

/* image overlay */
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
  opacity: 0.8;
  transition: opacity var(--dur-mid) ease;
}
.card:hover .media::after { opacity: 0.45; }

/* ── 19. PILLS ─────────────────────────────────────────────── */
.pill-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

.pill,
.meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── 20. ROUTE CARDS ───────────────────────────────────────── */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.route-card {
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-left: 3px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface);
  min-height: 180px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) ease,
    box-shadow var(--dur-mid) ease;
}
.route-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur-mid) ease;
}
.route-card::after {
  content: "→";
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 16px;
  color: var(--gold);
  opacity: 0.35;
  transform: translateX(0);
  transition: opacity var(--dur-mid) ease, transform var(--dur-mid) var(--ease-out);
}
.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.45);
  border-left-color: var(--gold);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}
.route-card:hover::before { opacity: 1; }
.route-card:hover::after { opacity: 1; transform: translateX(3px); }

.route-card > span {
  color: var(--ink-3);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.route-card strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-block: 10px;
  display: block;
  font-family: "Poppins", Arial, sans-serif;
}
.route-card > span:last-child {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* ── 21. FEATURE BAND ──────────────────────────────────────── */
.feature-band {
  background: var(--surface-2);
  border-block: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
}
.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.feature-band .section-head h2 { max-width: 560px; color: var(--ink); }
.feature-band .eyebrow { color: var(--gold-2); background: rgba(201, 168, 76, 0.1); border-color: rgba(201, 168, 76, 0.22); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: border-color var(--dur-mid) ease, transform var(--dur-mid) var(--ease-out), background var(--dur-mid) ease;
}
.feature-item:hover {
  border-color: rgba(201, 168, 76, 0.32);
  transform: translateY(-5px);
  background: rgba(201, 168, 76, 0.04);
}
.rtl .feature-item, body.rtl .feature-item {
  border-left: none;
  border-right: none;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--gold);
  margin-bottom: 18px;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}
.feature-item p {
  color: var(--ink-3);
  font-size: 13.5px;
  margin-bottom: 0;
  line-height: 1.68;
  font-weight: 400;
}

/* Legacy non-icon feature-list support */
.feature-list article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color var(--dur-mid) ease, transform var(--dur-mid) var(--ease-out);
}
.feature-list article:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}
.rtl .feature-list article, body.rtl .feature-list article {
  border-left: none;
  border-right: none;
}
.feature-list h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.feature-list p {
  color: var(--ink-3);
  font-size: 13.5px;
  margin-bottom: 0;
  line-height: 1.65;
}

/* ── 22. PROOF BLOCK ───────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.proof-panel {
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius-xl);
  padding: 48px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.proof-panel strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.proof-panel blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.proof-panel h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.proof-panel p {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 14px;
}
.proof-response {
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── 23. BOOKING STEPS ─────────────────────────────────────── */
.offwhite-section {
  background: var(--surface);
  border-block: 1px solid rgba(201, 168, 76, 0.1);
}

.step-grid {
  display: grid;
  gap: 16px;
  position: relative;
}
.step-grid-4 { grid-template-columns: repeat(4, 1fr); }

.step-grid-4::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.45), rgba(201, 168, 76, 0.2));
  z-index: 0;
}

.step-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--dur-mid) ease,
    transform var(--dur-mid) var(--ease-out);
}
.step-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
}

.step-num-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  color: #0C0F1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}
.step-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  opacity: 0.6;
}
.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.step-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.68;
  font-weight: 400;
}
.step-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}

/* ── 24. TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section {
  background: var(--surface);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-xl);
  padding: 38px 30px 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--dur-mid) ease,
    transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) ease;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 2px;
  right: 20px;
  font-size: 120px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  font-family: "Playfair Display", Georgia, serif;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  text-align: center;
}

.testimonial-card blockquote {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 22px;
  text-align: center;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-detail {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  user-select: none;
}

/* ── 25. FAQ ───────────────────────────────────────────────── */
.faq {
  display: grid;
  gap: 8px;
  max-width: 800px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) ease;
}
.faq details:hover { border-color: rgba(201, 168, 76, 0.28); }
.faq details[open] { border-color: rgba(201, 168, 76, 0.32); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  gap: 16px;
  user-select: none;
  transition: color var(--dur-fast) ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--dur-mid) var(--ease-out);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
  margin: 0;
}

/* ── 26. FLEET TABLE ───────────────────────────────────────── */
.comparison {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 13.5px;
  box-shadow: var(--shadow-sm);
}
.comparison thead {
  background: var(--surface-2);
}
.comparison th {
  padding: 16px 18px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.comparison td {
  padding: 14px 18px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-weight: 400;
  line-height: 1.5;
}
.comparison tbody th {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.comparison tr:last-child td,
.comparison tr:last-child th { border-bottom: none; }
.comparison tbody tr {
  background: var(--surface);
  transition: background var(--dur-fast) ease;
}
.comparison tbody tr:nth-child(even) { background: var(--surface-2); }
.comparison tbody tr:hover { background: rgba(201, 168, 76, 0.04); }

/* ── 27. WHATSAPP FLOAT ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
}
.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #40e37e 0%, #20c05a 50%, #18a84e 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(32, 192, 90, 0.32), 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) ease;
}
.whatsapp-float a:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 36px rgba(32, 192, 90, 0.44);
}

/* ── 28. MOBILE CTA BAR ────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.mobile-cta .btn { flex: 1; justify-content: center; min-height: 48px; }

/* ── 29. BACK TO TOP ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 80;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: var(--surface);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  box-shadow: var(--shadow);
  transition:
    opacity var(--dur-mid) ease,
    transform var(--dur-mid) var(--ease-out),
    border-color var(--dur-fast) ease;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { border-color: rgba(201, 168, 76, 0.55); }
.back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* ── 30. FOOTER ────────────────────────────────────────────── */
.footer {
  background: #080B15;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 88px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.88fr 0.88fr 0.88fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--dur-fast) ease;
}
.footer-brand:hover { opacity: 0.8; }
.footer-brand img { opacity: 0.9; }
.footer-brand span {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.footer-brand-col > p {
  color: rgba(240, 237, 232, 0.42);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
  max-width: 280px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-contact-row a {
  color: rgba(240, 237, 232, 0.4);
  font-size: 12.5px;
  font-weight: 500;
  transition: color var(--dur-fast) ease;
}
.footer-contact-row a:hover { color: var(--gold); }
.footer-contact-row span { color: rgba(255, 255, 255, 0.16); }

.footer-whatsapp-btn {
  align-self: flex-start;
  font-size: 12px !important;
  min-height: 40px !important;
  padding: 8px 16px !important;
}

.footer-col-head {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: rgba(240, 237, 232, 0.42);
  font-size: 13.5px;
  font-weight: 400;
  transition: color var(--dur-fast) ease;
  padding: 2px 0;
}
.footer-nav a:hover { color: var(--gold); }

.footer-dl {
  display: grid;
  gap: 10px;
}
.footer-dl > div { display: contents; }
.footer-dl dt,
.footer-dl dd {
  color: rgba(240, 237, 232, 0.4);
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}
.footer-dl dt { font-weight: 600; color: rgba(240, 237, 232, 0.65); }
.footer-dl a {
  color: rgba(240, 237, 232, 0.4);
  transition: color var(--dur-fast) ease;
}
.footer-dl a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(240, 237, 232, 0.28);
  font-weight: 400;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.6;
}
.footer-badge svg { color: var(--gold); }

/* ── 31. ANIMATIONS & REVEALS ──────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scale-up {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal,
.reveal-left,
.reveal-scale {
  opacity: 0;
}
.reveal.visible       { animation: fade-up    var(--dur-slow) var(--ease-out) forwards; }
.reveal-left.visible  { animation: slide-right var(--dur-slow) var(--ease-out) forwards; }
.reveal-scale.visible { animation: scale-up   var(--dur-slow) var(--ease-out) forwards; }

.stagger-children > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.52s var(--ease-out),
    transform 0.52s var(--ease-out);
}
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 60ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 120ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 180ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 300ms; }

/* ── 32. READING PROGRESS BAR ──────────────────────────────── */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-3));
  z-index: 9999;
  pointer-events: none;
}

/* ── 32b. SCROLL-AWARE HEADER ───────────────────────────────── */
.site-header.scrolled {
  background: rgba(10, 13, 22, 0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
}

/* ── 33. SERVICE GRID ──────────────────────────────────────── */
.service-grid { gap: 20px; }

/* ── 34. FLEET GRID ────────────────────────────────────────── */
.fleet-grid { gap: 20px; }

/* ── 35b. RESPONSIVE — LARGE LAPTOP (≤ 1600px) ─────────────── */
@media (max-width: 1600px) {
  .home-hero h1 {
    font-size: clamp(36px, 4.8vw, 68px);
  }
  .home-hero-grid {
    padding: 96px 0 76px;
  }
}

/* ── 35c. RESPONSIVE — SHORT LAPTOP VIEWPORT (≤ 820px tall) ── */
@media (max-height: 820px) and (min-width: 1025px) {
  :root { --section-pad: 72px; }

  .home-hero {
    min-height: clamp(520px, 92vh, 840px);
  }
  .home-hero h1 {
    font-size: clamp(32px, 4.2vw, 58px);
  }
  .home-hero-grid {
    padding: 56px 0 48px;
  }
  .section { padding: 72px 0; }
  .section.tight { padding: 40px 0; }
  .hero-proof-row { margin: 18px 0; gap: 10px; }
  .lead { margin-bottom: 20px; }
  .hero-content { padding: 28px 0 22px; }
  .booking-widget { padding: 22px 24px; gap: 12px; }
  .section-head { margin-bottom: 36px; }
  .proof-panel { padding: 32px 36px; }
  .step-cta-row { margin-top: 32px; }
}

/* ── 36. RESPONSIVE — TABLET (≤ 1024px) ────────────────────── */
@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 88px 0 56px;
  }
  .home-hero-grid .booking-widget { display: none; }

  .step-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .step-grid-4::before { display: none; }

  .feature-list { grid-template-columns: repeat(2, 1fr); }

  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

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

  .route-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand-col { grid-column: 1 / -1; }

  .trust-strip { grid-template-columns: repeat(3, 1fr); }

  .span-3 { grid-column: span 6; }
  .span-4 { grid-column: span 6; }
  .span-5 { grid-column: span 6; }

  .icon-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 37. RESPONSIVE — MOBILE (≤ 768px) ─────────────────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .section { padding: 64px 0; }
  .section.tight { padding: 36px 0; }

  .nav-links,
  .language-links,
  .nav-cta-btn,
  .nav-cta-static { display: none; }

  .nav-toggle { display: flex; }

  .nav {
    grid-template-columns: auto 1fr auto;
    min-height: var(--nav-h);
  }

  .home-hero h1 {
    font-size: clamp(34px, 9vw, 54px);
  }
  .home-hero-grid { padding: 72px 0 48px; }

  .hero-proof-row { grid-template-columns: 1fr; gap: 10px; }
  .hero-proof-row span:nth-child(n+2) { display: none; }

  .booking-widget { padding: 20px; }
  .widget-field-row { grid-template-columns: 1fr; }

  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 12px 16px;
    gap: 12px;
  }
  .trust-item-icon { margin-bottom: 0; }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .section-head-text { max-width: 100%; }

  .route-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .step-grid-4 { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }

  .whatsapp-float { display: none; }
  .back-to-top { bottom: 76px; }
  .mobile-cta { display: flex; }

  .span-3, .span-4, .span-5, .span-6,
  .span-7, .span-8 { grid-column: span 12; }

  .stats-bar-inner { animation-duration: 22s; }

  .step-cta-row { flex-direction: column; align-items: stretch; }
  .step-cta-row .btn { justify-content: center; }

  .proof-panel { padding: 28px 22px; }

  .comparison { font-size: 12px; }
  .comparison th, .comparison td { padding: 10px 12px; }

  .section-head.centered { text-align: left; align-items: flex-start; }
  .section-head.centered .section-head-title { align-items: flex-start; }
  .section-head.centered .eyebrow { justify-content: flex-start; }
  .section-head.centered .section-head-text { text-align: left; }
  .testimonial-card { text-align: left; }
  .testimonial-card blockquote { text-align: left; }
  .testimonial-footer { align-items: flex-start; }
  .testimonial-stars { text-align: left; }
  .testimonial-avatar { margin: 0 0 16px; }

  .icon-services-grid { grid-template-columns: 1fr 1fr; }
  .about-trust-panel { padding: 20px; }
  .reviews-cta-card { padding: 26px 18px; }
  .fleet-details-actions .btn { font-size: 12px; padding: 8px 10px; }
  .map-route-info { gap: 8px; padding: 12px 14px; }
  .add-stop-btn { font-size: 12.5px; padding: 7px 13px; }
}

/* ── 38. RESPONSIVE — SMALL (≤ 480px) ──────────────────────── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 12px 16px;
    gap: 12px;
  }
  .trust-item-icon { margin-bottom: 0; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { padding-right: 52px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .fleet-grid .span-3 { grid-column: span 12; }
  .service-grid .span-4 { grid-column: span 12; }
  .hero-social-badge { font-size: 11px; padding: 6px 12px; }
  .stat-item { padding: 16px 28px; }
  .stat-value { font-size: 24px; }
  .icon-services-grid { grid-template-columns: 1fr; }
}

/* ── 39. RTL SUPPORT ────────────────────────────────────────── */
.rtl .nav { direction: rtl; }
.rtl .footer-grid { direction: rtl; }
.rtl .hero-content { direction: rtl; }
.rtl h1, .rtl h2, .rtl h3 { direction: rtl; }
.rtl .section-head { direction: rtl; }
.rtl .eyebrow { flex-direction: row-reverse; }
.rtl .eyebrow::before { background: linear-gradient(270deg, transparent, currentColor); }
.rtl .eyebrow::after { background: linear-gradient(270deg, currentColor, transparent); }
.rtl .route-card::after { left: 22px; right: auto; content: "←"; }

/* ── 40. UTILITY CLASSES ────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.35) 28%,
    rgba(232, 204, 136, 0.5) 50%,
    rgba(201, 168, 76, 0.35) 72%,
    transparent 100%
  );
  margin: 0;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   §42 — Form Validation Styles
   ════════════════════════════════════════════════════════════ */

.field-required {
  color: var(--danger);
  font-weight: 700;
  margin-inline-start: 2px;
}

.field.required > label::after {
  content: " *";
  color: var(--danger);
  font-weight: 700;
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--danger) !important;
  background: rgba(240, 80, 96, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(240, 80, 96, 0.12) !important;
}

.field--error label {
  color: var(--danger);
}

.field-error-msg {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--danger);
  font-weight: 500;
  line-height: 1.4;
  animation: errorFadeIn 0.18s ease;
}

.field-error-msg svg {
  flex-shrink: 0;
  color: var(--danger);
}

@keyframes errorFadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   §43 — Fleet Spec Icons (passenger / luggage)
   ════════════════════════════════════════════════════════════ */

.fleet-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 8px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.fleet-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold-2);
  font-weight: 600;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 999px;
  padding: 4px 12px;
}

.fleet-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.fleet-details-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.fleet-details-actions .btn {
  flex: 1;
  min-width: 100px;
  text-align: center;
  font-size: 13px;
  padding: 9px 14px;
}

/* Fleet expandable details panel */
.fleet-details {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  margin-top: 14px;
  padding-top: 14px;
}
.fleet-details summary {
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.fleet-details summary::-webkit-details-marker { display: none; }
.fleet-details summary::after {
  content: "▾";
  font-size: 13px;
  transition: transform 0.2s ease;
  margin-left: 2px;
}
.fleet-details[open] summary::after { transform: rotate(-180deg); }
.fleet-details ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fleet-details li {
  font-size: 12px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.fleet-details li::before {
  content: "✓";
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Fleet category badge */
.fleet-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(12, 15, 26, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

/* Fleet card actions: equal-width buttons */
.fleet-card .actions .btn { flex: 1; }

/* ════════════════════════════════════════════════════════════
   §44 — Footer Contact Icon List
   ════════════════════════════════════════════════════════════ */

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(240, 237, 232, 0.4);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.18s;
}

a.footer-contact-item:hover { color: var(--gold); }

.footer-contact-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.75;
}

.footer-contact-addr {
  align-items: flex-start;
  cursor: default;
}

.footer-reg {
  color: rgba(240, 237, 232, 0.25);
  font-size: 12px;
}

/* ════════════════════════════════════════════════════════════
   §45 — About Page Layout
   ════════════════════════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
}

.about-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-trust-panel {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.about-trust-panel h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.about-trust-panel p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.about-trust-panel p:last-child { margin-bottom: 0; }

.about-stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  margin: 44px 0;
}

.about-stat {
  flex: 1;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.about-stat:last-child { border-right: none; }

.about-stat-value {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 5px;
}

.about-stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 600;
}

@media (max-width: 600px) {
  .about-stat-row { flex-wrap: wrap; }
  .about-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.about-pillar {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.about-pillar:hover {
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.about-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.about-pillar h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.about-pillar p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.reviews-cta-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.reviews-cta-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.reviews-cta-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 22px;
}

.reviews-cta-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 20px;
}

/* Reviews grid (About page) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-bottom: 32px;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
  border-color: rgba(201, 168, 76, 0.28);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.review-stars span { color: var(--gold); font-size: 16px; }

.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 18px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.review-source {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   §46 — Google Maps Route Preview Widget
   ════════════════════════════════════════════════════════════ */

.map-route-preview {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}

.map-route-canvas {
  width: 100%;
  height: 240px;
  display: block;
}

@media (max-width: 600px) {
  .map-route-canvas { height: 180px; }
}

.map-route-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  flex-wrap: wrap;
}

.map-route-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.map-route-stat svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.map-route-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 18px;
}

.map-route-loading {
  font-size: 13.5px;
  color: var(--muted);
  gap: 10px;
}

.map-route-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: mapSpin 0.7s linear infinite;
  flex-shrink: 0;
}

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

.map-route-error {
  font-size: 13px;
  color: var(--muted);
}

.map-route-error code {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 12px;
  color: var(--gold);
}

.map-placeholder {
  background: var(--surface-2);
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  gap: 8px;
  padding: 24px;
}
.map-placeholder svg { opacity: 0.3; width: 36px; height: 36px; color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   §47 — Waypoints / Extra Stops UI
   ════════════════════════════════════════════════════════════ */

.waypoints-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.waypoint-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.waypoint-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.waypoint-input:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.waypoint-input::placeholder { color: rgba(240, 237, 232, 0.28); }

.waypoint-remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  background: rgba(240, 80, 96, 0.08);
  border: 1px solid rgba(240, 80, 96, 0.22);
  color: var(--danger);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.waypoint-remove:hover {
  background: rgba(240, 80, 96, 0.16);
  border-color: rgba(240, 80, 96, 0.4);
}

.add-stop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.add-stop-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.44);
}
.add-stop-btn svg { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   §48 — FAQ Dedicated Page Layout
   ════════════════════════════════════════════════════════════ */

.faq-page-layout {
  max-width: 840px;
  margin-inline: auto;
}
.faq-page-layout .faq-list {
  margin-top: 0;
}

/* ════════════════════════════════════════════════════════════
   §50 — UI Components
   ════════════════════════════════════════════════════════════ */

/* Section head: centered variant */
.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head.centered .section-head-title {
  align-items: center;
}
.section-head.centered .eyebrow {
  justify-content: center;
}
.section-head.centered .section-head-text,
.section-head.centered > p {
  max-width: 560px;
  text-align: center;
}

/* Icon services grid (homepage) */
.icon-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.icon-service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 22px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--dur-mid) ease,
    transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) ease;
}
.icon-service-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.icon-service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.icon-service-icon svg { width: 22px; height: 22px; }

.icon-service-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.icon-service-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   §51 — Quote page specific
   ════════════════════════════════════════════════════════════ */

.form-shell {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .form-shell { grid-template-columns: 1fr; }
}

.form {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-section {
  padding: 32px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.form-section:last-child { border-bottom: none; }

.form-section h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field.full { grid-column: 1 / -1; }

.field textarea {
  resize: vertical;
  min-height: 100px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}
.field textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.08);
}
.field textarea::placeholder { color: rgba(240, 237, 232, 0.28); }

@media (max-width: 600px) {
  .field-grid { grid-template-columns: 1fr; }
  .form-section { padding: 24px 20px; }
}

.quote-aside {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  box-shadow: var(--shadow);
}

.quote-aside h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.quote-aside > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.summary-row > span:first-child {
  color: var(--ink-3);
  font-weight: 600;
  flex-shrink: 0;
}
.summary-row > span:last-child {
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}

.live-quote {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.live-quote h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  animation: scale-up 0.26s var(--ease-out);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.modal-head h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.modal-head .help { margin: 4px 0 0; }

.modal-body {
  padding: 24px 28px 28px;
}

.preview {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  white-space: pre-wrap;
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.08); color: var(--ink); }

/* ── Sub-hero ────────────────────────────────────────────── */
.sub-hero { min-height: 520px; }
