/* ==========================================================================
   ABSOLUTE EVENT & TRAVEL SERVICES — LUXURY EDITORIAL WHITE THEME
   Aesthetic: High-End Editorial, Warm Alabaster, Champagne Gold & Royal Navy
   Inspired by: Condé Nast Traveler & Bespoke Luxury Event Concierges
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  /* Color Palette — Luxury White Theme */
  --bg-body: #FAF8F5;          /* Warm Porcelain / Alabaster */
  --bg-surface: #FFFFFF;       /* Crisp Pure White */
  --bg-subtle: #F3EFEA;        /* Soft Warm Sand */
  --bg-dark-accent: #0F172A;   /* Royal Deep Navy for High Contrast */
  
  --color-gold: #C5A059;       /* Champagne Royal Gold (decorative fills only) */
  --color-gold-hover: #8A6A2E; /* Darkened for WCAG AA text contrast on light bg */
  --color-gold-dark: #B38B3F;  /* Darkened gold for gradient end-stops */
  --color-gold-light: #F7F3E9;
  --color-emerald: #0F766E;    /* Refined Emerald */
  --color-navy: #0F172A;       /* Deep Navy Text */
  --color-error: #B91C1C;      /* Error / destructive state */

  --text-main: #1E293B;        /* High-contrast Slate Text */
  --text-muted: #64748B;       /* Warm Medium Grey */

  --border-light: #EBE6DC;     /* Warm Gold-tinted border */
  --border-gold: rgba(197, 160, 89, 0.4);
  
  /* Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 45px -15px rgba(197, 160, 89, 0.2);
  --shadow-deep: 0 25px 60px -15px rgba(15, 23, 42, 0.12);
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-hand: 'Caveat', cursive;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px; /* offset for sticky navbar when jumping to anchors — matches measured navbar height */
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Shared keyboard-focus ring for every link/button on the site. Nothing
   removes the browser's default outline (checked), so this isn't restoring
   lost a11y — it's replacing the mismatched default blue rectangle with
   something that matches the gold/navy palette. border-radius: inherit so
   pill buttons (.btn-gold) get a pill outline instead of a clipped square
   one; .input-light keeps its own existing focus ring (border + box-shadow)
   below, so it's deliberately excluded here.

   transition: none is deliberate, not an oversight — .btn/a both carry
   `transition: all 0.3s ease` for their hover states, and outline-style
   can't animate from none -> solid (outline-width's used value is forced
   to 0 while style is none, a longstanding CSS quirk), so inheriting that
   transition left the ring stuck at 0px/currentColor instead of ever
   reaching 2px gold. Focus rings should snap in instantly anyway. */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold-hover);
  outline-offset: 2px;
  border-radius: inherit;
  transition: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Luxury Cards */
.luxury-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.luxury-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-navy); /* white-on-gold measured 2.46:1, fails WCAG AA; navy clears 8:1+ */
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.45);
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
}

.btn-navy {
  background: var(--color-navy);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-navy:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold-light);
  color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

/* Section Titles & Editorial Styling */
.editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-gold-hover);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.editorial-tag::before, .editorial-tag::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.editorial-title {
  font-family: var(--font-serif);
  /* Only large heading in the file with zero responsive override — measured
     rendering as a 3-line headline at 390px. Fluid instead of another fixed
     breakpoint jump, since it's reused across many section widths. */
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.editorial-title span {
  color: var(--color-gold-hover); /* --color-gold measured 2.15-2.46:1 on porcelain/white, fails WCAG AA */
  font-style: italic;
}

.editorial-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px auto;
  font-weight: 400;
}

/* Section-header variants — 10 sections across the site were using the
   identical centered kicker/title/subtitle "masthead" with nothing to
   distinguish one from the next. Centered stays for sections introducing a
   symmetric grid (it's the right call there); these two give the others
   real asymmetry instead of another repeat. */
.section-head-left {
  text-align: left;
}

.section-head-left .editorial-subtitle {
  margin: 0 0 48px 0;
}

