/* =====================================================================
   HsN-Taxi AB — Premium stylesheet
   Dark + gold luxury theme · fully responsive · RTL-ready
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #0a0b0d;
  --bg-2:      #0d0f12;
  --bg-3:      #11141a;
  --surface:   rgba(255,255,255,0.035);
  --surface-2: rgba(255,255,255,0.06);
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(212,175,55,0.28);

  --text:      #f6f6f8;
  --muted:     #a7adba;
  --muted-2:   #8e94a3;

  --gold:      #d4af37;
  --gold-2:    #f6e27a;
  --gold-3:    #b8860b;
  --gold-grad: linear-gradient(135deg, #f6e27a 0%, #d4af37 48%, #b8860b 100%);
  --gold-soft: rgba(212,175,55,0.12);

  --wa:        #25d366;
  --ok:        #34d399;
  --err:       #f87171;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow:    0 24px 60px -22px rgba(0,0,0,0.7);
  --shadow-gold: 0 18px 50px -18px rgba(212,175,55,0.45);

  --container: 1440px;
  --header-h:  78px;

  --ff-display: 'Sora', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Arabic font when RTL */
html[lang="ar"] { --ff-display: 'Cairo', sans-serif; --ff-body: 'Cairo', sans-serif; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  /* Fully stop continuous decorative loops (not just shorten them) */
  .map-car, .map-route, .map-node circle, .marquee-track, .hero-road .lane,
  .dot-live, .headlight, .map-pin, .about-float { animation: none !important; }
  .map-car { offset-distance: 0%; }
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
::selection { background: var(--gold); color: #0a0b0d; }

.icon { width: 1.25em; height: 1.25em; fill: none; flex-shrink: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-alt { background:
   radial-gradient(1200px 600px at 80% -10%, rgba(212,175,55,0.06), transparent 60%),
   var(--bg-2); }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head-left { margin-inline: 0; text-align: left; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2);
  padding: 7px 14px; border-radius: 100px;
  background: var(--gold-soft); border: 1px solid var(--border-2);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.12; letter-spacing: -0.02em;
}
.section-lead { margin-top: 16px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); }

.grad { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 22px; border-radius: 100px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-mini { padding: 9px 16px; font-size: .85rem; }
.btn-block { width: 100%; }

.btn-gold { background: var(--gold-grad); color: #0a0b0d; box-shadow: var(--shadow-gold); }
.btn-gold::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); transform: translateX(-130%); transition: transform .7s var(--ease); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -16px rgba(212,175,55,0.6); }
.btn-gold:hover::after { transform: translateX(130%); }

.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-2); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-outline:hover { background: var(--gold-soft); transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #04210f; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -16px rgba(37,211,102,.6); }

.btn-dark { background: #0a0b0d; color: var(--gold-2); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,.6); }
.btn-darkline { background: transparent; color: #0a0b0d; border: 1.5px solid rgba(10,11,13,.35); }
.btn-darkline:hover { background: rgba(10,11,13,.08); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,11,13,0.78); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; }
.brand-mark .logo-svg { width: 44px; height: 44px; filter: drop-shadow(0 6px 14px rgba(212,175,55,.4)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--ff-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -0.01em; }
.brand-name .dot { color: var(--gold); }
.brand-sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; }
.main-nav a {
  font-size: .92rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  padding: 9px 11px; border-radius: 100px; position: relative; transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--text); background: var(--surface); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: 8px; }
.btn-call { font-size: .9rem; padding: 11px 16px; }

.lang-switch { display: flex; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 3px; }
.lang-btn { font-family: var(--ff-display); font-weight: 700; font-size: .78rem; color: var(--muted-2); padding: 6px 11px; border-radius: 100px; transition: .2s; }
.lang-btn.is-active { background: var(--gold-grad); color: #0a0b0d; }
.lang-btn:not(.is-active):hover { color: var(--text); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); align-items: center; justify-content: center; }
.nav-toggle .icon { width: 24px; height: 24px; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(8,9,11,0.98);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  display: flex; align-items: center; justify-content: center; padding: 90px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 6px; width: 100%; max-width: 420px; }
.mobile-menu-inner a:not(.btn) {
  font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; padding: 14px 8px;
  border-bottom: 1px solid var(--border); color: var(--text); transition: color .2s, padding .2s;
}
.mobile-menu-inner a:not(.btn):hover { color: var(--gold-2); padding-inline-start: 16px; }
.mobile-menu-inner .btn { margin-top: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(40px, 7vw, 80px)); padding-bottom: clamp(40px, 6vw, 70px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.glow-1 { width: 620px; height: 620px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(212,175,55,0.4), transparent 60%); }
.glow-2 { width: 520px; height: 520px; bottom: -220px; left: -140px; background: radial-gradient(circle, rgba(80,110,200,0.22), transparent 60%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.hero-road { position: absolute; left: 50%; bottom: -10%; width: 140%; height: 60%; transform: translateX(-50%) perspective(420px) rotateX(62deg); display: flex; justify-content: center; gap: 70px; opacity: .5; }
.hero-road .lane { width: 6px; background: repeating-linear-gradient(to top, var(--gold) 0 26px, transparent 26px 60px); animation: road 1.1s linear infinite; }
.hero-road .lane:nth-child(2) { opacity: .6; } .hero-road .lane:nth-child(3) { opacity: .35; }
@keyframes road { to { background-position-y: 60px; } }
.headlight { position: absolute; top: 18%; right: 8%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(246,226,122,0.18), transparent 65%); filter: blur(20px); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-24px);} }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; color: var(--gold-2);
  padding: 8px 16px; border-radius: 100px; background: var(--gold-soft);
  border: 1px solid var(--border-2); margin-bottom: 22px;
}
.eyebrow .icon { width: 1em; height: 1em; fill: var(--gold-2); }
.hero-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 1.06; letter-spacing: -0.025em; }
.hero-sub { margin-top: 22px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 34px; }
.hero-chips li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); }
.hero-chips .icon { color: var(--gold); width: 1.1em; height: 1.1em; }

