/* ============================================================
   FLEETHOUSE MIAMI — Main Stylesheet
   Fonts: Cinzel (display) · DM Sans (body)
   Pure black backgrounds. Gold + jade accents.
   Mobile-first responsive.
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gold:        #E8C868;
  --gold-dark:   #8B6914;
  --gold-light:  #F5E09A;
  --metallic:    linear-gradient(105deg,#8B6914 0%,#C9A84C 20%,#E8C868 38%,#F5E09A 50%,#E8C868 62%,#C9A84C 80%,#8B6914 100%);
  --bg:          #080808;
  --surface:     #111111;
  --card:        #1A1A1A;
  --card-h:      #242424;
  --footer-bg:   #030303;
  --jade:        #22B800;
  --jade-bright: #E8C868;
  --jade-glow:   rgba(34,184,0,0.12);
  --text:        #F0F0F0;
  --text-muted:  #C8C8C8;
  --text-dim:    #909090;
  --border:      rgba(255,255,255,0.12);
  --border-gold: rgba(232,200,104,0.40);
  --border-jade: rgba(34,184,0,0.40);
  --glow-gold:   0 0 30px rgba(232,200,104,0.18);
  --glow-sm:     0 0 12px rgba(232,200,104,0.20);
  --glow-jade:   0 0 18px rgba(34,184,0,0.35);
  --font-d: 'Cinzel','Georgia',serif;
  --font-b: 'DM Sans','Helvetica Neue',sans-serif;
  --ease:   0.25s cubic-bezier(.4,0,.2,1);
  --r:      8px;
  --r-lg:   14px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body { font-family: var(--font-b); font-weight: 300; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
table { table-layout: fixed; width: 100%; }
::selection { background: rgba(232,200,104,.22); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* Custom scrollbar */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(232,200,104,.28); border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold); }
}

/* ── Layout container ── */
.c { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .c { padding: 0 2rem; } }

/* ── Sections ── */
.sec { padding: 5rem 0; }
.sec--dark  { background: var(--bg); }
.sec--surf  { background: var(--surface); }
.sec--jet   { background: linear-gradient(180deg, #000 0%, #0A0A0A 40%, #111 70%, #1A1A1A 100%); }
.sec--jade  { border-top: 1px solid var(--border-jade); border-bottom: 1px solid var(--border-jade); }
@media (min-width: 1024px) { .sec { padding: 7rem 0; } }
@media (max-width: 767px)  { .sec { padding: 3.5rem 0; } }

/* ── Divider ── */
.divider { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 1.75rem; }
.divider::before, .divider::after { content: ''; flex: 1; max-width: 100px; height: 1px; background: linear-gradient(90deg, transparent, var(--jade), transparent); }
.gem { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; box-shadow: 0 0 14px rgba(232,200,104,.85), 0 0 28px rgba(232,200,104,.3); }

/* ── Typography ── */
.sec-title  { font-family: var(--font-d); font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem); font-weight: 600; color: var(--text); text-align: center; letter-spacing: .06em; margin-bottom: .75rem; line-height: 1.2; }
.sec-sub    { font-size: clamp(.85rem, .8rem + .25vw, 1rem); color: var(--gold); text-align: center; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3rem; font-weight: 400; opacity: .85; }
.eyebrow    { display: block; font-family: var(--font-d); font-size: clamp(.82rem, .78rem + .18vw, .95rem); color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin-bottom: .75rem; text-shadow: 0 0 12px rgba(232,200,104,.4); }
.sec-eyebrow { display: block; font-family: var(--font-d); font-size: clamp(.8rem, .75rem + .18vw, .92rem); color: var(--gold); letter-spacing: .2em; text-transform: uppercase; font-weight: 600; text-align: center; margin-bottom: .6rem; text-shadow: 0 0 16px rgba(232,200,104,.4); }
.t-left { text-align: left; }
@media (max-width: 600px) {
  .sec-title { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.4rem); letter-spacing: .04em; }
  .sec-sub   { margin-bottom: 2rem; }
  .eyebrow   { font-size: clamp(.8rem, .76rem + .18vw, .9rem); letter-spacing: .14em; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-d); font-size: clamp(.82rem, .78rem + .18vw, .92rem);
  font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: var(--r); border: 2px solid transparent;
  transition: all var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-gold  { background: var(--gold); color: #111; border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold-light); border-color: var(--gold-light); box-shadow: var(--glow-gold); transform: translateY(-2px); }
.btn-out   { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-out:hover   { background: rgba(232,200,104,.08); box-shadow: var(--glow-gold); transform: translateY(-2px); }
.btn-full  { width: 100%; justify-content: center; }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,200,104,.25);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
#header.scrolled, #header.nav-open {
  background: rgba(8,8,8,.97);
  box-shadow: 0 2px 40px rgba(0,0,0,.7);
  border-bottom-color: rgba(232,200,104,.45);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  max-width: 1200px; margin: 0 auto; padding: 1.1rem 1.25rem;
}
@media (min-width: 768px)  { .header-inner { padding: .85rem 2rem; } }
@media (max-width: 600px)  { .header-inner { padding: .6rem 1rem; } }

/* Logo */
.logo { display: flex; align-items: center; gap: .75rem; color: var(--gold); flex-shrink: 0; }
.logo-icon { filter: drop-shadow(0 0 8px rgba(232,200,104,.4)); overflow: visible; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-d); font-size: clamp(.7rem, .62rem + .4vw, .95rem); font-weight: 700; letter-spacing: .22em; color: var(--gold); text-shadow: 0 0 12px rgba(232,200,104,.4); }
.logo-city { font-family: var(--font-b); font-size: clamp(.48rem, .43rem + .2vw, .62rem); font-weight: 300; letter-spacing: .32em; color: #A0A0A0; }

/* Desktop nav */
.nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--font-d); font-size: clamp(.7rem, .64rem + .16vw, .86rem);
  letter-spacing: .14em; text-transform: uppercase; color: #E8E8E8;
  text-shadow: 0 1px 6px rgba(0,0,0,.8); transition: all var(--ease);
  position: relative; padding-bottom: 3px;
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--metallic); border-radius: 2px;
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.nav a:hover { color: var(--gold); text-shadow: 0 0 20px rgba(232,200,104,.55), 0 1px 8px rgba(0,0,0,.9); }
.nav a:hover::after { width: 100%; }
.nav .partner {
  color: var(--gold); border: 1px solid var(--border-gold);
  padding: .35rem .9rem; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.nav .partner::after { display: none; }

/* Header actions */
.h-actions { display: flex; align-items: center; gap: .75rem; }
.d-only { display: none; }
@media (min-width: 900px) { .d-only { display: inline-flex; } }

/* Header Book Now button */
.h-actions .btn-gold {
  padding: .7rem 1.25rem;
  font-size: clamp(.72rem, .68rem + .14vw, .82rem);
  letter-spacing: .12em;
}

/* Hamburger */
.ham {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border-gold); border-radius: var(--r);
  padding: .5rem .65rem; transition: border-color var(--ease);
}
.ham:hover { border-color: var(--gold); }
.ham span { display: block; width: 20px; height: 1.5px; background: #E8E8E8; transition: all var(--ease); }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }
@media (min-width: 900px) { .ham { display: none; } }

/* Mobile nav */
.mob-nav {
  display: flex; flex-direction: column; background: rgba(8,8,8,.98);
  border-top: 1px solid rgba(232,200,104,.25); padding: 0 1.25rem; gap: 1rem;
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.mob-nav.open { max-height: 520px; padding: 1.5rem 1.25rem; }
.mob-nav a {
  font-family: var(--font-d); font-size: 1.05rem; letter-spacing: .18em;
  text-transform: uppercase; color: #E8E8E8;
  padding: .65rem 0; border-bottom: 1px solid rgba(232,200,104,.12);
  transition: all var(--ease);
}
.mob-nav a:hover { color: var(--gold); text-shadow: 0 0 18px rgba(232,200,104,.5); padding-left: .5rem; }
.mob-nav a:last-of-type { border-bottom: none; }
.mob-nav .partner {
  text-align: center; color: var(--gold);
  border: 1px solid var(--border-gold); border-radius: var(--r);
  padding: .65rem 1rem; margin-top: .25rem;
  justify-content: center;
}
.mob-nav .partner:hover { padding-left: 1rem; background: rgba(232,200,104,.06); }
@media (min-width: 900px) { .mob-nav { display: none; } }

/* Theme toggle — hidden by default */
.theme-btn { display: none; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #2a2a2a 0%, #0d0d0d 65%, #080808 100%);
}
@media (max-width: 600px) { #hero { min-height: 60svh; } }

.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; image-rendering: auto; }

/* Cinematic overlays */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 30%, rgba(0,0,0,.3) 65%, rgba(0,0,0,.85) 100%);
}
.hero-overlay-sides {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.3) 0%, transparent 28%, transparent 72%, rgba(0,0,0,.3) 100%);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 38%; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.97) 0%, rgba(8,8,8,.6) 40%, transparent 100%);
}