.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  text-align: left;
  margin-bottom: 48px;
}

.section-head-split .editorial-title,
.section-head-split .editorial-tag {
  margin-bottom: 0;
}

.section-head-split .editorial-tag {
  margin-bottom: 12px;
}

.section-head-split .editorial-subtitle {
  margin: 0 0 6px 0;
  max-width: 340px;
  flex-shrink: 0;
  text-align: left;
}


/* ==========================================================================
   TOP ANNOUNCEMENT BAR & NAVIGATION BAR
   ========================================================================== */
.top-bar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  gap: 24px;
}

.top-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.top-contacts a:hover {
  color: var(--color-gold);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stamp-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
  padding: 8px;
  flex-shrink: 0;
}

.stamp-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.3px;
}

.brand-subtext {
  font-size: 0.72rem;
  color: var(--color-gold-hover);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-hover);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile hamburger toggle + menu (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-navy);
  padding: 12px;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 28px 28px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

/* Dims the page behind the open mobile menu — mirrors .modal-backdrop-light,
   which already does this for the inquiry modal. Sits below .navbar's
   z-index (1000) so the menu stays on top, above everything else. */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 999;
}

.mobile-menu-backdrop.open {
  display: block;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 4px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
  color: var(--color-gold-hover);
}

.mobile-menu-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gold-hover);
}

/* ==========================================================================
   HOME HERO NAV — transparent-over-image, solidifies on scroll
   Scoped to body.hero-nav-page (index.html only) so visa.html/fleet.html keep
   their normal sticky, always-opaque .navbar untouched. Toggled by
   initHomeHero() in script.js, which no-ops on pages without #home-hero-image.
   ========================================================================== */