/* Booking card */
.book-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 28px); box-shadow: var(--shadow); backdrop-filter: blur(14px);
  position: relative;
}
.book-card::before { content:""; position:absolute; inset:0; border-radius: inherit; padding:1px; background: linear-gradient(160deg, rgba(212,175,55,.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; }
.book-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.book-card-head h2 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; }
.badge-live { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--ok); background: rgba(52,211,153,.12); padding: 5px 11px; border-radius: 100px; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(52,211,153,.55);} 70%{ box-shadow:0 0 0 8px rgba(52,211,153,0);} 100%{ box-shadow:0 0 0 0 rgba(52,211,153,0);} }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field label, .checkbox span { font-size: .85rem; font-weight: 500; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.quick-form .field-row { grid-template-columns: 1fr 1fr; }

input, select, textarea {
  width: 100%; background: rgba(0,0,0,0.28); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 14px; transition: border-color .2s, box-shadow .2s, background .2s;
}
textarea { resize: vertical; min-height: 84px; }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); background: rgba(0,0,0,0.4); }
input:invalid:not(:placeholder-shown), textarea:invalid:not(:placeholder-shown) { border-color: rgba(248,113,113,.5); }
input[type="date"], input[type="time"] { color-scheme: dark; }

.input-icon { position: relative; }
.input-icon .icon { position: absolute; top: 50%; inset-inline-start: 13px; transform: translateY(-50%); color: var(--gold); width: 1.1rem; height: 1.1rem; pointer-events: none; }
.input-icon input { padding-inline-start: 40px; }

.select-wrap { position: relative; }
select { appearance: none; -webkit-appearance: none; padding-inline-end: 40px; cursor: pointer; }
select option { background: #14181e; color: var(--text); }
.select-chev { position: absolute; top: 50%; inset-inline-end: 13px; transform: translateY(-50%); color: var(--gold); width: 1.1rem; height: 1.1rem; pointer-events: none; }

.checkbox { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; margin: 6px 0 18px; }
.checkbox input { width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--gold); margin-top: 1px; }
.checkbox span { font-size: .82rem; line-height: 1.45; }

.quick-note { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted-2); margin-top: 12px; justify-content: center; }
.quick-note .icon { color: var(--gold); width: 1em; height: 1em; }