/* Hero content card */
#heroContent {
  position: absolute; bottom: 50%; left: 50%;
  transform: translate(-50%, 50%);
  z-index: 3; text-align: center;
  width: calc(100% - 2.5rem); max-width: 800px;
  padding: 2.75rem 2.25rem 2.25rem;
  background: rgba(10,10,10,.65);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border: 1px solid rgba(232,200,104,.2);
  border-radius: 16px;
  box-shadow: 0 0 80px rgba(0,0,0,.85), 0 0 0 1px rgba(232,200,104,.05), inset 0 1px 0 rgba(232,200,104,.1);
  transition: transform .9s cubic-bezier(.4,0,.2,1), bottom .9s cubic-bezier(.4,0,.2,1),
              background .7s ease, border-color .7s ease, box-shadow .7s ease, padding .7s ease;
}
#heroContent.text-faded {
  bottom: 7rem; transform: translate(-50%, 0);
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border-color: transparent; box-shadow: none; padding: 0;
}
@media (max-width: 600px) {
  #heroContent { padding: 1.5rem 1.25rem 1.25rem; }
  #heroContent.text-faded { bottom: 5rem; }
}

.hero-text-group {
  transition: opacity .8s ease, transform .8s ease, max-height .8s ease;
  opacity: 1; transform: translateY(0); max-height: 400px; overflow: hidden;
}
.hero-text-group.faded {
  opacity: 0; transform: translateY(-12px); max-height: 0; pointer-events: none;
}
#heroContent:hover .hero-text-group.faded {
  opacity: .85; transform: translateY(0); max-height: 400px; pointer-events: auto;
}

.hero-eyebrow {
  display: block; font-family: var(--font-d);
  font-size: clamp(.62rem, .55rem + .22vw, .8rem);
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem; text-shadow: 0 0 22px rgba(232,200,104,.6);
}
.hero-headline {
  font-family: var(--font-d); font-size: clamp(1.9rem, 1.2rem + 3.2vw, 4.4rem);
  font-weight: 700; letter-spacing: .05em; line-height: 1.1; margin-bottom: 1.35rem;
  text-shadow: 0 2px 24px rgba(0,0,0,1), 0 4px 40px rgba(0,0,0,.9);
}
.gold-text { color: var(--gold); }
.hero-sub {
  font-size: clamp(.85rem, .78rem + .28vw, 1rem); color: rgba(240,240,240,.82);
  max-width: 560px; margin: 0 auto 2.25rem; font-weight: 300; line-height: 2;
  text-shadow: 0 1px 12px rgba(0,0,0,1);
}
.hero-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn { font-size: clamp(.78rem, .74rem + .18vw, .88rem); padding: .85rem 1.75rem; }

@media (max-width: 600px) {
  .hero-eyebrow { display: none; }
  .hero-sub { display: none; }
  .hero-btns { gap: .6rem; }
  .hero-headline { font-size: clamp(1.2rem, 5.5vw, 1.8rem); letter-spacing: .02em; }
}

/* Slider arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  background: rgba(0,0,0,.65); border: 1px solid rgba(232,200,104,.4);
  border-radius: 50%; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); cursor: pointer;
  transition: all var(--ease); backdrop-filter: blur(6px); padding: 0;
}
.slider-arrow:hover { background: rgba(232,200,104,.18); border-color: var(--gold); box-shadow: var(--glow-sm); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }
@media (min-width: 768px) { .slider-prev { left: 2rem; } .slider-next { right: 2rem; } }
@media (max-width: 600px) {
  .slider-arrow { opacity: .8; width: 36px; height: 36px; }
  .slider-prev { left: .5rem; }
  .slider-next { right: .5rem; }
}

/* Dot nav */
.hero-dots { position: absolute; bottom: 3.5rem; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: .6rem; align-items: center; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(232,200,104,.3); border: 1px solid rgba(232,200,104,.4); cursor: pointer; transition: all .3s ease; flex-shrink: 0; }
.hero-dot.active { background: var(--gold); border-color: var(--gold); width: 20px; border-radius: 4px; box-shadow: var(--glow-sm); }
.hero-dot:hover { transform: scale(1.3); background: rgba(232,200,104,.6); }

/* Slide counter */
.slide-counter {
  position: absolute; top: calc(72px + 1.25rem); right: 1.25rem; z-index: 4;
  font-family: var(--font-d); font-size: .6rem; letter-spacing: .2em;
  color: rgba(240,234,214,.5); text-transform: uppercase;
}
@media (min-width: 768px) { .slide-counter { right: 2rem; } }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(240,234,214,.4); font-family: var(--font-d);
  font-size: .52rem; letter-spacing: .25em; text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(232,200,104,.6), transparent); }
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: translateX(-50%) translateY(0); }
  50%       { opacity: .8;  transform: translateX(-50%) translateY(4px); }
}

