/* ============================================================
   EUROMOTION — Homepage Redesign  ·  redesign.css
   Same brand DNA (navy #0A1628 + gold #F5A623), elevated.
   Glassmorphism · cinematic hero · choreographed motion.
   Mobile-first · no frameworks · prefers-reduced-motion aware.
   ============================================================ */

:root {
  --navy: #0A1628;
  --navy-2: #11203A;
  --navy-3: #0d1d33;
  --gold: #F5A623;
  --gold-2: #FFB733;
  --gold-deep: #d98a0e;
  --pearl: #F7F8FA;
  --pearl-2: #EEF1F5;
  --charcoal: #1C2B3A;
  --off-white: #EDF2F7;
  --slate: #4A5568;
  --slate-2: #718096;
  --line: #E4E9F0;
  --emerald: #38A169;
  --whatsapp: #25D366;

  --grad-gold: linear-gradient(135deg, #FFD27A 0%, #F5A623 45%, #d98a0e 100%);
  --grad-navy: linear-gradient(165deg, #11203A 0%, #0A1628 70%);

  --shadow-sm: 0 2px 10px rgba(10,22,40,.06);
  --shadow-md: 0 14px 38px rgba(10,22,40,.10);
  --shadow-lg: 0 30px 70px rgba(10,22,40,.16);
  --shadow-gold: 0 18px 44px rgba(245,166,35,.34);

  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --container: 1240px;
  --header-h: 80px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--navy); }

html[lang="ar"] body { font-family: 'Tajawal', 'Inter', sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.85rem); margin-bottom: .35em; }
h3 { font-size: 1.25rem; margin-bottom: .4em; }
p { margin-bottom: 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.ltr { direction: ltr; unicode-bidi: embed; }

/* base section rhythm */
section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.bg-pearl { background: var(--pearl); }
.bg-navy { background: var(--grad-navy); position: relative; overflow: hidden; }

/* keyboard focus */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ SCROLL PROGRESS (created by JS) ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad-gold);
  z-index: 1000; pointer-events: none;
  box-shadow: 0 0 12px rgba(245,166,35,.6);
}

/* ============ SECTION HEAD ============ */
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad-gold); }
.bg-navy .eyebrow, .pwa-section .eyebrow { color: var(--gold); }
.section-head p { color: var(--slate); font-size: 1.08rem; margin: 0; }

/* ============ BUTTONS ============ */
.btn {
  --btn-bg: var(--gold);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .98rem; letter-spacing: .005em;
  white-space: nowrap; overflow: hidden; isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .35s ease, color .35s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }
/* sheen sweep */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }

.btn-primary { background: var(--grad-gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-primary:hover { box-shadow: 0 24px 56px rgba(245,166,35,.45); }
.btn-primary svg { stroke: var(--navy); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 14px 34px rgba(37,211,102,.32); }
.btn-whatsapp:hover { background: #20bd5a; box-shadow: 0 20px 44px rgba(37,211,102,.42); }
.btn-whatsapp svg { fill: #fff; }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.center-cta { text-align: center; margin-top: clamp(36px, 5vw, 60px); }

/* btn-outline on dark sections */
.bg-navy .btn-outline, .cta-banner .btn-outline {
  color: #fff; border-color: rgba(255,255,255,.5);
}
.bg-navy .btn-outline:hover, .cta-banner .btn-outline:hover {
  background: #fff; color: var(--navy);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,17,32,.92);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease), box-shadow .5s var(--ease);
}
/* Homepage only: transparent over the cinematic hero, frosts on scroll */
body.home .site-header {
  position: fixed; background: transparent; border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
body.home .site-header.scrolled {
  background: #0A1628;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); transition: height .4s var(--ease); }
.site-header.scrolled .nav { height: 66px; }
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.42rem; letter-spacing: .01em;
  color: #fff; display: flex; align-items: center; gap: 8px;
}
.logo-mark { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(0,0,0,.95)) drop-shadow(0 2px 6px rgba(0,0,0,.85)) drop-shadow(0 0 3px rgba(0,0,0,.9)); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  position: relative; color: var(--off-white); font-size: .96rem; font-weight: 500; padding: 6px 0;
  transition: color .25s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; border-radius: 2px;
  background: var(--grad-gold); transition: width .35s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a.nav-cta,
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; white-space: nowrap; letter-spacing: .01em;
  background: var(--gold);
  background-image: var(--grad-gold);
  color: var(--navy) !important;
  padding: 11px 32px !important;
  border-radius: 999px;
  font-size: .95rem; font-weight: 700 !important;
  box-shadow: 0 6px 18px rgba(245,166,35,.22), inset 0 0 0 1px rgba(255,255,255,.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(245,166,35,.34), inset 0 0 0 1px rgba(255,255,255,.24);
  filter: brightness(1.04);
}

.lang-switcher .lang-select, .header-lang .lang-select {
  appearance: auto; -webkit-appearance: auto;
  background: transparent; color: #fff; border: none;
  border-radius: 0; padding: 6px 2px; font-size: .82rem; font-weight: 600; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; opacity: .85;
  transition: color .25s, opacity .25s;
}
.lang-switcher .lang-select:hover, .header-lang .lang-select:hover { color: var(--gold); opacity: 1; }
.lang-select option { background: var(--navy); color: #fff; }
.header-lang { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; position: relative; }
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: #fff; margin: 5px auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 70px; overflow: hidden; isolation: isolate;
  background: var(--navy);
}
.hero::before { /* photo */
  content: ""; position: absolute; inset: 0; z-index: -3;
  background: url("../assets/images/hero/hero-bg.webp") center/cover no-repeat;
  transform: scale(1.06); animation: heroZoom 22s ease-in-out infinite alternate;
}
.hero::after { /* scrim removed — image shows fully clear */
  content: none;
}
/* drifting aurora */
.hero-aurora { position: absolute; inset: -20%; z-index: -1; pointer-events: none; opacity: .55; }
.hero-aurora::before, .hero-aurora::after {
  content: ""; position: absolute; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; border-radius: 50%;
  filter: blur(80px);
}
.hero-aurora::before { background: radial-gradient(circle, rgba(245,166,35,.55), transparent 65%); top: -12%; right: -8%; animation: drift1 18s ease-in-out infinite alternate; }
.hero-aurora::after { background: radial-gradient(circle, rgba(56,128,200,.5), transparent 65%); bottom: -18%; left: -6%; animation: drift2 22s ease-in-out infinite alternate; }
@keyframes heroZoom { to { transform: scale(1.14); } }
@keyframes drift1 { to { transform: translate(-60px, 50px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(70px, -40px) scale(1.12); } }

.hero-content { position: relative; z-index: 2; max-width: 860px; }
/* 90% dark backdrop hugs the text exactly — two separate rounded cards */
.hero h1 {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: rgba(8,17,32,.9);
  padding: 18px 26px;
  border-radius: 18px;
  margin-bottom: 14px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: break-word;
}
/* Slightly tighter font in hero so long translations stay 2 lines */
.hero-content h1 {
  font-size: clamp(1.85rem, 4.2vw, 3.5rem);
}
.hero .hero-sub {
  display: inline-block;
  width: fit-content;
  background: rgba(8,17,32,.9);
  padding: 14px 22px;
  border-radius: 14px;
  max-width: 100%;
  margin-bottom: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

/* Header logo: no pill — but a soft dark vignette behind the wordmark
   so it grounds against the hero without looking like a button */
.site-header .logo {
  position: relative; isolation: isolate;
  text-shadow:
    0 2px 6px rgba(0,0,0,.95),
    0 0 14px rgba(0,0,0,.85),
    0 1px 2px rgba(0,0,0,.9);
}
.site-header .logo::before {
  content: ""; position: absolute; z-index: -1;
  inset: -14px -32px;
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,.6) 0%,
    rgba(0,0,0,.45) 35%,
    rgba(0,0,0,.18) 65%,
    transparent 85%);
  filter: blur(10px);
  pointer-events: none;
}
/* When header is scrolled (already dark), drop the vignette so it doesn't double-up */
.site-header.scrolled .logo::before { opacity: 0; transition: opacity .35s var(--ease); }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-content > * { animation: heroIn .85s var(--ease-out) backwards; }
.hero-content > *:nth-child(1) { animation-delay: .12s; }
.hero-content > *:nth-child(2) { animation-delay: .22s; }
.hero-content > *:nth-child(3) { animation-delay: .30s; }
.hero-content > *:nth-child(4) { animation-delay: .38s; }
.hero-content > *:nth-child(5) { animation-delay: .46s; }
.hero-content > *:nth-child(6) { animation-delay: .54s; }
.hero-content > *:nth-child(7) { animation-delay: .62s; }
.hero h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 .gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: rgba(237,242,247,.9); font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 620px; margin-bottom: 14px; }
.hero-keywords { color: rgba(237,242,247,.55); font-size: .92rem; font-family: 'Space Grotesk', sans-serif; letter-spacing: .01em; margin-bottom: 26px; }

.avail-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: rgba(8,17,32,.88); border: 1px solid rgba(56,217,124,.55); color: #6cf3a4;
  padding: 10px 20px; border-radius: 100px; font-size: .9rem; font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.avail-dot { width: 9px; height: 9px; border-radius: 50%; background: #36d97c; box-shadow: 0 0 0 0 rgba(54,217,124,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(54,217,124,0); } 100% { box-shadow: 0 0 0 0 rgba(54,217,124,0); } }

/* glass quick-search bar */
.hs-bar {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 6px; margin-bottom: 26px; max-width: 720px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius);
  padding: 8px; backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.hs-bar-field { padding: 10px 16px; border-radius: 11px; transition: background .3s ease; }
.hs-bar-field:hover { background: rgba(255,255,255,.08); }
.hs-bar-label { font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.7); margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.hs-bar-field select, .hs-bar-field input {
  width: 100%; background: transparent; border: 0; outline: none; color: #fff; font-family: inherit;
  font-size: 1rem; font-weight: 600;
}
.hs-bar-field input::placeholder { color: rgba(255,255,255,.55); font-weight: 500; }
.hs-bar-field select option { background: var(--navy); color: #fff; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badges span {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10,22,40,.16);
  color: #0A1628;
  padding: 9px 16px; border-radius: 100px;
  font-size: .85rem; font-weight: 700; letter-spacing: .005em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.trust-badges span::before { content: "✓"; color: var(--gold-deep); font-weight: 800; }
.trust-badges span:hover {
  background: #fff;
  border-color: rgba(245,166,35,.6);
  transform: translateY(-2px);
}

/* scroll cue (created by JS) */
.hero-scrollcue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif;
}
.hero-scrollcue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.hero-scrollcue .mouse::before { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: var(--gold); transform: translateX(-50%); animation: cue 1.7s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ============ STATS STRIP ============ */
.stats-strip { position: relative; z-index: 5; margin-top: -52px; }
.stats-strip .container { padding: 0 24px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.stat-item { padding: 38px 24px; text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 22%; height: 56%; width: 1px; background: var(--line); }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 10px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-2); font-weight: 600; }

/* ============ WHY / FEATURES ============ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px;
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.feature-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-gold); transform: scaleX(0); transform-origin: 0; transition: transform .5s var(--ease); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; font-weight: 800;
  background: linear-gradient(145deg, rgba(245,166,35,.16), rgba(245,166,35,.06)); color: var(--gold-deep);
  margin-bottom: 20px; transition: transform .5s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { color: var(--navy); }
.feature-card p { color: var(--slate); margin: 0; font-size: .96rem; }

/* ============ FLEET ============ */
.fleet-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  font-family: 'Space Grotesk', sans-serif; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--slate); background: #fff; border: 1.5px solid var(--line); padding: 9px 20px; border-radius: 100px;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.filter-btn:hover { color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.filter-btn.active { color: var(--navy); background: var(--grad-gold); border-color: transparent; box-shadow: 0 10px 24px rgba(245,166,35,.32); }
.car-card { transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), opacity .45s var(--ease); }
.car-card.filtering-out { opacity: 0; transform: scale(.96); }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.car-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.car-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,.4); }
.car-image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--pearl-2); }
.car-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.car-card:hover .car-image img { transform: scale(1.08); }
.car-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,22,40,.18)); opacity: 0; transition: opacity .5s ease; }
.car-card:hover .car-image::after { opacity: 1; }
.car-badge {
  position: absolute; top: 14px; left: 14px; background: var(--grad-gold); color: var(--navy);
  font-family: 'Space Grotesk', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; box-shadow: 0 8px 20px rgba(245,166,35,.4);
}
.car-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.car-class { font-family: 'Space Grotesk', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.car-body h3 { color: var(--navy); margin: 6px 0 14px; font-size: 1.3rem; }
.car-specs { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 18px; }
.car-specs span { font-size: .84rem; color: var(--slate); }
.car-price { margin-bottom: 18px; margin-top: auto; }
.car-price .amount { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.car-price .unit { color: var(--slate-2); font-size: .9rem; margin-left: 4px; }
.car-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.car-actions .btn { padding: 12px 14px; font-size: .9rem; }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.steps::before { content: ""; position: absolute; top: 34px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .4; }
.step { text-align: center; position: relative; }
.step-num {
  width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 700; color: #fff;
  background: var(--grad-navy); border: 2px solid var(--gold); box-shadow: 0 14px 34px rgba(10,22,40,.25);
  position: relative; z-index: 1; transition: transform .5s var(--ease);
}
.step:hover .step-num { transform: translateY(-6px) scale(1.05); }
.step h3 { color: var(--navy); }
.step p { color: var(--slate); margin: 0; }

/* ============ DESTINATIONS ============ */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; display: block;
  box-shadow: var(--shadow-md); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.82) saturate(1.05); transition: transform 1.3s var(--ease), filter .6s ease; }