.hero-nav-page .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-nav-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hero-nav-page .navbar:not(.scrolled) .brand-title,
.hero-nav-page .navbar:not(.scrolled) .brand-subtext,
.hero-nav-page .navbar:not(.scrolled) .nav-link,
.hero-nav-page .navbar:not(.scrolled) .nav-toggle {
  color: #FFFFFF;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hero-nav-page .navbar:not(.scrolled) .nav-link:hover,
.hero-nav-page .navbar:not(.scrolled) .nav-link.active {
  color: var(--color-gold);
}

.hero-nav-page .navbar:not(.scrolled) .stamp-logo {
  box-shadow: 0 0 0 1.5px var(--color-gold), 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   HOME HERO — full-bleed image banner (hero-banner.webp has the wordmark
   baked into the pixels — see the sr-only <h1> in index.html for the real,
   selectable/SEO text).

   Sized by aspect-ratio, not 100vh: forcing 100vh on a fixed ~1.79:1 (2752×
   1536) image meant object-fit:cover cropped "A"/"E" off the ends of
   ABSOLUTE, and object-fit:contain fixed the crop but left visible dark
   letterbox bars around the image — which is exactly what read as "a card
   placed on top" instead of an actual header section. Matching the
   section's own aspect-ratio to the image means it fills edge-to-edge at
   every viewport width with zero crop and zero bars — the image *is* the
   section, not a boxed graphic sitting inside one. object-fit:cover on the
   image is just a rounding-safety net; at a matching ratio it never
   actually crops anything.
   ========================================================================== */
.home-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2752 / 1536;
  overflow: hidden;
  background: #070611; /* fallback color while the image loads */
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* No darkening over the nav — nav links carry their own text-shadow for
   legibility (see .hero-nav-page rules above), an extra tint there just
   dulled the top of the image for no reason. This scrim now does one job:
   fade the bottom of the hero into --bg-body (#FAF8F5, the exact color
   .hero-editorial starts with below) so the section blends into the rest
   of the page instead of hard-cutting from near-black to cream. */
.home-hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(250,248,245,0) 0%, rgba(250,248,245,0) 62%, rgba(250,248,245,0.55) 84%, #FAF8F5 100%);
}

.home-hero-scrollcue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-hero-scrollcue:hover { color: #FFFFFF; }

.home-hero-scrollcue i {
  animation: home-hero-bob 1.8s ease-in-out infinite;
}

@keyframes home-hero-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Visually-hidden but present for screen readers / SEO — see the sr-only <h1>
   inside .home-hero. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  /* .home-hero-image no longer has a transition (parallax was removed) —
     the actual infinite animation left running was home-hero-scrollcue i's
     home-hero-bob keyframe, which this rule never covered. */
  .home-hero-scrollcue i { animation: none !important; }
  img.fade-init { transition: none; }
}

/* Lazy-loaded images (founder portrait, case-study photo) otherwise pop in
   as a flat grey box mid-scroll on slower connections — fade in once
   loaded instead. Both classes are added by initLazyImageFade() in
   script.js, never in markup: .fade-init (opacity:0) only goes on images
   JS has confirmed aren't loaded yet, and .loaded reveals them once they
   are. If JS never runs, no image ever gets .fade-init, so it just
   renders normally — a script failure can't leave images invisible. */
img.fade-init {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.fade-init.loaded {
  opacity: 1;
}

/* ==========================================================================
   HERO SECTION — EDITORIAL LAYOUT
   ========================================================================== */
.hero-editorial {
  padding: 70px 0 100px 0;
  background: linear-gradient(180deg, #FAF8F5 0%, #F3EFEA 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Reusable "verified/confirmed" signal — emerald's dedicated job, distinct
   from gold (decorative/conversion-only). Used on the visa pre-audit badge
   and ready for the testimonials verified-chip once real quotes land. */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(15, 118, 110, 0.1);
  color: var(--color-emerald);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.verified-badge i {
  font-size: 0.75rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-hover);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-gold-hover); /* --color-gold measured 2.32:1 on this section's porcelain bg, fails WCAG AA */
  font-weight: 400;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Staggered Frame Gallery */
.staggered-gallery {
  position: relative;
  height: 520px;
}

.frame-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 6px solid #FFFFFF;
}

.frame-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.staggered-gallery:hover .frame-main img {
  transform: scale(1.04);
}

.frame-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 6px solid #FFFFFF;
  z-index: 2;
}

.frame-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wax-seal-badge {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-navy); /* white-on-gold fails WCAG AA at this size; navy clears it */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
  z-index: 3;
  border: 2px solid #FFFFFF;
}

/* Hero CTA row — replaced the old 4-tab pseudo-form (pick a category, fill
   4 fields, hit submit, modal then asked for name/phone again anyway). One
   ask, one modal. */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* Sans, not serif — Playfair Display's digits read uneven at weight/size
     like this (see .proof-num), and this is a phone number, all digits. */
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.hero-cta-phone:hover {
  color: var(--color-gold-hover);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px; /* every current usage repeated this inline; the one
                           exception (the modal's last field) is overridden
                           below via :last-of-type */
}

#modal-inquiry-form .field-group:last-of-type {
  margin-bottom: 24px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.honeypot {
  display: none;
}

.field-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-hover);
}

.input-light {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
  min-width: 0; /* let inputs shrink with their grid column, no native-control blowout */
  height: 46px; /* uniform control height across text/select/number/date */
}

/* Textarea (modal notes) opts out of the fixed control height */
textarea.input-light {
  height: auto;
}