/* ════════════════════════════════════
   TRUST BAR
════════════════════════════════════ */
#trust {
  display: flex; flex-wrap: nowrap; overflow-x: auto;
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}
#trust::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex; align-items: center; gap: .55rem;
  padding: 1.1rem 1.1rem; flex: 1 1 0; min-width: 0;
  border-right: 1px solid var(--border);
  font-size: clamp(.6rem, .54rem + .18vw, .74rem);
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 300; white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item strong { color: var(--gold); font-weight: 700; font-size: 1.05em; }
.trust-icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(232,200,104,.3)); transition: all var(--ease); }
.trust-item:hover .trust-icon { color: var(--gold-light); filter: drop-shadow(0 0 8px rgba(232,200,104,.6)); }
@media (max-width: 600px) {
  #trust { display: grid; grid-template-columns: 1fr 1fr; flex-wrap: unset; overflow-x: unset; }
  .trust-item { padding: .9rem .7rem; font-size: .58rem; letter-spacing: .05em; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); white-space: normal; justify-content: center; text-align: center; flex-direction: column; }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ════════════════════════════════════
   BRANDS
════════════════════════════════════ */
.brands-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.brand-item {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .75rem;
  padding: 1.5rem 1.25rem; border: 1px solid var(--border); border-radius: 10px;
  background: var(--card); transition: all .28s cubic-bezier(.4,0,.2,1);
  width: 190px; min-width: 190px; max-width: 190px; text-align: center;
}
.brand-item:hover { border-color: var(--border-gold); background: var(--card-h); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.5), var(--glow-sm); }
.brand-item img { width: 140px; height: 105px; object-fit: contain; border-radius: 8px; background: #fff; padding: 8px; opacity: .88; transition: opacity var(--ease); }
.brand-item:hover img { opacity: 1; }
.brand-item span { font-family: var(--font-d); font-size: clamp(.78rem, .72rem + .15vw, .9rem); letter-spacing: .1em; text-transform: uppercase; color: var(--text); font-weight: 600; line-height: 1.4; }
@media (max-width: 600px) { .brand-item { width: 160px; min-width: 160px; max-width: 160px; } }

/* ════════════════════════════════════
   AREAS SERVED
════════════════════════════════════ */
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

.area-card {
  background: var(--card); border: 1px solid var(--border-jade); border-radius: 12px;
  padding: 2rem 1.75rem; transition: all var(--ease); position: relative; overflow: hidden;
}
.area-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--jade), var(--gold), var(--jade)); opacity: 0; transition: opacity var(--ease); }
.area-card::after  { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(34,184,0,.07) 0%, transparent 70%); opacity: 0; transition: opacity var(--ease); }
.area-card:hover { transform: translateY(-8px); border-color: var(--jade); box-shadow: 0 24px 60px rgba(0,0,0,.4), var(--glow-jade); }
.area-card:hover::before, .area-card:hover::after { opacity: 1; }
.area-card:hover .area-name { color: var(--gold); }
.area-card:hover .area-tag  { background: rgba(34,184,0,.12); border-color: var(--jade); color: var(--gold); }
@media (max-width: 600px) { .area-card { padding: 1.5rem 1.25rem; } }

.area-icon-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.area-map-img { width: 160px; height: auto; object-fit: contain; filter: drop-shadow(0 4px 20px rgba(0,0,0,.5)); transition: transform .4s ease, filter .4s ease; border-radius: 4px; }
.area-card:hover .area-map-img { transform: scale(1.05); filter: drop-shadow(0 6px 28px rgba(232,200,104,.22)) drop-shadow(0 4px 20px rgba(0,0,0,.5)); }
.area-num  { display: none; }
.area-name { font-family: var(--font-d); font-size: clamp(.95rem, .86rem + .35vw, 1.2rem); font-weight: 700; color: var(--text); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem; }
.area-desc { font-size: clamp(.75rem, .7rem + .18vw, .88rem); color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-tag  { font-family: var(--font-d); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border-gold); border-radius: 4px; padding: 4px 10px; transition: all var(--ease); }
@media (max-width: 600px) { .area-name { text-align: center; } .area-desc { text-align: center; } .area-tags { justify-content: center; } }

/* ════════════════════════════════════
   AIRPORT DELIVERY
════════════════════════════════════ */
.sec--airport { position: relative; overflow: hidden; }
.sec--airport::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,200,104,.05) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(34,184,0,.05) 0%, transparent 60%);
}

/* Airport cinematic slideshow */
.airport-cinematic {
  position: relative; width: 100%; margin: 2rem 0 0; line-height: 0;
  height: clamp(260px, 45vw, 580px); overflow: hidden;
}
@media (max-width: 900px) { .airport-cinematic { height: clamp(220px, 60vw, 380px); } }
.airport-cinematic-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; filter: brightness(.92) contrast(1.05); }
.ap-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.ap-slide.active { opacity: 1; }
.ap-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }

/* Airport badges */
.airport-cinematic-badges { display: flex; flex-direction: row; gap: 1rem; margin: 1.25rem 0 0; }
.airport-cinematic-badges .apbadge { flex: 1; text-align: center; padding: .85rem 1rem; }
@media (max-width: 600px) {
  .airport-cinematic-badges { gap: .5rem; margin-top: .85rem; }
  .airport-cinematic-badges .apbadge { padding: .6rem .5rem; }
  .airport-cinematic-badges .apbadge-label { font-size: .6rem; letter-spacing: .07em; }
  .airport-cinematic-badges .apbadge-sub { font-size: .58rem; }
}

.apbadge {
  flex: 1; min-width: 0; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: .85rem 1rem; text-align: center; transition: all var(--ease);
}
.apbadge:hover { border-color: var(--border-jade); background: var(--jade-glow); box-shadow: var(--glow-jade); transform: translateY(-2px); }
.apbadge--gold { border-color: var(--border-gold); background: rgba(232,200,104,.05); }
.apbadge--gold:hover { border-color: var(--gold); background: rgba(232,200,104,.1); box-shadow: var(--glow-gold); }
.apbadge-label { font-family: var(--font-d); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .2rem; }
.apbadge-sub   { font-size: .7rem; color: var(--text-muted); line-height: 1.4; }

/* Airport lead text */
.airport-lead {
  margin: 2rem auto 0; max-width: 780px; text-align: center;
  font-size: clamp(.88rem, .82rem + .25vw, 1.02rem); color: var(--text); line-height: 1.85; font-weight: 300;
}