/* Stats band */
.stats-band {
  position: relative; z-index: 1; margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.stat { text-align: center; padding: 6px; }
.stat-num { display: block; font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-label { display: block; margin-top: 8px; font-size: .82rem; color: var(--muted); }

/* ---------- Trust marquee ---------- */
.trust-strip { border-block: 1px solid var(--border); background: var(--bg-2); overflow: hidden; }
.marquee { padding: 18px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 500; font-size: .95rem; color: var(--muted); white-space: nowrap; }
.marquee-track .icon { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-services { grid-template-columns: repeat(4, 1fr); }
.grid-why { grid-template-columns: repeat(3, 1fr); }
.grid-fleet { grid-template-columns: repeat(4, 1fr); }
.grid-reviews { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content:""; position:absolute; top:0; inset-inline: 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--border-2); background: var(--surface-2); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }

.service-card .card-ic, .feature-ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid var(--border-2); margin-bottom: 18px;
}
.card-ic .icon, .feature-ic .icon { width: 28px; height: 28px; color: var(--gold-2); }
.service-card h3, .feature h3, .fleet-body h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.22rem; margin-bottom: 10px; }
.service-card p, .feature p { color: var(--muted); font-size: .95rem; }
.card-list { margin: 16px 0 18px; display: flex; flex-direction: column; gap: 8px; }
.card-list li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--muted); }
.card-list .icon { color: var(--gold); width: 1.1em; height: 1.1em; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: var(--gold-2); transition: gap .25s var(--ease); }
.card-link:hover { gap: 14px; }
html[dir="rtl"] .card-link .icon { transform: scaleX(-1); }

/* Features */
.feature { padding: 6px 4px; }
.feature .feature-ic { margin-bottom: 16px; }

/* Fleet */
.fleet-card { padding: 0; }
.fleet-art { height: 130px; display: grid; place-items: center; background: radial-gradient(circle at 50% 120%, rgba(212,175,55,0.16), transparent 60%); border-bottom: 1px solid var(--border); }
.car-svg { width: 78%; max-width: 220px; filter: drop-shadow(0 14px 18px rgba(0,0,0,.5)); }
.car-svg-wide { width: 86%; }
.fleet-body { padding: 22px 24px 26px; }
.fleet-body p { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.fleet-spec { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.fleet-spec li { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--muted); }
.fleet-spec .icon { color: var(--gold); width: 1.05em; height: 1.05em; }

/* ---------- Prices ---------- */
.price-wrap { max-width: 920px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 16px 20px; text-align: start; }
.price-table thead th { font-family: var(--ff-display); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); background: rgba(0,0,0,.2); border-bottom: 1px solid var(--border); }
.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background .25s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--gold-soft); }
.price-table td { color: var(--muted); font-size: .95rem; }
.price-val { font-family: var(--ff-display); font-weight: 700; color: var(--gold-2) !important; font-size: 1.05rem; }
.price-table td:last-child { text-align: end; }
.price-disclaimer { display: flex; align-items: center; gap: 9px; padding: 16px 20px; font-size: .82rem; color: var(--muted-2); background: rgba(0,0,0,.18); }
.price-disclaimer .icon { color: var(--gold); width: 1.1em; height: 1.1em; }

/* ---------- How it works ---------- */
.steps { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step { flex: 1; min-width: 230px; max-width: 320px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; text-align: center; position: relative; }
.step-num { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%; font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; color: #0a0b0d; background: var(--gold-grad); box-shadow: var(--shadow-gold); }
.step h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .92rem; }
.step-arrow { display: grid; place-items: center; align-self: center; color: var(--gold); }
.step-arrow .icon { width: 28px; height: 28px; }
html[dir="rtl"] .step-arrow .icon { transform: scaleX(-1); }

/* ---------- Booking section ---------- */
.section-book { background: radial-gradient(900px 500px at 12% 0%, rgba(212,175,55,0.08), transparent 60%), var(--bg-2); }
.book-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.book-intro { position: sticky; top: calc(var(--header-h) + 24px); }
.book-perks { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.book-perks li { display: flex; align-items: center; gap: 11px; color: var(--muted); }
.book-perks .icon { color: var(--gold); }
.book-contact-quick { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.contact-pill { display: inline-flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 12px 20px 12px 14px; transition: .25s var(--ease); }
.contact-pill:hover { border-color: var(--border-2); transform: translateY(-2px); background: var(--surface-2); }
.contact-pill .icon { width: 1.4rem; height: 1.4rem; color: var(--gold); }
.contact-pill span { display: flex; flex-direction: column; line-height: 1.2; }
.contact-pill small { font-size: .72rem; color: var(--muted-2); }
.contact-pill strong { font-family: var(--ff-display); font-size: .98rem; }

.book-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow); }
.form-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-hint { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 16px; font-size: .92rem; text-align: center; min-height: 1.2em; }
.form-hint .icon { flex-shrink: 0; width: 1.15em; height: 1.15em; }
.form-hint.ok, .form-hint.err { padding: 12px 16px; border-radius: var(--radius-sm); }
.form-hint.ok { color: var(--ok); background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.32); }
.form-hint.ok .icon { color: var(--ok); }
.form-hint.err { color: var(--err); background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.32); }
.form-hint.err .icon { color: var(--err); }