.input-light:focus {
  border-color: var(--color-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* ==========================================================================
   FOUNDER'S LETTER / HUMAN TOUCH SECTION
   ========================================================================== */
.human-touch-section {
  /* Tighter bottom: leads into the navy proof strip, shouldn't cushion it
     in white before it even arrives. */
  padding: 120px 0 70px 0;
  background: #FFFFFF;
}

.founder-box {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.founder-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: var(--shadow-deep);
}

.founder-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.founder-tag-overlay {
  /* backdrop-filter removed: background is 90% opaque, so blurring what's
     behind it had zero visible effect — dead code, not a design choice. */
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.9);
  color: #FFFFFF;
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.founder-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.signature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.signature-name {
  font-family: var(--font-hand);
  font-size: 2.2rem;
  color: var(--color-navy);
  font-weight: 700;
}

/* ==========================================================================
   SERVICES & DIVISIONS
   ========================================================================== */
.services-section {
  padding: 120px 0;
  background: var(--bg-body);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.service-card-white {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-white:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
}

.service-num {
  font-family: var(--font-sans); /* same reasoning as .proof-num — numeral, not prose */
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-gold);
  opacity: 0.4;
  margin-bottom: 12px;
}

.service-title-white {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 14px;
}

/* Was identical style="color: var(--text-muted); font-size: 0.95rem;"
   duplicated inline across all 3 service cards. */
.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Was identical style="margin-top: auto; justify-content: center;" on all
   3 cards' CTA buttons — descendant selector, no HTML class needed. */
.service-card-white .btn-outline-gold {
  margin-top: auto;
  justify-content: center;
}

.service-feature-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-feature-list li i {
  color: var(--color-emerald); /* confirmation checkmark = verified signal, not decoration; gold stays conversion-only */
}

/* ==========================================================================
   VISA CONCIERGE DESK (LIGHT THEME)
   ========================================================================== */
.visa-section {
  /* Tighter than the 120px default: this section is a direct continuation
     of Services' "what we offer" theme, not a topic change. */
  padding: 80px 0;
  background: #FFFFFF;
}

.visa-card-container {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  /* minmax(0, Nfr): bare fr tracks default to an "auto" (max-content)
     minimum, which the mobile single-column version of this grid was
     hitting (see the ≤1024px override). No overflow at this width
     currently, but hardening both to the same pattern rather than leaving
     one variant fragile to future content changes. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 48px;
}

.country-grid-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
  min-width: 0; /* this is itself a grid item of .visa-card-container; without
                   this its own 2-column children's content size overrode the
                   parent's track width instead of shrinking to fit it */
}

.country-pill-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 0; /* grid items default to min-width:auto, which let long labels
                   ("United Kingdom") force the track wider than its 1fr share
                   instead of wrapping — caused a 4px horizontal overflow on
                   mobile. */
}

.country-pill-btn:hover, .country-pill-btn.active {
  border-color: var(--color-gold);
  background: var(--color-gold-light);
  color: var(--color-gold-hover);
}

.visa-detail-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

/* Was an identical inline style="..." on 5 headings across fleet.html
   (3x, matches these base values exactly) and visa.html (2x, both
   overridden below — sized per context rather than adding modifier
   classes, since each only appears once). */
.detail-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.visa-card-container .detail-heading { font-size: 1.5rem; margin-bottom: 10px; }
.visa-detail-card .detail-heading { margin-bottom: 0; }

/* Rendered by renderVisaDetails() in script.js for each country's document
   checklist. */
.doc-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.doc-checklist-item i {
  color: var(--color-emerald);
}

/* ==========================================================================
   CAR HIRE FLEET (LIGHT THEME)
   ========================================================================== */
.fleet-section {
  padding: 120px 0;
  background: var(--bg-body);
}

.fleet-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.fleet-item-white {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.fleet-item-white:hover {
  transform: translateY(-5px);
  border-color: var(--color-navy);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   HUMAN STORIES & TESTIMONIALS
   ========================================================================== */
.stories-section {
  /* More room above: real tonal shift from "what we offer" to "what
     clients say". Tighter below: leads straight into the closing CTA. */
  padding: 150px 0 90px 0;
  background: #FFFFFF;
}

.story-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
}

.story-card::before {
  /* Was top:10px, which put an 80px glyph directly over the first line(s)
     of quote text in the longer cards. Pulled up so it reads as a corner
     flourish sitting above the card, not something the text fights. */
  content: '“';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.2;
  position: absolute;
  top: -22px;
  right: 20px;
  z-index: 0;
  pointer-events: none;
}

.story-card > * {
  position: relative;
  z-index: 1;
}

/* Were identical inline style="..." blocks duplicated across all 3
   testimonial cards (quote, name, role each repeated 3x). */
.story-quote {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.story-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
}

.story-role {
  font-size: 0.8rem;
  color: var(--color-gold-hover);
  font-weight: 600;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px; /* was an inline style on the single .stories-grid instance */
}

/* ==========================================================================
   PROOF STAT STRIP
   ========================================================================== */
.proof-section {
  /* Was 70px on all sides while its white neighbors used 120px, so the
     navy strip read as a thin sliver drowning in surrounding whitespace
     rather than a deliberate tonal break. More of its own room now;
     .human-touch-section/.casestudy-section were tightened to match. */
  padding: 100px 0;
  background: var(--color-navy);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-num {
  /* Playfair Display's digits aren't oldstyle-vs-lining-switchable — this is
     just how the typeface draws numerals (uneven heights, descender-like
     tails on 5/9), true to its display-serif character but wrong for a
     stat callout that needs to read as confident and uniform at a glance.
     Sans for the numeral only; everything else on the page stays serif. */
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}

.proof-num span {
  color: #FFFFFF;
  font-size: 1.6rem;
}

.proof-label {
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* ==========================================================================
   CLOSING CTA — full-bleed navy, sits after testimonials
   ========================================================================== */
.closing-cta-section {
  padding: 100px 0;
  background: var(--color-navy);
  text-align: center;
}

.closing-cta-inner {
  max-width: 720px;
}

.closing-cta-tag {
  color: var(--color-gold-light);
}

.closing-cta-tag::before,
.closing-cta-tag::after {
  background: var(--color-gold);
}

.closing-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.closing-cta-title em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

.closing-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.closing-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.closing-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans); /* same reasoning as .hero-cta-phone — all digits */
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
}

.closing-cta-phone:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   CASE STUDY
   ========================================================================== */
.casestudy-section {
  /* Tighter top: sits right after the navy proof strip, shouldn't cushion
     it in white. Normal bottom: leads into services, a real topic change. */
  padding: 70px 0 120px 0;
  background: #FFFFFF;
}

.casestudy-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  box-shadow: var(--shadow-soft);
}

.casestudy-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: var(--shadow-deep);
}