/* Regions */
.airport-regions { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .airport-regions { grid-template-columns: repeat(3, 1fr); } }
.airregion { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem 1.25rem 1.5rem; transition: border-color var(--ease), box-shadow var(--ease); }
.airregion:hover { border-color: var(--border-jade); box-shadow: var(--glow-jade); }
.airregion-label { font-family: var(--font-d); font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border-gold); }
.airregion-airports { display: flex; flex-wrap: wrap; gap: .45rem; }
.airtag { display: inline-block; font-family: var(--font-d); font-size: .67rem; letter-spacing: .07em; color: var(--text); background: rgba(240,234,214,.06); border: 1px solid var(--border); border-radius: 5px; padding: .3rem .65rem; white-space: nowrap; transition: all var(--ease); }
.airtag:hover { border-color: var(--border-jade); color: var(--gold); background: var(--jade-glow); }
.airtag--private { border-color: var(--border-gold); color: var(--gold); background: rgba(232,200,104,.04); }
.airtag--private:hover { background: rgba(232,200,104,.1); color: var(--gold-light); }

/* Airport CTA */
.airport-cta-wrap { text-align: center; margin-top: 2.5rem; }
.sec--airport .btn-gold { box-shadow: 0 4px 20px rgba(34,184,0,.25), var(--glow-sm); }
.sec--airport .btn-gold:hover { box-shadow: 0 6px 28px rgba(34,184,0,.4), var(--glow-gold); }

/* ════════════════════════════════════
   FLEET
════════════════════════════════════ */
.filters { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--font-d); font-size: clamp(.6rem, .55rem + .1vw, .7rem); letter-spacing: .12em; text-transform: uppercase;
  padding: .55rem 1.3rem; border: 1px solid var(--border); border-radius: 50px;
  background: transparent; color: var(--text-muted); transition: all .22s ease;
}
.filter-btn:hover:not(.active) { border-color: var(--jade); color: var(--gold); transform: translateY(-1px); }
.filter-btn.active { background: var(--jade); color: #fff; border-color: var(--jade); font-weight: 600; border-radius: 50px; box-shadow: var(--glow-jade); }

.fleet-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px)  { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.car-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column; cursor: pointer;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, border-color .25s ease;
}
.car-card:hover { border-color: rgba(232,200,104,.25); transform: translateY(-6px); box-shadow: 0 24px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(232,200,104,.2), var(--glow-sm); }
.car-card.hidden { display: none; }

.car-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 12px 12px 0 0; }
.car-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.car-card:hover .car-img-wrap img { transform: scale(1.04); }
.car-badge { position: absolute; top: .75rem; left: .75rem; background: var(--jade); color: #fff; font-family: var(--font-d); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; z-index: 2; animation: jadePulse 3s ease-in-out infinite; }
.pref-badge { background: linear-gradient(105deg, #8B6914 0%, #C9A84C 30%, #E8C868 50%, #C9A84C 70%, #8B6914 100%); color: #111; animation: goldPulse 3s ease-in-out infinite; box-shadow: 0 2px 10px rgba(232,200,104,.45); }
.car-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.18) 50%, transparent 100%); pointer-events: none; }

/* Gallery thumbnails on fleet cards */
.car-gallery { display: flex; gap: .45rem; padding: .65rem .75rem 0; background: var(--card); }
.car-gallery img { width: 60px; height: 42px; object-fit: cover; border-radius: 5px; border: 2px solid transparent; cursor: pointer; transition: all var(--ease); flex-shrink: 0; opacity: .55; }
.car-gallery img:hover, .car-gallery img.active { border-color: var(--gold); opacity: 1; }

.car-body   { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; gap: .65rem; }
.car-name   { font-family: var(--font-d); font-size: clamp(.88rem, .8rem + .28vw, 1.05rem); font-weight: 600; color: var(--text); letter-spacing: .06em; line-height: 1.35; }
.car-specs  { font-size: clamp(.7rem, .65rem + .12vw, .8rem); color: #909090; letter-spacing: .04em; line-height: 1.7; }
.car-extras { font-size: clamp(.72rem, .68rem + .12vw, .82rem); color: var(--gold); letter-spacing: .04em; font-weight: 600; }
.car-footer { display: flex; flex-direction: column; align-items: stretch; gap: .5rem; padding-top: .75rem; border-top: 1px solid var(--border); margin-top: auto; }

/* Turo button — black with gold outline, flips on hover */
.car-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; font-family: var(--font-d); font-size: clamp(.85rem, .82rem + .15vw, .95rem);
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .85rem 1rem; border-radius: var(--r); cursor: pointer;
  transition: background .28s ease, color .28s ease, box-shadow .28s ease, transform .18s ease;
  text-decoration: none; text-align: center; line-height: 1.3;
}
.car-btn--turo { background: #0D0D0D; color: var(--gold); border: 2px solid var(--gold); }
.car-btn--turo:hover { background: var(--gold); color: #111; border-color: var(--gold); box-shadow: 0 4px 24px rgba(232,200,104,.4); transform: translateY(-2px); }

/* Contact / Off-Turo button — pulse glow */
.car-btn--contact {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
  position: relative; overflow: hidden;
  animation: contactPulse 2.8s ease-in-out infinite;
}
.car-btn--contact::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 35%, rgba(232,200,104,.12) 50%, transparent 65%); transform: translateX(-100%); transition: transform .55s ease; }
.car-btn--contact:hover::before { transform: translateX(100%); }
.car-btn--contact:hover { background: var(--gold); color: #111; border-color: var(--gold-light); box-shadow: 0 0 32px rgba(232,200,104,.55), 0 4px 20px rgba(232,200,104,.35); transform: translateY(-2px); animation: none; }
@keyframes contactPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(232,200,104,.28); }
  50%       { box-shadow: 0 0 28px rgba(232,200,104,.52), 0 0 0 4px rgba(232,200,104,.1); }
}
@keyframes jadePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(34,184,0,.5); }
  50%       { box-shadow: 0 0 18px rgba(61,212,0,.9), 0 0 32px rgba(34,184,0,.3); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(232,200,104,.4); }
  50%       { box-shadow: 0 0 20px rgba(232,200,104,.85), 0 0 34px rgba(200,168,76,.35); }
}

/* Preferred grid — same layout */
#preferredGrid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px)  { #preferredGrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { #preferredGrid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