/* ---------- About ---------- */
.about-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-visual { position: relative; }
.about-card { position: relative; background: radial-gradient(circle at 50% 30%, rgba(212,175,55,0.18), transparent 60%), var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 60px 30px; display: grid; place-items: center; min-height: 280px; }
.about-card .car-svg { width: 90%; }
.about-badge { position: absolute; bottom: 22px; inset-inline-start: 22px; display: inline-flex; align-items: center; gap: 8px; background: rgba(10,11,13,.7); border: 1px solid var(--border-2); border-radius: 100px; padding: 8px 14px; font-size: .82rem; backdrop-filter: blur(8px); }
.about-badge .icon { color: var(--gold); width: 1.1em; height: 1.1em; }
.about-float { position: absolute; background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.03)); border: 1px solid var(--border); border-radius: 16px; padding: 14px 18px; text-align: center; backdrop-filter: blur(10px); box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; }
.about-float strong { display: block; font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; color: var(--gold-2); }
.about-float span { font-size: .74rem; color: var(--muted); }
.about-float-1 { top: 10px; inset-inline-end: -10px; }
.about-float-2 { bottom: 30px; inset-inline-end: -16px; animation-delay: -3s; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.about-values li { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.about-values .icon { color: var(--gold); }
.about-org { font-size: .9rem; color: var(--muted-2); padding-top: 14px; border-top: 1px solid var(--border); }
.about-org strong { color: var(--text); }

/* ---------- Reviews ---------- */
.rating-summary { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; }
.rating-summary .stars { display: inline-flex; color: var(--gold); }
.rating-summary .stars .icon { width: 1.1em; height: 1.1em; fill: var(--gold); }
.rating-summary strong { font-family: var(--ff-display); }
.rating-summary span:last-child { color: var(--muted); font-size: .9rem; }
.review-card { display: flex; flex-direction: column; }
.quote-ic { width: 38px !important; height: 38px !important; fill: var(--gold); opacity: .35; margin-bottom: 12px; }
.review-card blockquote { font-size: 1rem; color: var(--text); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.review-card figcaption { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; }
.rev-avatar { grid-row: span 1; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; color: #0a0b0d; background: var(--gold-grad); }
.review-card figcaption strong { display: block; font-size: .95rem; }
.review-card figcaption small { color: var(--muted-2); font-size: .82rem; }
.rev-stars { grid-column: 1 / -1; display: inline-flex; color: var(--gold); margin-top: 2px; }
.rev-stars .icon { width: .95em; height: .95em; fill: var(--gold); }

/* ---------- Service area ---------- */
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.area-tags li { font-size: .88rem; color: var(--muted); padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); transition: .25s; }
.area-tags li:hover { border-color: var(--border-2); color: var(--text); }
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); aspect-ratio: 3/2.2; }
.map-svg { width: 100%; height: 100%; }
.map-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(212,175,55,.12), transparent 60%); z-index: 1; pointer-events: none; }
.map-pin { position: absolute; top: 52%; left: 48%; color: var(--gold); animation: float 4s ease-in-out infinite; z-index: 2; }
.map-pin .icon { width: 2.4rem; height: 2.4rem; fill: var(--gold); filter: drop-shadow(0 6px 10px rgba(0,0,0,.6)); }
.map-label { position: absolute; bottom: 16px; inset-inline-start: 16px; z-index: 2; background: rgba(10,11,13,.75); border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: .85rem; font-family: var(--ff-display); font-weight: 600; backdrop-filter: blur(8px); }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-layout .section-head { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-layout .btn { margin-top: 22px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--gold); transition: transform .3s var(--ease); }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a { padding: 0 22px 22px; color: var(--muted); animation: faqIn .3s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold-grad); color: #0a0b0d; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 90% -40%, rgba(255,255,255,.4), transparent 60%); }
.cta-inner { position: relative; padding: clamp(44px, 6vw, 68px) 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.1; }
.cta-inner p { margin-top: 8px; font-size: 1.05rem; opacity: .82; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: clamp(50px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-about { color: var(--muted); font-size: .92rem; max-width: 320px; margin-bottom: 20px; }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--muted); transition: .25s; }
.social a:hover { color: var(--gold-2); border-color: var(--border-2); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; margin-bottom: 18px; }
.footer-col a, .f-contact { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .92rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover, a.f-contact:hover { color: var(--gold-2); }
.f-contact .icon { color: var(--gold); width: 1.1em; height: 1.1em; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .85rem; color: var(--muted-2); }
.footer-pay { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-badge { font-size: .72rem; font-weight: 600; padding: 5px 10px; border-radius: 7px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); }
.footer-legal a:hover { color: var(--gold-2); }

/* ---------- Floating actions ---------- */
.floating-actions { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .25s var(--ease); }
.fab .icon { width: 1.6rem; height: 1.6rem; }
.fab:hover { transform: scale(1.08); }
.fab-wa { background: var(--wa); color: #fff; }
.fab-call { background: var(--gold-grad); color: #0a0b0d; }
.back-top { position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 80; width: 48px; height: 48px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--gold-2); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s var(--ease); backdrop-filter: blur(8px); }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--surface-2); border-color: var(--border-2); }