.casestudy-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.casestudy-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-hover);
  font-weight: 700;
}

.casestudy-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 10px 0 16px;
  line-height: 1.2;
}

.casestudy-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.casestudy-metrics {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.casestudy-metrics li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.casestudy-metrics strong {
  display: block;
  font-family: var(--font-sans); /* same reasoning as .proof-num — stat numeral, not prose */
  font-size: 1.8rem;
  color: var(--color-navy);
  font-weight: 800;
}

/* ==========================================================================
   FOOTER & MODAL (LIGHT THEME)
   ========================================================================== */
.footer-editorial {
  background: var(--color-navy);
  color: #FFFFFF;
  padding: 90px 0 40px 0;
}

.footer-grid-editorial {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

/* Footer component classes — this whole footer block is kept identical
   across index.html/fleet.html/visa.html by convention, so these were
   duplicated as inline styles 3x each (12x for .footer-icon, used 4x
   per footer). */
.footer-editorial .brand-logo {
  margin-bottom: 16px;
}

.footer-editorial .stamp-logo {
  width: 38px;
  height: 38px;
  padding: 6px;
}

.footer-editorial .brand-title {
  color: #FFFFFF;
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-icon {
  color: var(--color-gold);
  margin-right: 8px;
}

.footer-address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact-line {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-editorial a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-editorial a:hover {
  color: var(--color-gold);
}

.modal-backdrop-light {
  position: fixed;
  /* inset, not width:100vw/height:100vh — vw/vh include the scrollbar
     gutter in most browsers, which is the classic cause of a few px of
     phantom horizontal overflow on a fixed full-screen element. */
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop-light.active {
  opacity: 1;
  visibility: visible;
}

.modal-card-light {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  padding: 44px;
  position: relative;
  box-shadow: var(--shadow-deep);
  max-height: 92vh;
  overflow-y: auto;
}

/* Modal component classes — this whole modal block is kept identical
   across index.html/fleet.html/visa.html by convention, so these were
   duplicated as inline styles 3x each. */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 10px;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}

.modal-card-light .editorial-tag {
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-status {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}

.modal-status.success { color: var(--color-emerald); }
.modal-status.error { color: var(--color-error); }

/* Floating WhatsApp Concierge Button */
.whatsapp-concierge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  /* Solid white ring first, glow second. At common laptop widths (~1280px)
     the container's own right edge sits only ~2px further in than this
     button — checked with getBoundingClientRect against visa.html's
     Select Destination card, which is why: card content (pill buttons,
     "Start Visa Process") never actually reaches under the button, but the
     card's rounded corner/shadow does touch it while scrolling through that
     section. The ring is what turns that touch into "floating above the
     page" instead of "corner glitch" — a real position fix would need
     JS-measured collision avoidance, out of scope for what this is. */
  box-shadow: 0 0 0 4px #FFFFFF, 0 12px 30px rgba(16, 185, 129, 0.35);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-concierge:hover {
  transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-headline { font-size: 2.8rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .staggered-gallery { height: 380px; }
  .services-grid, .fleet-grid-light { grid-template-columns: 1fr 1fr; }
  .founder-box { grid-template-columns: 1fr; }
  /* minmax(0, 1fr), not bare 1fr — a bare 1fr track's implicit minimum is
     "auto" (its content's max-content width), so the nested 2-column
     country-grid-light inside it was forcing this track wider than the
     card's own padding allowed, overflowing the page horizontally. */
  .visa-card-container { grid-template-columns: minmax(0, 1fr); }
  .footer-grid-editorial { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .casestudy-card { grid-template-columns: 1fr; }
  .casestudy-media img { height: 300px; }
}

/* .spec-scroll-hint (fleet.html "Swipe to see all columns" caption) —
   hidden above 768px via its own min-width query rather than a display:none
   default overridden inside the max-width:768 block below. Two rules
   toggling the same property for the same selector across separate media
   queries only avoids a same-specificity source-order fight if their
   conditions are mutually exclusive at every viewport, which min-width vs
   max-width guarantees; sharing one property between a bare rule and a
   max-width override doesn't (learned this the slow way — first version
   used display:none as the bare default and the override never won,
   because it happened to sit later in the file than the max-width block). */
.spec-scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}
@media (min-width: 769px) {
  .spec-scroll-hint { display: none; }
}

@media (max-width: 768px) {
  .top-contacts { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: block; }
  /* Pure aspect-ratio sizing (2752:1536) renders ~209px tall at a 390px
     viewport, and the fixed transparent nav — a desktop-only "image is the
     header" move — was covering ~45% of that already-short band, squeezing
     the baked-in wordmark against it. Tried taller min-height + contain
     first; that only traded the squeeze for a dead empty gap below the
     image (contain always renders this 1.79:1 image at ~218px tall at this
     width regardless of container height, since width is the constraining
     dimension). Reverted. Real fix is a portrait-cropped export of the
     source graphic (see TODO.md) — out of CSS's reach. Cheaper real win:
     stop the nav floating over the image on mobile, since there's no hero
     real estate left to preserve by doing so. Solid navy nav + full-height,
     uncropped, unobscured hero band below it. */
  .hero-nav-page .navbar:not(.scrolled) { background: var(--color-navy); }
  /* margin, not padding: padding would eat into the aspect-ratio box itself
     and force object-fit:cover to re-crop the image. Margin pushes the
     whole section down, image geometry untouched. */
  .home-hero { margin-top: 95px; }
  .home-hero-scrollcue { display: none; }
  .services-grid, .fleet-grid-light { grid-template-columns: 1fr; }
  .footer-grid-editorial { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
  .proof-num { font-size: 2.4rem; }
  .casestudy-title { font-size: 1.6rem; }

  /* Smaller, corner-tucked WhatsApp FAB so it doesn't sit over CTAs */
  .whatsapp-concierge {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 16px;
    right: 16px;
  }

  .section-head-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 32px;
  }
  .section-head-split .editorial-subtitle { max-width: none; }

  .closing-cta-section { padding: 72px 0; }
  .closing-cta-actions { flex-direction: column; gap: 20px; }

  /* Sub-page chrome (visa.html, fleet.html) */
  .page-hero { padding: 52px 0 48px; }
  .page-hero-title { font-size: 2.1rem; max-width: none; }
  .page-hero-sub { font-size: 1rem; }
  .page-hero-actions .btn, .teaser-card .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .teaser-card { padding: 28px; }

  /* .spec-table (fleet.html) only overflows below its 640px min-width —
     scoped here rather than a fixed pixel query so it tracks that value. */
  .spec-scroll-hint { display: block; }
  .spec-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--bg-surface) 75%);
    pointer-events: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
}

/* ==========================================================================
   SUB-PAGE CHROME  (visa.html, fleet.html)
   Added when the site split from one page into three.
   ========================================================================== */

/* Compact hero for service pages — shorter than the home hero so the
   actual content starts above the fold. */
.page-hero {
  background: var(--bg-dark-accent);
  color: #FFFFFF;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 0%, rgba(197, 160, 89, 0.18), transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .editorial-tag { color: var(--color-gold); }
.page-hero .editorial-tag::before,
.page-hero .editorial-tag::after { background: var(--color-gold); }

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 16ch;
}
.page-hero-title span { color: var(--color-gold); font-style: italic; }

.page-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 62ch;
  margin-bottom: 28px;
}

.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* The base .btn-outline-gold uses navy text, which is the same colour as the
   dark hero background — it renders as an empty pill. Invert it in here. */
.page-hero .btn-outline-gold {
  color: #FFFFFF;
  border-color: var(--color-gold);
}
.page-hero .btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

/* Breadcrumb — also mirrored as BreadcrumbList JSON-LD on each sub-page */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span[aria-current] { color: var(--color-gold); font-weight: 600; }

/* ==========================================================================
   SERVICE TEASER CARDS  (home page -> sub-pages)
   ========================================================================== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.teaser-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.teaser-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-gold-light);
  color: var(--color-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.teaser-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.teaser-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.teaser-points {
  list-style: none;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.teaser-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}
.teaser-points i { color: var(--color-emerald); font-size: 0.8rem; } /* confirmation checkmark, not decoration */

/* push the CTA to the bottom so cards of unequal text still align */
.teaser-card .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   FLEET SPEC TABLE  (fleet.html)
   ========================================================================== */
.spec-wrap {
  position: relative;              /* anchors the mobile scroll-fade below */
  margin-top: 48px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  overflow-x: auto;               /* wide table scrolls, page never does */
  box-shadow: var(--shadow-soft);
}

/* .spec-scroll-hint base rule + its display:none/block toggle both live in
   the mobile-breakpoint media queries above/below — see the note by
   @media (max-width: 768px) near the top of this file for why. */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;               /* below this the wrapper scrolls */
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.spec-table thead th {
  background: var(--bg-subtle);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  white-space: nowrap;
}

.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody tr:hover { background: #FFFDF9; }

.spec-vehicle {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
}
.spec-models {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-hover);
  margin-top: 3px;
}

/* ==========================================================================
   PROCESS TIMELINE  (visa.html)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid var(--border-light);
}
.process-step::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
}

.process-num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  margin-bottom: 8px;
}
.process-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.process-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE — SUB-PAGE ADDITIONS
   ========================================================================== */
@media (max-width: 960px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Sub-page ≤768px rules live in the single consolidated
   @media (max-width: 768px) block below "Mobile Responsiveness" — this
   file used to have four separate ≤768px blocks; merged into one. */