/* Preferred card image — cursor hint */
#preferredGrid .car-img-wrap { cursor: zoom-in; }
#preferredGrid .car-img-wrap::after {
  content: '⤢'; position: absolute; bottom: .6rem; right: .6rem; z-index: 3;
  font-size: .85rem; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.6); border: 1px solid rgba(232,200,104,.4); border-radius: 5px;
  color: var(--gold); opacity: 0; transition: opacity .22s ease, transform .22s ease;
  pointer-events: none; backdrop-filter: blur(4px);
}
#preferredGrid .car-img-wrap:hover::after { opacity: 1; transform: scale(1.08); }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 2.25rem 1.75rem; text-align: center; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .25s ease;
}
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--metallic); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: 0 16px 40px rgba(0,0,0,.4), var(--glow-sm); }
.step-num   { display: none; }
.step-title { font-family: var(--font-d); font-size: clamp(1rem, .92rem + .38vw, 1.18rem); font-weight: 600; color: var(--text); letter-spacing: .09em; margin-bottom: .85rem; }
.step-desc  { font-size: clamp(.77rem, .72rem + .16vw, .9rem); color: var(--text-muted); line-height: 1.85; font-weight: 300; }

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.reviews-head { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; }
.rev-badge { display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; border: 1px solid var(--border-gold); border-radius: var(--r); padding: .75rem 1.25rem; box-shadow: var(--glow-gold); }
.stars-lg  { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.rev-badge span { font-size: .72rem; color: var(--text-muted); letter-spacing: .1em; }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; transition: opacity .55s ease, transform .55s ease; }
@media (min-width: 600px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.rev-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.85rem; display: flex; flex-direction: column; gap: 1rem;
  transition: all var(--ease); position: relative; overflow: hidden;
}
.rev-card::before { content: '"'; position: absolute; top: -.75rem; right: 1.25rem; font-size: 7rem; font-family: Georgia, serif; color: var(--gold); opacity: .06; line-height: 1; pointer-events: none; }
.rev-card:hover { border-color: var(--border-gold); box-shadow: 0 16px 50px rgba(0,0,0,.35), var(--glow-sm); transform: translateY(-4px); }

.rev-stars  { font-size: 1rem; letter-spacing: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 4px rgba(232,200,104,.35)); }
.rev-text   { font-size: clamp(.8rem, .74rem + .18vw, .92rem); color: var(--text-muted); line-height: 1.9; font-weight: 300; flex: 1; }
.rev-author { display: flex; align-items: center; gap: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--metallic); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: .75rem; font-weight: 700; color: var(--bg); flex-shrink: 0; box-shadow: var(--glow-sm); }
.rev-info   { display: flex; flex-direction: column; gap: .15rem; }
.rev-name   { font-family: var(--font-d); font-size: .88rem; color: var(--text); letter-spacing: .1em; font-weight: 600; }
.rev-date   { font-size: .78rem; color: var(--text-muted); letter-spacing: .06em; }

.rev-nav    { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.rev-arrow  { background: transparent; border: 1px solid var(--border-gold); border-radius: 50%; width: 42px; height: 42px; color: var(--gold); font-size: 1.1rem; cursor: pointer; transition: all var(--ease); display: flex; align-items: center; justify-content: center; }
.rev-arrow:hover { background: var(--gold); color: var(--bg); box-shadow: var(--glow-gold); transform: scale(1.08); }
.rev-counter { font-family: var(--font-d); font-size: .65rem; letter-spacing: .15em; color: var(--text-muted); min-width: 60px; text-align: center; }
.rev-source { text-align: center; font-size: .8rem; color: var(--text-dim); margin-top: 1.5rem; letter-spacing: .05em; opacity: .7; }

@media (max-width: 899px) {
  .reviews-head { flex-direction: column; align-items: center; text-align: center; }
  .reviews-head .sec-title, .reviews-head .sec-sub { text-align: center; }
  .reviews-head .t-left { text-align: center; }
  .rev-badge { align-items: center; text-align: center; }
}

/* ════════════════════════════════════
   CONTACT / FORM
════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; align-items: start; } }

.contact-headline {
  font-family: var(--font-d); font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
  font-weight: 700; letter-spacing: .06em; margin-bottom: 1rem; line-height: 1.2;
  background: linear-gradient(105deg, var(--gold) 0%, var(--gold-light) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-sub { font-size: clamp(.75rem, .7rem + .18vw, .88rem); color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-details li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; letter-spacing: .04em; }
.contact-details svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(232,200,104,.35)); }
.contact-details a { color: var(--text-muted); transition: color var(--ease); }
.contact-details a:hover { color: var(--gold); }
.contact-details span { color: var(--text-muted); }

.social-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-row a { display: flex; align-items: center; gap: .5rem; font-family: var(--font-d); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); padding: .45rem .9rem; border-radius: 8px; transition: all var(--ease); }
.social-row a:hover { color: var(--gold); border-color: var(--border-gold); background: rgba(232,200,104,.05); transform: translateY(-2px); }

@media (max-width: 899px) {
  .contact-info { text-align: center; }
  .contact-headline, .contact-sub { text-align: center; }
  .contact-details { align-items: center; }
  .contact-details li { justify-content: center; }
  .social-row { justify-content: center; }
  #contact .eyebrow { text-align: center; display: block; }
}

/* Form */
.form-wrap {
  background: var(--card); border: 1px solid rgba(232,200,104,.18); border-radius: 14px;
  padding: 2.25rem; display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
@media (max-width: 600px) { .form-wrap { padding: 1.5rem 1.25rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.f-group { display: flex; flex-direction: column; gap: .5rem; }
.f-group label { font-family: var(--font-d); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); font-weight: 400; margin-bottom: .35rem; }
.f-group input, .f-group select, .f-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  padding: .9rem 1rem; color: var(--text); font-size: .9rem; font-weight: 300; width: 100%;
  -webkit-appearance: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.f-group input:hover, .f-group select:hover, .f-group textarea:hover { border-color: rgba(232,200,104,.22); background: rgba(255,255,255,.06); }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(232,200,104,.04); box-shadow: 0 0 0 3px rgba(232,200,104,.1); }
.f-group input[type="date"], .f-group input[type="datetime-local"] { color-scheme: dark; cursor: pointer; }
.f-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.8) sepia(1) saturate(3) hue-rotate(5deg); opacity: .7; cursor: pointer; }
.f-group textarea { resize: vertical; min-height: 90px; }
.f-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
#airportSelect optgroup { font-weight: 600; }
.f-note  { font-size: .72rem; color: var(--text-dim); text-align: center; }
.f-link  { color: var(--gold); text-decoration: underline; }
.f-field-note { display: block; margin-top: .45rem; font-size: .72rem; color: var(--text-muted); line-height: 1.5; }
.f-success { display: none; background: rgba(34,184,0,.1); border: 1px solid var(--jade); border-radius: var(--r); padding: 1rem; color: var(--gold); font-size: .85rem; text-align: center; box-shadow: var(--glow-jade); }
.f-success.show { display: block; }

/* Delivery toggle */
.delivery-toggle { display: flex; gap: .6rem; flex-wrap: wrap; }
.dtoggle-btn { flex: 1; min-width: 140px; display: flex; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1.25rem; border-radius: var(--r); border: 1.5px solid var(--border); background: rgba(255,255,255,.03); color: var(--text-muted); font-family: var(--font-b); font-size: .82rem; cursor: pointer; transition: all var(--ease); }
.dtoggle-btn:hover { border-color: var(--border-gold); color: var(--text); background: rgba(232,200,104,.05); }
.dtoggle-btn.active { border-color: var(--gold); background: rgba(232,200,104,.1); color: var(--gold); box-shadow: var(--glow-sm); }
.dtoggle-icon { font-size: 1rem; line-height: 1; }