/* ---------- Cookie ---------- */
.cookie { position: fixed; bottom: 22px; inset-inline: 22px; z-index: 90; max-width: 560px; margin-inline: auto; background: rgba(15,17,21,.96); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; backdrop-filter: blur(12px); }
.cookie[hidden] { display: none; }
.cookie p { font-size: .85rem; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-actions { display: flex; gap: 10px; }

/* ---------- Accessibility: skip link + focus ---------- */
.skip-link { position: fixed; top: -120px; inset-inline-start: 16px; z-index: 200; background: var(--gold-grad); color: #0a0b0d; font-family: var(--ff-display); font-weight: 700; padding: 12px 20px; border-radius: 0 0 12px 12px; transition: top .25s var(--ease); }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress { position: fixed; top: 0; inset-inline-start: 0; height: 3px; width: 0; background: var(--gold-grad); z-index: 150; transition: width .12s linear; box-shadow: 0 0 10px rgba(212,175,55,.6); }

/* ---------- Fare estimator ---------- */
.estimator { display: grid; grid-template-columns: 1.25fr 0.75fr; max-width: 1000px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.est-controls { padding: clamp(24px, 3vw, 38px); }
.est-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.est-chip { font-family: var(--ff-display); font-weight: 600; font-size: .82rem; color: var(--muted); padding: 9px 14px; border-radius: 100px; border: 1px solid var(--border); background: rgba(0,0,0,.22); transition: .2s; }
.est-chip:hover { border-color: var(--border-2); color: var(--text); }
.est-chip.is-active { background: var(--gold-soft); border-color: var(--border-2); color: var(--gold-2); }
.est-km-label { color: var(--gold-2); }
.est-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; padding: 0; border: none; cursor: pointer;
  background: linear-gradient(to right, var(--gold) var(--fill, 8%), rgba(255,255,255,0.12) var(--fill, 8%)); }
html[dir="rtl"] .est-range { background: linear-gradient(to left, var(--gold) var(--fill, 8%), rgba(255,255,255,0.12) var(--fill, 8%)); }
.est-range:focus { outline: none; }
.est-range:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.est-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-grad); cursor: pointer; box-shadow: 0 4px 12px rgba(212,175,55,.5); border: 3px solid #0a0b0d; }
.est-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #d4af37; cursor: pointer; border: 3px solid #0a0b0d; }
.est-toggle { display: flex; background: rgba(0,0,0,.25); border: 1px solid var(--border); border-radius: 100px; padding: 4px; }
.est-toggle-btn { flex: 1; font-family: var(--ff-display); font-weight: 600; font-size: .85rem; color: var(--muted); padding: 10px 10px; border-radius: 100px; transition: .2s; }
.est-toggle-btn.is-active { background: var(--gold-grad); color: #0a0b0d; }
.est-result { background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.16), transparent 62%), rgba(0,0,0,.28); padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; justify-content: center; text-align: center; border-inline-start: 1px solid var(--border); }
.est-result-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.est-price { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3rem); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; margin: 10px 0; min-height: 1.1em; }
.est-disclaimer { font-size: .76rem; color: var(--muted-2); margin-bottom: 18px; line-height: 1.5; }