.dest-card:hover img { transform: scale(1.1); filter: brightness(.92) saturate(1.15); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8,17,32,.88)); }
.dest-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; transform: translateY(8px); transition: transform .5s var(--ease); }
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-info h3 {
  color: #fff; font-size: 1.5rem; margin-bottom: 4px; display: inline-block; padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .45s var(--ease);
}
.dest-card:hover .dest-info h3 { background-size: 100% 2px; }
.dest-info span { color: var(--gold-2); font-family: 'Space Grotesk', sans-serif; font-size: .85rem; font-weight: 500; letter-spacing: .03em; display: inline-flex; align-items: center; gap: 6px; }
.dest-info span::before { content: "→"; opacity: 0; transform: translateX(-8px); transition: all .4s var(--ease); }
.dest-card:hover .dest-info span::before { opacity: 1; transform: translateX(0); }

/* ============ REVIEWS ============ */
.review-rating-banner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 34px;
  box-shadow: var(--shadow-md); margin-bottom: 40px;
}
.rating-big { font-family: 'Space Grotesk', sans-serif; font-size: 3.4rem; font-weight: 700; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.google-wordmark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.g-blue { color: #4285F4; } .g-red { color: #EA4335; } .g-yellow { color: #FBBC05; } .g-green { color: #34A853; }
.flag-strip { font-size: 1.2rem; letter-spacing: 4px; margin-top: 10px; line-height: 1; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review-card::before { content: "\201C"; position: absolute; top: 6px; right: 22px; font-family: 'Plus Jakarta Sans', serif; font-size: 5rem; line-height: 1; color: rgba(245,166,35,.16); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--pearl-2); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.review-avatar svg { width: 24px; height: 24px; }
.review-author strong { display: block; color: var(--navy); font-size: .98rem; }
.review-author small { color: var(--slate-2); font-size: .8rem; display: inline-flex; align-items: center; gap: 4px; }
.review-card > .stars { margin-bottom: 12px; }
.review-card p { color: var(--slate); font-size: .96rem; margin: 0; line-height: 1.7; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .35s ease, box-shadow .35s ease, background .35s ease; }
.faq-item.open { border-color: rgba(245,166,35,.5); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.04rem; color: var(--navy);
}
[dir="rtl"] .faq-q { text-align: right; }
.faq-q::after {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .4s var(--ease);
  background:
    linear-gradient(var(--gold), var(--gold)) center/100% 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/2px 100% no-repeat;
}
.faq-item.open .faq-q::after { transform: rotate(135deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-a > p { overflow: hidden; min-height: 0; margin: 0; padding: 0 24px; color: var(--slate); transition: padding .45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding: 0 24px 22px; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.blog-card:hover .blog-image img { transform: scale(1.07); }
.blog-tag { position: absolute; top: 14px; left: 14px; background: rgba(8,17,32,.7); color: #fff; backdrop-filter: blur(6px); font-family: 'Space Grotesk', sans-serif; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-size: .78rem; color: var(--slate-2); margin-bottom: 10px; }
.blog-body h3 { color: var(--navy); font-size: 1.15rem; }
.blog-body p { color: var(--slate); font-size: .92rem; }
.blog-readmore { margin-top: auto; color: var(--gold-deep); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s var(--ease); }
.blog-card:hover .blog-readmore { gap: 12px; }

/* ============ MAP & CONTACT ============ */
.map-block { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: stretch; }
.map-block iframe { width: 100%; min-height: 420px; height: 100%; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); filter: grayscale(.2); }
.contact-block { background: var(--grad-navy); border-radius: var(--radius-lg); padding: 40px; color: #fff; position: relative; overflow: hidden; }
.contact-block h3 { color: #fff; }
.contact-block > p { color: rgba(237,242,247,.8); }
.contact-info-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(245,166,35,.16); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-list strong { display: block; color: #fff; font-size: .92rem; }
.contact-info-list span, .contact-info-list a { color: rgba(237,242,247,.78); font-size: .92rem; }
.contact-info-list a:hover { color: var(--gold); }
/* Contact card is dark navy — force its heading + labels white (markup uses <h2>;
   styles.css makes the strong labels navy, which is invisible here) */
.contact-block h2, .contact-block h3 { color: #fff; }
.contact-info-list li strong { color: #fff; }

/* ============ FINAL CTA ============ */
.bg-navy::before { content: ""; position: absolute; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.22), transparent 65%); top: -30%; right: -10%; filter: blur(60px); pointer-events: none; }
.bg-navy h2 { color: #fff; }
.text-center { text-align: center; }

/* ============ PWA ============ */
/* Light, elevated premium card — breaks the dark CTA→footer run */
.pwa-section { padding: clamp(60px,8vw,104px) 0; background: linear-gradient(180deg,#ffffff 0%, #eef2f7 100%); }
.pwa-inner {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(28px,4vw,48px); align-items: center;
  max-width: 920px; margin: 0 auto;
  background: #fff; border: 1px solid #e7ebf0; border-radius: var(--radius-xl);
  padding: clamp(32px,4vw,52px);
  box-shadow: 0 32px 70px -22px rgba(10,22,40,.24), 0 10px 28px -12px rgba(10,22,40,.12);
  position: relative; overflow: hidden;
}
.pwa-inner::after { /* soft gold accent glow, top-right */
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.16), transparent 65%);
  top: -110px; right: -70px; filter: blur(24px); pointer-events: none;
}
.pwa-app-icon img {
  width: 104px; height: 104px; object-fit: contain; border-radius: 24px;
  background: linear-gradient(150deg,#10213a,#0A1628);
  box-shadow: 0 18px 40px rgba(10,22,40,.30), inset 0 0 0 1px rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
.pwa-text { position: relative; z-index: 1; text-align: left; }
.pwa-text .eyebrow { margin: 0 0 6px; }
.pwa-text h2 { color: var(--navy); margin: 0 0 10px; }
.pwa-text p { color: var(--slate); max-width: 480px; margin: 0 0 18px; }
.pwa-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 4px; }
.pwa-hint { font-size: .82rem; color: #94a3b8; margin: 0; line-height: 1.6; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: rgba(237,242,247,.7); padding: clamp(56px,7vw,84px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr 1.4fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo { color: #fff; }
.footer-tagline { color: rgba(237,242,247,.6); font-size: .92rem; max-width: 30ch; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(237,242,247,.8); transition: all .35s var(--ease); }
.socials a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); border-color: var(--gold); }
.footer-col h3, .footer-toggle { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-contact-list span { color: rgba(237,242,247,.62); font-size: .92rem; transition: color .25s ease, padding-left .25s ease; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: rgba(237,242,247,.5); }
.footer-amennou { color: var(--gold); font-weight: 600; }
/* Swap order: AMENNOU credit before the language link */
.footer-bottom .footer-lang { order: 3; }
.footer-toggle { cursor: default; }
.footer-toggle::after { content: ""; }

/* ============ WHATSAPP FLOAT + POPUP ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 36px rgba(37,211,102,.5);
  transition: transform .4s var(--ease);
}
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); z-index: -1; animation: waRing 2.4s var(--ease) infinite; }
@keyframes waRing { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }

.wa-popup {
  position: fixed; right: 22px; bottom: 94px; z-index: 91; width: 300px; max-width: calc(100vw - 44px);
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 18px; cursor: pointer;
  transform-origin: bottom right; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.wa-popup-hidden { opacity: 0; transform: translateY(14px) scale(.92); pointer-events: none; }
.wa-popup-close { position: absolute; top: 8px; right: 12px; font-size: 1.3rem; color: var(--slate-2); line-height: 1; }
.wa-popup-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.wa-popup-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--whatsapp); display: grid; place-items: center; }
.wa-popup-avatar svg { width: 24px; height: 24px; }
.wa-popup-name { font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.wa-popup-status { font-size: .78rem; color: var(--emerald); }
.wa-popup p { margin: 0; font-size: .9rem; color: var(--slate); }

/* ============ FLATPICKR THEME ============ */
.flatpickr-calendar { border-radius: 16px !important; box-shadow: var(--shadow-lg) !important; border: 1px solid var(--line) !important; font-family: 'Inter', sans-serif !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--navy) !important; }
.flatpickr-day:hover { background: rgba(245,166,35,.16) !important; }
.flatpickr-day.today { border-color: var(--gold) !important; }
.flatpickr-months .flatpickr-month, .flatpickr-current-month { color: var(--navy) !important; }
.flatpickr-weekday { color: var(--slate-2) !important; }

/* ============ MOTION / REVEAL ============ */
.has-js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); will-change: opacity, transform; }
.has-js .reveal.is-visible { opacity: 1; transform: none; }
.has-js .reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.has-js .reveal-scale.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid, .reviews-grid, .blog-grid, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .map-block { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /* Mobile header: logo left · EN/EUR · hamburger at far right */
  .logo { font-size: 1.18rem; gap: 6px; }
  .logo-mark { width: 24px; height: 24px; }
  .nav-toggle { display: block; order: 3; margin-left: 10px; flex-shrink: 0; }
  .lang-switcher { display: none; }
  .header-lang { display: flex; align-items: center; flex-wrap: nowrap; order: 2; margin-left: auto; }
  .header-lang .lang-select { font-size: .78rem; padding: 6px 0; }
  .header-lang .cur-select { margin-left: 2px !important; }
  /* Availability badge — keep it tight on one line */
  .avail-badge { font-size: .76rem; padding: 8px 15px; gap: 8px; letter-spacing: 0; }
  /* Trust chips — compact so they settle into ~2 rows, each chip on one line */
  .trust-badges { gap: 6px; }
  .trust-badges span { font-size: .7rem; padding: 6px 11px; gap: 5px; white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,.16); }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(8,17,32,.97); backdrop-filter: blur(20px); padding: 16px 24px 28px;
    transform: translateY(-115%); transition: transform .45s var(--ease); border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links a { display: block; padding: 16px 0; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 14px; }
  .hs-bar { grid-template-columns: 1fr 1fr; }
  .hs-bar-field:first-child { grid-column: 1 / -1; }
  .steps::before { display: none; }
}
@media (max-width: 767px) {
  /* Slide 1 — first mobile hero, slow zoom + fade cycle */
  .hero::before {
    background-image: url("../assets/images/hero/hero-mobile.webp");
    animation: heroZoom 22s ease-in-out infinite alternate, heroSlide1 14s ease-in-out infinite;
  }
  /* Slide 2 — second mobile hero, fades in/out opposite to slide 1 */
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: -2;
    background: url("../assets/images/hero/hero-mobile-2.webp") center/cover no-repeat;
    animation: heroSlide2 14s ease-in-out infinite;
  }
}
@keyframes heroSlide1 {
  0%, 42%   { opacity: 1; }
  50%, 92%  { opacity: 0; }
  100%      { opacity: 1; }
}
@keyframes heroSlide2 {
  0%, 42%   { opacity: 0; }
  50%, 92%  { opacity: 1; }
  100%      { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none !important; }
}
@media (max-width: 680px) {
  .features, .fleet-grid, .reviews-grid, .blog-grid, .dest-grid, .steps { grid-template-columns: 1fr; }
  /* Center feature cards content on mobile */
  .feature-card { text-align: center; }
  .feature-card .feature-icon { margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:not(:last-child) { border-bottom: 1px solid var(--line); }
  .car-actions { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-rating-banner { flex-direction: column; text-align: center; }
  .pwa-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 20px; padding: 32px 22px; }
  .pwa-text { text-align: center; }
  .pwa-text p { margin-left: auto; margin-right: auto; }
  .pwa-actions { align-items: center; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 30px); }
  /* Hero CTAs share one line; WhatsApp is the compact secondary */
  .hero-cta { flex-wrap: nowrap; gap: 10px; align-items: stretch; }
  .hero-cta .btn-primary { flex: 1 1 auto; padding: 13px 18px; }
  .hero-cta .btn-whatsapp { flex: 0 0 auto; padding: 13px 16px; font-size: .84rem; gap: 7px; }
  .hero-cta .btn-whatsapp svg { width: 17px; height: 17px; }
  /* Lift floating WhatsApp by half its size on mobile + keep popup synced above it */
  .wa-float { bottom: 52px; }
  /* Smaller, less bulky popup on mobile */
  .wa-popup { bottom: 118px; width: 224px; padding: 12px 14px; border-radius: 14px; }
  .wa-popup-head { gap: 9px; margin-bottom: 6px; }
  .wa-popup-avatar { width: 34px; height: 34px; }
  .wa-popup-avatar svg { width: 19px; height: 19px; }
  .wa-popup-name { font-size: .9rem; }
  .wa-popup-status { font-size: .72rem; }
  .wa-popup p { font-size: .8rem; }
  .wa-popup-close { font-size: 1.1rem; top: 6px; right: 10px; }

  /* mobile collapsible footer */
  .footer-col:not(.footer-brand) .footer-toggle { cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-col:not(.footer-brand) .footer-toggle::after { content: "+"; font-size: 1.2rem; color: var(--gold); transition: transform .3s ease; }
  .footer-col:not(.footer-brand) .footer-toggle.open::after { transform: rotate(45deg); }
  .footer-col:not(.footer-brand) .footer-links { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
  .footer-col:not(.footer-brand) .footer-links.open { max-height: 320px; padding-top: 14px; }
}

@media (hover: none) {
  .dest-info { transform: none; }
  .dest-info span::before { opacity: 1; transform: none; }
}

/* ============ PRINT ============ */
@media print {
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .site-header { position: static; }
  .hero { min-height: auto; padding-top: 40px; }
  .hero::before { animation: none; }
  .hero-content > * { animation: none !important; }
  .has-js .reveal, .has-js .reveal-scale { opacity: 1 !important; transform: none !important; }
  .scroll-progress, .wa-float, .wa-popup, .hero-scrollcue, .hero-aurora { display: none !important; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .has-js .reveal, .has-js .reveal-scale { opacity: 1 !important; transform: none !important; }
  .hero::before { animation: none; transform: scale(1.06); }
  .hero-content > * { animation: none !important; }
}

/* ============ FLEET — placeholder car image (no photo yet) ============ */
.car-image.placeholder {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 8 / 5;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(245,166,35,.16), transparent 55%),
    radial-gradient(120% 80% at 80% 90%, rgba(245,166,35,.10), transparent 60%),
    linear-gradient(160deg, #11203A 0%, #0A1628 60%, #060f1d 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.car-image.placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px;
  mask-image: radial-gradient(closest-side at 50% 60%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 60%, #000 30%, transparent 80%);
  opacity: .55;
}
.car-image.placeholder .ph-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 18px; text-align: center;
}
.car-image.placeholder .ph-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(245,166,35,.95), rgba(217,138,14,.95));
  box-shadow: 0 8px 20px rgba(245,166,35,.28);
  color: #0A1628;
}
.car-image.placeholder .ph-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: .01em; color: #fff;
}
.car-image.placeholder .ph-class {
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold);
}
.car-image.placeholder .car-badge { z-index: 2; }

/* Luxury class badge tone */
.car-class.cls-luxury { background: linear-gradient(135deg,#2a2a2a,#0a0a0a); color: #f5d27a; }
.car-class.cls-van    { background: linear-gradient(135deg,#1b3a5c,#0A1628); color: #fff; }

/* ============ FLEET BRAND MARQUEE ============ */
.brands-strip {
  padding: clamp(48px, 6vw, 80px) 0 clamp(36px, 4vw, 56px);
  background: linear-gradient(180deg, #fff 0%, var(--pearl) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.brands-strip-head { text-align: center; margin-bottom: clamp(28px, 3.5vw, 44px); }
.brands-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.brands-eyebrow::before {
  content: ""; width: 28px; height: 2px; border-radius: 2px;
  background: var(--grad-gold);
}
.brands-strip h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy);
  margin: 0;
}

/* Infinite marquee — pure CSS, respects reduced motion */
.brands-marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.brands-track {
  display: flex; align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: max-content;
  animation: brandScroll 38s linear infinite;
}
.brands-marquee:hover .brands-track { animation-play-state: paused; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-mark {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 92px; height: 56px;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.brand-mark img {
  max-width: 100%; max-height: 100%;
  width: auto; height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) opacity(.55);
  transition: filter .35s var(--ease), transform .35s var(--ease);
}
.brand-mark:hover img {
  filter: none;
  transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
  .brands-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ============ PER-CARD BRAND BADGE ============ */
.car-image { position: relative; }
.brand-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(10,22,40,.18);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.brand-badge img {
  width: 22px; height: 22px; object-fit: contain;
  filter: brightness(0); opacity: .82;
}
.car-card:hover .brand-badge {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(10,22,40,.26);
}
/* On the placeholder (dark) car images, invert the badge */
.car-image.placeholder .brand-badge {
  background: rgba(10,22,40,.85);
  border-color: rgba(255,255,255,.16);
}
.car-image.placeholder .brand-badge img {
  filter: brightness(0) invert(1); opacity: .9;
}

/* ============ HOMEPAGE NAV — dark text over bright hero, flips white on scroll ============ */
/* At top (transparent header over bright hero): nav text dark for visibility */
body.home .nav-links a:not(.nav-cta) {
  color: #0A1628;
  font-weight: 700;
  text-shadow:
    0 0 6px rgba(255,255,255,.92),
    0 0 14px rgba(255,255,255,.72),
    0 1px 2px rgba(255,255,255,.85);
}
body.home .nav-links a:not(.nav-cta):hover { color: #000; }
body.home .nav-links a:not(.nav-cta)::after { background: var(--navy); }

body.home .header-lang .lang-select,
body.home .lang-switcher .lang-select {
  color: #0A1628;
  background: transparent;
  border: none;
  font-weight: 700;
  box-shadow: none;
  opacity: 1;
  text-shadow: 0 0 10px rgba(255,255,255,.7);
}

/* Mobile-menu toggle dots also need contrast when over bright hero */
body.home .nav-toggle span { background: #0A1628; }

/* Mobile only: header bar text/opener white over the hero before scroll */
@media (max-width: 900px) {
  body.home .header-lang .lang-select {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,.55);
  }
  body.home .nav-toggle span { background: #fff; }
  /* Open menu sits on a dark overlay — links must be white & readable */
  body.home .nav-links a:not(.nav-cta) {
    color: #fff;
    text-shadow: none;
  }
  body.home .nav-links a:not(.nav-cta):hover { color: var(--gold); }
}

/* On scroll: header darkens to match logo-pill darkness (rgba(8,17,32,.78))
   and nav text flips back to white */
body.home .site-header.scrolled .nav-links a:not(.nav-cta) {
  color: var(--off-white);
  text-shadow: none;
}
body.home .site-header.scrolled .nav-links a:not(.nav-cta):hover { color: #fff; }
body.home .site-header.scrolled .nav-links a:not(.nav-cta)::after { background: var(--grad-gold); }

body.home .site-header.scrolled .header-lang .lang-select,
body.home .site-header.scrolled .lang-switcher .lang-select {
  color: #fff;
  background: transparent;
  border: none;
  text-shadow: none;
  opacity: .85;
}
body.home .site-header.scrolled .nav-toggle span { background: #fff; }

/* When scrolled, the logo pill blends with the dark header (drop its own bg so it doesn't double-darken) */
body.home .site-header.scrolled .logo {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}

/* Hero buttons: gentler hover so "Book Your Car" doesn't jump */
.hero .btn:hover { transform: translateY(-1px); }
.hero .btn:active { transform: translateY(0) scale(.99); }

/* Keep the hero H1 first line on a single line on desktop */
@media (min-width: 900px) {
  .hero h1 { white-space: nowrap; max-width: none; }
  .hero-content { max-width: 980px; }
}

/* ============ RTL (Arabic) — mirror the redesign components ============ */
/* Corner badges swap sides */
html[dir="rtl"] .car-badge      { left: auto; right: 14px; }
html[dir="rtl"] .brand-badge    { right: auto; left: 12px; }
html[dir="rtl"] .blog-tag       { left: auto; right: 14px; }
/* Decorative quote mark + stat divider mirror */
html[dir="rtl"] .review-card::before { right: auto; left: 22px; }
html[dir="rtl"] .stat-item:not(:last-child)::after { right: auto; left: 0; }
/* Inline spacing flips */
html[dir="rtl"] .car-price .unit { margin-left: 0; margin-right: 4px; }
html[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 4px; }
/* Floating WhatsApp popup to the left (the float itself is handled in styles.css) */
html[dir="rtl"] .wa-popup       { right: auto; left: 22px; }
html[dir="rtl"] .wa-popup-close { right: auto; left: 12px; }
/* Destination hover arrow points the RTL way */
html[dir="rtl"] .dest-info span::before { content: "←"; transform: translateX(8px); }
html[dir="rtl"] .dest-card:hover .dest-info span::before { transform: translateX(0); }
/* Nav-link underline grows from the right */
html[dir="rtl"] .nav-links a:not(.nav-cta)::after { left: auto; right: 0; }
/* Booking page: confirmation summary + forward arrow */
html[dir="rtl"] #confirm-summary { text-align: right !important; }
html[dir="rtl"] #booking-form button[type="submit"] svg { transform: scaleX(-1); }
/* Contact list: icon to the right, text right-aligned */
html[dir="rtl"] .contact-info-list li { flex-direction: row-reverse; text-align: right; }
/* FAQ question: chevron to the left, text right-aligned */
html[dir="rtl"] .faq-q { flex-direction: row-reverse; text-align: right; }