/* Submit button */
#submitBtn {
  margin-top: .25rem; padding: 1rem 2rem;
  font-size: clamp(.85rem, .82rem + .15vw, .95rem); letter-spacing: .14em;
  border-radius: 10px; position: relative; overflow: hidden;
}
#submitBtn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.12) 50%, transparent 70%); transform: translateX(-100%); transition: transform .55s ease; }
#submitBtn:hover::before { transform: translateX(100%); }

/* ID Verification */
.id-verify-box { background: var(--card); border: 1px solid var(--border-gold); border-radius: 12px; padding: 1.5rem 1.25rem; text-align: center; margin-bottom: 1rem; }
.id-verify-icon  { font-size: 2.2rem; margin-bottom: .6rem; }
.id-verify-title { font-family: var(--font-d); font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.id-verify-sub   { font-size: .78rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
#idVerifyStatus  { font-size: .75rem; color: var(--text-muted); margin-top: .5rem; min-height: 1.2em; }
.id-verified-badge { background: rgba(34,184,0,.1); border: 1px solid var(--jade); border-radius: var(--r); padding: .6rem 1rem; font-family: var(--font-d); font-size: .75rem; letter-spacing: .08em; text-align: center; margin-bottom: .75rem; color: var(--gold); box-shadow: var(--glow-jade); }

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { border-radius: 14px; overflow: hidden; border: 1px solid rgba(232,200,104,.2); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; object-position: center; }
.about-headline { font-family: var(--font-d); font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem); font-weight: 700; color: var(--text); letter-spacing: .05em; line-height: 1.25; margin-bottom: 1.25rem; }
.about-text p   { font-size: clamp(.75rem, .7rem + .18vw, .88rem); color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; font-weight: 300; }
.stats-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.25rem; padding-top: 2.25rem; border-top: 1px solid var(--border); }
.stat-num  { font-family: var(--font-d); font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.4rem); font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: .25rem; text-shadow: 0 0 14px rgba(232,200,104,.45); }
.stat-label { font-size: .8rem; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 899px) {
  .about-text { text-align: center; }
  .about-headline, .about-text .eyebrow { text-align: center; display: block; }
  .stats-row { justify-content: center; text-align: center; }
  .about-grid { gap: 1.5rem; }
  #about .eyebrow { text-align: center; display: block; }
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
#footer { background: var(--footer-bg); border-top: 2px solid rgba(232,200,104,.45); padding: 4.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(34,184,0,.2); }
@media (min-width: 600px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 400px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-tagline    { font-size: .85rem; color: #A0A0A0; line-height: 2; margin-top: 1rem; font-weight: 300; }
.footer-social     { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social a   { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border-gold); border-radius: 9px; color: #A0A0A0; transition: all var(--ease); }
.footer-social a:hover { color: #111; background: var(--gold); border-color: var(--gold); box-shadow: var(--glow-gold); transform: translateY(-3px); }
.footer-col-title  { font-family: var(--font-d); font-size: .9rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-shadow: var(--glow-sm); margin-bottom: 1.35rem; }
.footer-col ul     { display: flex; flex-direction: column; gap: 1rem; }
.footer-col li     { font-size: .86rem; color: #A0A0A0; letter-spacing: .05em; line-height: 1.7; }
.footer-col a      { transition: all .25s ease; position: relative; display: inline-block; }
.footer-col a:hover { color: var(--gold); text-shadow: 0 0 16px rgba(232,200,104,.4); transform: translateX(4px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: .78rem; color: #767676; border-top: 1px solid rgba(34,184,0,.18); }
.footer-legal  { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-col-title, .footer-tagline { text-align: center; }
  .footer-social { justify-content: center; }
}

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.anim { opacity: 0; transform: translateY(28px); }
.reveal.anim.in { opacity: 1; transform: none; }

/* ════════════════════════════════════
   LUXURY GALLERY LIGHTBOX
════════════════════════════════════ */
#glx-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease;
  pointer-events: none; padding: 0;
}
#glx-overlay.glx-open { background: rgba(0,0,0,.94); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); pointer-events: all; }
#glx-panel {
  position: relative; width: min(92vw, 1160px); max-height: 92svh;
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, #141414 0%, #0d0d0d 60%, #111 100%);
  border: 1px solid rgba(232,200,104,.28); border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,.9);
  overflow: hidden; transform: scale(.93) translateY(24px); opacity: 0;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), opacity .32s ease, box-shadow .4s ease;
}
#glx-overlay.glx-open #glx-panel { transform: scale(1) translateY(0); opacity: 1; box-shadow: 0 0 60px rgba(232,200,104,.08), 0 40px 100px rgba(0,0,0,.9); }
#glx-header { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.4rem .75rem; border-bottom: 1px solid rgba(232,200,104,.12); flex-shrink: 0; }
#glx-car-name { font-family: 'Cinzel', 'Georgia', serif; font-size: clamp(.9rem, .78rem + .6vw, 1.3rem); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); text-shadow: 0 0 18px rgba(232,200,104,.3); }
#glx-counter  { font-family: 'Cinzel', 'Georgia', serif; font-size: .72rem; letter-spacing: .2em; color: #767676; margin-left: auto; margin-right: 1.2rem; }
#glx-close    { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(232,200,104,.28); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; line-height: 1; transition: all .22s ease; flex-shrink: 0; }
#glx-close:hover { background: var(--gold); color: #111; border-color: var(--gold); transform: rotate(90deg) scale(1.08); }
#glx-stage { position: relative; flex: 1; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 300px; background: #080808; }
#glx-stage::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--metallic); opacity: .55; z-index: 3; pointer-events: none; }
#glx-img { display: block; max-width: 100%; max-height: 100%; width: 100%; height: 100%; object-fit: contain; transition: opacity .28s ease, transform .28s cubic-bezier(.4,0,.2,1); border-radius: 0; }
#glx-img.glx-fade { opacity: 0; transform: scale(.97); }
.glx-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(0,0,0,.55); border: 1px solid rgba(232,200,104,.35); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.3rem; z-index: 2; transition: all .22s ease; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.glx-arrow:hover { background: var(--gold); color: #111; border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
#glx-prev { left: .9rem; }
#glx-next { right: .9rem; }
#glx-thumbs { display: flex; gap: .55rem; padding: .75rem 1.4rem; overflow-x: auto; border-top: 1px solid rgba(232,200,104,.1); flex-shrink: 0; scrollbar-width: thin; scrollbar-color: rgba(232,200,104,.3) transparent; }
#glx-thumbs::-webkit-scrollbar { height: 3px; }
#glx-thumbs::-webkit-scrollbar-track { background: transparent; }
#glx-thumbs::-webkit-scrollbar-thumb { background: rgba(232,200,104,.3); border-radius: 2px; }
.glx-thumb { width: 88px; height: 60px; flex-shrink: 0; object-fit: cover; border-radius: 6px; border: 2px solid rgba(255,255,255,.07); cursor: pointer; opacity: .5; transition: all .22s ease; }
.glx-thumb:hover { opacity: .85; border-color: rgba(232,200,104,.5); transform: translateY(-2px); }
.glx-thumb.glx-active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 12px rgba(232,200,104,.4); transform: translateY(-3px); }
#glx-footer { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 1rem 1.4rem; border-top: 1px solid rgba(232,200,104,.1); background: linear-gradient(180deg, transparent, rgba(0,0,0,.4)); flex-shrink: 0; flex-wrap: wrap; }
#glx-footer-name { font-family: 'Cinzel', 'Georgia', serif; font-size: .78rem; letter-spacing: .15em; color: #767676; text-transform: uppercase; margin-right: auto; }
.glx-cta { display: inline-flex; align-items: center; justify-content: center; font-family: 'Cinzel', 'Georgia', serif; font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .75rem 1.75rem; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: all .25s ease; white-space: nowrap; }
.glx-cta-contact { background: transparent; color: var(--gold); border-color: var(--gold); position: relative; overflow: hidden; animation: contactPulse 2.8s ease-in-out infinite; }
.glx-cta-contact:hover { background: var(--gold); color: #111; animation: none; box-shadow: 0 0 28px rgba(232,200,104,.5); transform: translateY(-2px); }

@media (max-width: 600px) {
  #glx-overlay { align-items: flex-end; }
  #glx-panel { width: 100vw; max-height: 100svh; border-radius: 16px 16px 0 0; border-left: none; border-right: none; border-bottom: none; }
  .glx-thumb { width: 68px; height: 46px; }
  .glx-arrow { width: 38px; height: 38px; font-size: 1rem; }
  #glx-thumbs { padding: .6rem 1rem; gap: .4rem; }
  #glx-footer { padding: .85rem 1rem; }
  #glx-footer-name { display: none; }
  .glx-cta { font-size: .78rem; padding: .65rem 1.25rem; }
}

/* ════════════════════════════════════
   HERO TEXT FADE ANIMATION
════════════════════════════════════ */
#heroBtns { transition: margin-top .8s ease; }
.hero-text-group.faded ~ #heroBtns { margin-top: 0; }

/* ════════════════════════════════════
   ID VERIFICATION
════════════════════════════════════ */
/* (all styles above in CONTACT section) */

/* ════════════════════════════════════
   PWA — INSTALL BANNER
════════════════════════════════════ */
#pwaInstallBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9500;
  padding: .75rem 1rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #141414 100%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(0,0,0,.7);
  animation: slideUpBanner .4s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUpBanner { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pwa-banner-inner { display: flex; align-items: center; gap: .85rem; max-width: 600px; margin: 0 auto; }
.pwa-banner-icon  { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; box-shadow: 0 0 12px rgba(232,200,104,.28); }
.pwa-banner-text  { flex: 1; min-width: 0; }
.pwa-banner-title { font-family: var(--font-d); font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--gold); }
.pwa-banner-sub   { font-size: .72rem; color: var(--text-muted); margin-top: .15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pwa-banner-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.pwa-btn-install  { background: var(--gold); color: var(--bg); border: none; border-radius: var(--r); padding: .5rem 1.1rem; font-family: var(--font-d); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: all var(--ease); white-space: nowrap; }
.pwa-btn-install:hover { background: var(--gold-light); box-shadow: var(--glow-gold); transform: translateY(-1px); }
.pwa-btn-dismiss  { background: transparent; border: 1px solid var(--border); color: var(--text-muted); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: all var(--ease); flex-shrink: 0; }
.pwa-btn-dismiss:hover { border-color: var(--text-muted); color: var(--text); }

/* ════════════════════════════════════
   PWA — iOS INSTALL HINT
════════════════════════════════════ */
.ios-install-hint {
  position: fixed; bottom: calc(env(safe-area-inset-bottom, 0px) + 12px); left: 50%; transform: translateX(-50%);
  z-index: 9600; width: calc(100% - 2rem); max-width: 420px;
  background: linear-gradient(135deg, #0d0d0d 0%, #141414 100%);
  border: 1px solid var(--border-gold); border-radius: var(--r-lg);
  padding: 1rem; box-shadow: 0 8px 40px rgba(0,0,0,.75), var(--glow-gold);
  animation: slideUpBanner .4s cubic-bezier(.4,0,.2,1);
  transition: opacity .3s ease, transform .3s ease; opacity: 1;
}
.ios-hint-inner  { display: flex; align-items: center; gap: .75rem; }
.ios-hint-icon   { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.ios-hint-text   { flex: 1; font-size: .78rem; color: var(--text); line-height: 1.5; }
.ios-hint-text svg { vertical-align: middle; display: inline; margin: 0 2px; }
.ios-hint-close  { background: transparent; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; flex-shrink: 0; padding: .25rem; line-height: 1; }
.ios-hint-arrow  { text-align: center; font-size: 1.2rem; color: var(--gold); margin-top: .4rem; line-height: 1; animation: arrowBounce 1.2s ease-in-out infinite; }
.ios-share-icon  { display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; background: rgba(232,200,104,.12); border: 1px solid var(--border-gold); border-radius: 5px; padding: 1px 5px; margin: 0 2px; vertical-align: middle; color: var(--gold); line-height: 1.3; }
@keyframes arrowBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ════════════════════════════════════
   PWA — BOTTOM NAV BAR
════════════════════════════════════ */
.app-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  height: 62px; background: rgba(8,8,8,.96);
  border-top: 1px solid rgba(232,200,104,.2);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -2px 20px rgba(0,0,0,.5);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.app-bottom-nav.visible { display: flex; }
.app-nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem; color: var(--text-muted); text-decoration: none; font-size: .58rem; font-family: var(--font-d); letter-spacing: .08em; text-transform: uppercase; transition: all var(--ease); padding: .4rem 0; position: relative; }
.app-nav-item svg { width: 20px; height: 20px; stroke: currentColor; transition: all var(--ease); }
.app-nav-item:hover, .app-nav-item.active { color: var(--gold); }
.app-nav-item.active svg { filter: drop-shadow(0 0 5px rgba(232,200,104,.55)); }
.app-nav-item.active::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: var(--gold); border-radius: 0 0 2px 2px; box-shadow: 0 0 8px rgba(232,200,104,.55); }
.app-nav-book { background: var(--gold); color: #111; border-radius: 12px; }
.app-nav-book svg { stroke: #111; }
.app-nav-book:hover, .app-nav-book.active { color: #111; }
.app-nav-book.active::before { background: transparent; box-shadow: none; }
@media (max-width: 768px) { body.has-bottom-nav { padding-bottom: 70px; } }

/* ════════════════════════════════════
   LIGHT THEME
════════════════════════════════════ */
[data-theme="light"] {
  --bg: #F8F5EE; --surface: #EFE9DC; --card: #E8E0D0; --card-h: #DDD5C5;
  --footer-bg: #E0D8C8; --text: #1A1610; --text-muted: #5A5040; --text-dim: #8A7A60;
  --border: rgba(0,0,0,.08); --border-gold: rgba(139,105,20,.28); --border-jade: rgba(34,184,0,.3);
}
[data-theme="light"] #header.scrolled { background: rgba(248,245,238,.97); box-shadow: 0 2px 30px rgba(0,0,0,.12); }
[data-theme="light"] .mob-nav { background: rgba(239,233,220,.98); border-top: 1px solid rgba(0,0,0,.08); }
[data-theme="light"] .hero-overlay { background: linear-gradient(to bottom, rgba(248,245,238,.5) 0%, rgba(248,245,238,.25) 30%, rgba(248,245,238,.45) 60%, rgba(248,245,238,.9) 100%); }
[data-theme="light"] .hero-overlay-sides { background: linear-gradient(90deg, rgba(248,245,238,.5) 0%, transparent 28%, transparent 72%, rgba(248,245,238,.5) 100%); }
[data-theme="light"] .hero-overlay-bottom { background: linear-gradient(to top, rgba(248,245,238,.98) 0%, rgba(248,245,238,.7) 40%, transparent 100%); }
[data-theme="light"] #heroContent { background: rgba(248,245,238,.82); }
[data-theme="light"] .hero-headline { text-shadow: 0 2px 12px rgba(255,255,255,.8); }
[data-theme="light"] .car-img-overlay { background: linear-gradient(to top, rgba(232,224,208,.92) 0%, transparent 50%); }
[data-theme="light"] .sec--dark { background: var(--surface); }
[data-theme="light"] .slider-arrow { background: rgba(248,245,238,.7); border-color: rgba(139,105,20,.4); color: var(--gold-dark); }
[data-theme="light"] .f-group input, [data-theme="light"] .f-group select, [data-theme="light"] .f-group textarea { color-scheme: light; }
[data-theme="light"] .f-group input[type="date"]::-webkit-calendar-picker-indicator { filter: none; opacity: .6; }

/* ════════════════════════════════════
   MOBILE SPACING REFINEMENTS
════════════════════════════════════ */
@media (max-width: 768px) {
  .sec-sub       { margin-bottom: 1.5rem; }
  .reviews-head  { margin-bottom: 1.25rem; }
  .filters       { margin-bottom: 1.25rem; }
  .about-grid    { gap: 1.5rem; }
  .contact-grid  { gap: 1.5rem; }
  .stats-row     { margin-top: 1.25rem; padding-top: 1.25rem; gap: 2rem; }
  .steps-grid    { gap: 1rem; }
  .divider       { margin-bottom: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .about-text p, .contact-sub, .area-desc, .step-desc, .rev-text { font-size: clamp(.8rem, .76rem + .16vw, .92rem); line-height: 1.85; }
}

/* ════════════════════════════════════
   UTILITY CLASSES
════════════════════════════════════ */
.f-hidden       { display: none; }
.f-hidden.show  { display: block; }
.text-center    { text-align: center; display: block; }

/* Header book now sizing */
.h-book-btn { padding: .7rem 1.25rem; font-size: clamp(.72rem, .68rem + .14vw, .82rem); letter-spacing: .12em; }

/* Mobile nav book btn */
.mob-book-btn { margin-top: .5rem; }

/* Footer book btn */
.footer-book-btn { margin-top: 1.25rem; display: inline-flex; }

/* Delivery toggle label */
.dtoggle-label { font-weight: 500; }

/* ID verify note paragraph */
.id-verify-note { color: var(--text-muted); font-size: .8rem; margin-bottom: .75rem; }

/* ID verify confirm wrap */
.id-verify-confirm { margin-top: 1.25rem; text-align: center; }

/* ID verify icon — text label styled */
.id-verify-icon {
  font-family: var(--font-d);
  font-size: 1rem; font-weight: 700; letter-spacing: .25em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: .6rem; display: block;
  border: 1px solid var(--border-gold); border-radius: 4px;
  padding: .3rem .75rem; width: fit-content; margin: 0 auto .75rem;
}

/* Form field error message */
.f-error-msg { color: #e05c5c; font-size: .72rem; margin-top: .25rem; }

/* ════════════════════════════════════
   MOBILE ENHANCEMENTS — Touch & Layout
════════════════════════════════════ */

/* Ensure minimum touch target for all buttons */
@media (max-width: 767px) {
  .btn { min-height: 48px; }
  .car-btn { min-height: 48px; font-size: .88rem; }
  .filter-btn { min-height: 44px; }
  .ham { min-height: 44px; min-width: 44px; }
  .dtoggle-btn { min-height: 48px; }
}

/* Hero — taller on mobile for impact */
@media (max-width: 600px) {
  #hero { min-height: 75svh; }
  .hero-dots { bottom: 2rem; }
  .scroll-hint { display: none; }
  #heroContent { width: calc(100% - 2rem); bottom: 45%; }
  #heroContent.text-faded { bottom: 4rem; }
}

/* Fleet cards — single column, full bleed on tiny screens */
@media (max-width: 479px) {
  .fleet-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  #preferredGrid { grid-template-columns: 1fr; gap: 1.25rem; }
  .car-gallery img { width: 52px; height: 36px; }
}

/* Contact form — full single column always on mobile */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .f-group input, .f-group select, .f-group textarea { font-size: 16px; } /* prevent iOS zoom */
  .form-wrap { padding: 1.25rem 1rem; }
  #submitBtn { font-size: .88rem; padding: 1rem 1.5rem; }
}

/* Brands grid — 2 col on mobile */
@media (max-width: 600px) {
  .brands-row { gap: .75rem; }
  .brand-item { width: 140px; min-width: 140px; max-width: 140px; }
  .brand-item img { width: 110px; height: 80px; }
}

/* Airport badges — stack to 1 col on very small */
@media (max-width: 360px) {
  .airport-cinematic-badges { flex-direction: column; }
  .airport-cinematic-badges .apbadge { flex: unset; }
}

/* Steps — proper spacing */
@media (max-width: 600px) {
  .step-card { padding: 1.75rem 1.25rem; }
}

/* Reviews — full width cards on mobile */
@media (max-width: 600px) {
  .rev-card { padding: 1.5rem 1.25rem; }
  .reviews-head { gap: 1rem; }
}

/* About section image min height on mobile */
@media (max-width: 600px) {
  .about-img img { min-height: 240px; }
  .stats-row { gap: 1.5rem; }
}

/* Footer — single column on small */
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: center; }
}

/* Lightbox on mobile — full screen sheet */
@media (max-width: 600px) {
  #glx-stage { min-height: 220px; }
  #glx-car-name { font-size: .85rem; }
}

/* Bottom nav — only in standalone/app mode to prevent hiding content */
/* (visibility toggled via JS in pwa.js) */
@media (max-width: 768px) {
  body.has-bottom-nav { padding-bottom: 70px; }
}

/* SEO H1 — visually hidden but readable by Google crawlers */
.seo-h1 {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ════ Real Logo Image ════ */
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (max-width: 767px) {
  .logo-img { height: 80px; }
}