/* ---------- Drive for us ---------- */
.section-drive { background: radial-gradient(900px 500px at 85% 20%, rgba(212,175,55,.08), transparent 60%), var(--bg-2); }
.drive-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.drive-perks { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.drive-perks li { display: flex; align-items: center; gap: 11px; color: var(--muted); }
.drive-perks .icon { color: var(--gold); }
.drive-visual { display: grid; place-items: center; }
.drive-card { position: relative; width: 100%; background: radial-gradient(circle at 50% 35%, rgba(212,175,55,.18), transparent 60%), var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 54px 30px; display: grid; place-items: center; }
.drive-card .car-svg { width: 90%; }
.drive-pill { position: absolute; top: 18px; inset-inline-end: 18px; display: inline-flex; align-items: center; gap: 8px; background: rgba(10,11,13,.72); border: 1px solid var(--border-2); border-radius: 100px; padding: 7px 14px; font-size: .8rem; font-family: var(--ff-display); font-weight: 600; backdrop-filter: blur(8px); }

/* ---------- Active nav (multi-page) ---------- */
.main-nav a.is-active { color: var(--gold-2); background: var(--gold-soft); }
.mobile-menu-inner a.is-active { color: var(--gold-2); }

/* ---------- Prices teaser (home) ---------- */
.price-chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 920px; margin: 0 auto 32px; }
.price-chip { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 14px 24px; flex: 1 1 250px; max-width: 320px; transition: border-color .25s, transform .25s var(--ease); }
.price-chip:hover { border-color: var(--border-2); transform: translateY(-3px); }
.price-chip span { color: var(--muted); font-size: .92rem; }
.price-chip strong { font-family: var(--ff-display); color: var(--gold-2); font-size: 1.1rem; white-space: nowrap; }
.teaser-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Subpage hero + breadcrumb ---------- */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  padding: calc(var(--header-h) + clamp(38px,6vw,68px)) 0 clamp(34px,5vw,54px);
  background: radial-gradient(900px 480px at 82% -25%, rgba(212,175,55,.12), transparent 60%), var(--bg-2); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem,4.6vw,3rem); letter-spacing: -.02em; line-height: 1.1; }
.page-hero .page-lead { margin-top: 14px; color: var(--muted); font-size: clamp(1rem,1.5vw,1.15rem); max-width: 660px; }
.page-hero .hero-glow { z-index: 0; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: var(--muted-2); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb .sep { opacity: .45; }
html[dir="rtl"] .breadcrumb .sep { display: inline-block; transform: scaleX(-1); }

/* ---------- Careers page ---------- */
.drive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
/* `.feature` zeroes `.card` padding (same specificity, later in source) — restore it for the offer cards */
.drive-grid .feature.card { padding: 28px; }
.drive-grid .feature.card .feature-ic { margin-bottom: 16px; }
.drive-grid .feature.card p { margin-top: 8px; }
.req-card { max-width: 760px; margin: 0 auto; }
.steps-num { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .drive-grid, .steps-num { grid-template-columns: 1fr; } }

/* ---------- Contact section ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1040px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 7px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 20px; transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
a.contact-card:hover { transform: translateY(-5px); border-color: var(--border-2); background: var(--surface-2); }
.contact-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--border-2); margin-bottom: 6px; }
.contact-ic .icon { width: 26px; height: 26px; color: var(--gold-2); }
.contact-k { font-size: .76rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; }
.contact-card strong { font-family: var(--ff-display); font-size: 1.05rem; color: var(--text); }
.contact-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 34px; }
.contact-org { color: var(--muted-2); font-size: .9rem; }
.contact-org strong { color: var(--text); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(7px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- RTL tweaks ---------- */
/* Keep phone numbers & e-mail left-to-right even inside RTL text */
[data-config="phoneText"], [data-config="emailText"] { unicode-bidi: isolate; direction: ltr; }
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .btn-gold::after { background: linear-gradient(-120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); }
html[dir="rtl"] .hero-title, html[dir="rtl"] .section-title { letter-spacing: 0; }
html[dir="rtl"] .btn .icon:last-child:not(:only-child), html[dir="rtl"] .card-link .icon, html[dir="rtl"] .area-copy .btn .icon { transform: scaleX(-1); }

/* Let grid children shrink below their content's intrinsic width (prevents
   min-content overflow on narrow screens — e.g. date inputs / contact pills) */
.hero-inner > *, .book-layout > *, .about-layout > *,
.area-layout > *, .faq-layout > *, .drive-inner > *,
.estimator > *, .cta-inner > * { min-width: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .grid-fleet { grid-template-columns: repeat(2, 1fr); }
  .grid-why { grid-template-columns: repeat(2, 1fr); }
  .grid-reviews { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .book-card { max-width: 480px; }
  .about-layout, .area-layout, .faq-layout, .book-layout { grid-template-columns: 1fr; }
  .book-intro, .faq-layout .section-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .review-card { max-width: 560px; margin-inline: auto; width: 100%; }
  .estimator { grid-template-columns: 1fr; max-width: 620px; }
  .est-result { border-inline-start: none; border-top: 1px solid var(--border); }
  .drive-inner { grid-template-columns: 1fr; }
}

/* Mid widths: keep the nav, but show the call button as icon-only to save room */
@media (max-width: 1360px) {
  .btn-call span { display: none; }
  .btn-call { padding: 11px; }
}
/* Below this the full nav no longer fits — switch to the hamburger menu */
@media (max-width: 1260px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-gold { display: none; }
}

@media (max-width: 680px) {
  :root { --header-h: 66px; }
  .container { padding-inline: 18px; }
  .btn-call { display: none; }   /* floating call button + menu cover this on mobile */
  .grid-services, .grid-fleet, .grid-why { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 8px; padding: 20px 14px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .about-values { grid-template-columns: 1fr; }
  .price-table th:nth-child(2), .price-table td:nth-child(2) { display: none; }
  .lang-btn { padding: 6px 9px; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 430px) {
  .brand-sub { display: none; }
  .price-table th, .price-table td { padding: 13px 12px; }
  .header-inner { gap: 8px; }
  .header-actions { gap: 6px; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 5px 7px; font-size: .72rem; }
  .brand-name { font-size: 1.16rem; }
}

/* =====================================================================
   PREMIUM ENHANCEMENTS (2026-06-05) — depth, micro-interactions & flow
   ===================================================================== */

/* Film-grain overlay for editorial depth (static, pointer-through) */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typographic finesse */
.hero-title, .section-title, .page-hero h1, .cta-inner h2 { text-wrap: balance; }
.hero-sub, .section-lead, .page-hero .page-lead, .review-card blockquote { text-wrap: pretty; }

/* Animated gold sheen on gradient text (subtle, motion-safe) */
.grad { background-size: 200% auto; }
@media (prefers-reduced-motion: no-preference) {
  .grad { animation: gradSheen 7s ease-in-out infinite; }
}
@keyframes gradSheen { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }

/* Cursor-following spotlight on surface cards (content stays above) */
.card > *, .contact-card > * { position: relative; z-index: 1; }
.contact-card { position: relative; }
.card::after, .contact-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  opacity: 0; transition: opacity .45s var(--ease);
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 50%), rgba(246,226,122,0.10), transparent 55%);
}
.card:hover::after, .contact-card:hover::after { opacity: 1; }

/* Hero social proof */
.hero-rating { display: inline-flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-avatars { display: inline-flex; }
.h-av {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: .82rem; color: #0a0b0d;
  background: var(--gold-grad); border: 2px solid var(--bg); margin-inline-start: -11px;
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.h-av:first-child { margin-inline-start: 0; }
.h-av-more { background: var(--surface-2); color: var(--gold-2); }
.hero-rating-text { display: flex; flex-direction: column; gap: 1px; }
.hero-stars { display: inline-flex; gap: 1px; color: var(--gold); }
.hero-stars .icon { width: 1.02em; height: 1.02em; fill: var(--gold); }
.hero-rating-text > span:last-child { font-size: .86rem; color: var(--muted); }

/* Stats band dividers (wide screens only) */
@media (min-width: 681px) {
  .stat { position: relative; }
  .stat:not(:last-child)::after {
    content: ""; position: absolute; top: 50%; inset-inline-end: 0; transform: translateY(-50%);
    width: 1px; height: 46px; background: linear-gradient(transparent, var(--border), transparent);
  }
}

/* Booking: "what happens next" reassurance strip */
.book-next { margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid var(--border); padding-top: clamp(28px, 4vw, 42px); }
.book-next-kicker {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  font-family: var(--ff-display); font-weight: 600; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-2);
}
.book-next-kicker .icon { width: 1.1em; height: 1.1em; fill: var(--gold-2); color: var(--gold-2); }
.book-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.book-next-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.book-next-item:hover { border-color: var(--border-2); transform: translateY(-3px); background: var(--surface-2); }
.book-next-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--border-2); }
.book-next-ic .icon { width: 22px; height: 22px; color: var(--gold-2); }
.book-next-body strong { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; display: block; margin-bottom: 5px; }
.book-next-body p { color: var(--muted); font-size: .88rem; line-height: 1.5; }
@media (max-width: 860px) { .book-next-grid { grid-template-columns: 1fr; } }

/* Booking form glows briefly when details are carried into it */
.book-form-wrap.is-prefilled { animation: prefillGlow 2.6s var(--ease); }
@keyframes prefillGlow {
  0%   { box-shadow: var(--shadow); border-color: var(--border); }
  16%  { box-shadow: 0 0 0 4px rgba(212,175,55,.30), var(--shadow); border-color: var(--gold); }
  100% { box-shadow: var(--shadow); border-color: var(--border); }
}

/* Living service-area map: route draws in, a luminous car glides the route, nodes pulse */
.map-route { stroke-dasharray: 100; stroke-dashoffset: 100; animation: routeDraw 3s var(--ease) .25s forwards; }
@keyframes routeDraw { to { stroke-dashoffset: 0; } }
.map-car { offset-path: path("M28 184 Q92 120 150 132 T276 56"); offset-distance: 0%; animation: mapDrive 6.5s 1.1s linear infinite; will-change: offset-distance; }
@keyframes mapDrive { to { offset-distance: 100%; } }
.map-node circle { animation: nodePulse 2.6s ease-in-out infinite; }
.node-b circle { animation-delay: .6s; }
.node-c circle { animation-delay: 1.2s; }
@keyframes nodePulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* Live per-field validation feedback on the booking form */
#bookingForm .is-valid { border-color: rgba(52,211,153,.55); }
#bookingForm .is-invalid { border-color: rgba(248,113,113,.6); }
#bookingForm input.is-valid[type="text"],
#bookingForm input.is-valid[type="tel"],
#bookingForm input.is-valid[type="email"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4.5 4.5L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 16px; padding-inline-end: 40px;
}
html[dir="rtl"] #bookingForm input.is-valid[type="text"],
html[dir="rtl"] #bookingForm input.is-valid[type="tel"],
html[dir="rtl"] #bookingForm input.is-valid[type="email"] {
  background-position: left 13px center; padding-inline-end: 14px; padding-inline-start: 40px;
}

/* B2B trust strip (foretag.html) — reuses existing copy tokens, no new component */
.biz-trust { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 26px; }
.biz-trust-item {
  display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px;
}
.biz-trust-item .icon { color: var(--gold); width: 1.05em; height: 1.05em; }
.biz-trust-item strong { color: var(--gold-2); font-family: var(--ff-display); font-weight: 700; }

/* =====================================================================
   PREMIUM + COMFORT PASS (2026-06-05)
   ===================================================================== */

/* Subpage heroes get the same grid-depth layer as the home hero (single source) */
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* Editorial cadence: faint hairline above alternating bands */
.section-alt { border-top: 1px solid var(--border); }

/* Always-on (faint) gold accent on cards; hover brings it to full */
.card::before { transform: scaleX(1); opacity: .12; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.card:hover::before { opacity: 1; }

/* Fleet: a more generous, better-lit stage for the cars */
.fleet-art { height: clamp(150px, 18vw, 184px); background: radial-gradient(120% 90% at 50% 72%, rgba(212,175,55,0.18), transparent 62%); }

/* Footer: the same depth language as the rest of the page */
.site-footer { background: radial-gradient(900px 420px at 82% -20%, rgba(212,175,55,0.05), transparent 60%), var(--bg-2); border-top-color: var(--border-2); }

/* Keep the large hero headline static (luxury restraint) — sheen only on small accents */
.hero-title .grad { animation: none; }

/* Comfortable language-switch hit area */
.lang-btn { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- Mobile comfort ---------- */
@media (max-width: 680px) {
  .quick-form .field-row { grid-template-columns: 1fr; }   /* date/time stack like the main form */
  .est-chip { padding: 12px 16px; }                        /* ≥44px tap target for the calculator */
  .est-chips { gap: 10px; }
  .fleet-body p, .book-next-body p, .service-card p, .feature p { font-size: .95rem; }  /* readable secondary copy */
  .est-disclaimer { font-size: .82rem; }
  /* Don't let the cookie banner cover the call/WhatsApp buttons on first visit */
  body.has-cookie .floating-actions, body.has-cookie .back-top { bottom: calc(var(--cookie-h, 150px) + 34px); }
}
