:root {
  --bg: #080b10;
  --surface: rgba(17, 21, 29, 0.78);
  --surface-solid: #11151d;
  --surface-2: #171c25;
  --surface-3: #202734;
  --text: #f7f8fa;
  --muted: #9da7b5;
  --soft: #6d7887;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --accent: #0fa968;
  --accent-2: #7ce0ae;
  --accent-deep: #066a42;
  --success: #4ad18b;
  --nav-bg: rgba(15,18,24,.82);
  --shadow: 0 24px 70px rgba(0,0,0,.32);
  --shadow-soft: 0 14px 40px rgba(0,0,0,.2);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --content-max: 760px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f4f1e9;
  --surface: rgba(255,255,255,.72);
  --surface-solid: #ffffff;
  --surface-2: #f0ede6;
  --surface-3: #e9e3d7;
  --text: #121419;
  --muted: #636b75;
  --soft: #89909a;
  --line: rgba(18,20,25,.08);
  --line-strong: rgba(18,20,25,.14);
  --accent: #078a53;
  --accent-2: #046c42;
  --accent-deep: #035438;
  --success: #238d5c;
  --nav-bg: rgba(255,255,255,.82);
  --shadow: 0 24px 70px rgba(4,96,61,.12);
  --shadow-soft: 0 14px 40px rgba(4,96,61,.08);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(15,169,104,.12), transparent 33%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
  overflow-x: hidden;
}

html[lang="ar"] body {
  font-family: "Noto Kufi Arabic", Tahoma, sans-serif;
}

button, a, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
::selection { background: var(--accent); color: #101114; }

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .14;
  z-index: 0;
}
.page-glow--one { top: 18vh; left: -210px; background: var(--accent); }
.page-glow--two { top: 62vh; right: -250px; background: #6b82ff; opacity: .07; }

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 18px 120px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding:
    calc(10px + env(safe-area-inset-top))
    0 10px;
  background: linear-gradient(to bottom, var(--bg) 55%, transparent);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #16130c;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 26px rgba(15,169,104,.2);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark path { stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.brand-copy strong { font-size: 13px; letter-spacing: .16em; white-space: nowrap; }
.brand-copy small { color: var(--muted); font-size: 10px; white-space: nowrap; }

.topbar-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 41px;
  height: 41px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.icon-btn:active { transform: scale(.96); }
#langLabel { font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.theme-icon { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-icon--sun { display: none; }
html[data-theme="light"] .theme-icon--sun { display: block; }
html[data-theme="light"] .theme-icon--moon { display: none; }

.hero { padding: 38px 0 24px; }
.hero-badge {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(16px);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 13%, transparent);
}
.hero-copy { padding: 25px 0 6px; }
.eyebrow, .section-kicker {
  margin: 0 0 9px;
  color: var(--accent);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(42px, 12vw, 74px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 800;
}
html[lang="ar"] .hero h1 {
  font-size: clamp(38px, 11vw, 66px);
  line-height: 1.2;
  letter-spacing: -.03em;
}
.gradient-text {
  padding-bottom: .08em;
  color: transparent;
  background: linear-gradient(110deg, var(--text) 10%, var(--accent-2) 70%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-text {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
html[lang="ar"] .hero-text { line-height: 2; }

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.primary-btn, .secondary-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.primary-btn {
  color: #14110b;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 16px 34px rgba(15,169,104,.18), inset 0 1px rgba(255,255,255,.42);
}
.secondary-btn {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  backdrop-filter: blur(18px);
}
.primary-btn:active, .secondary-btn:active { transform: translateY(1px) scale(.985); }
.primary-btn svg, .secondary-btn svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual { margin-top: 26px; }
.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 84%, transparent), color-mix(in srgb, var(--surface-2) 88%, transparent));
  box-shadow: var(--shadow);
  isolation: isolate;
}
.visual-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(15,169,104,.17), transparent 70%);
  filter: blur(2px);
  z-index: -1;
}
.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 22px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px color-mix(in srgb, var(--success) 65%, transparent);
}
.truck-stage {
  position: relative;
  min-height: 216px;
  display: grid;
  place-items: center;
  padding: 14px 10px 0;
}
.road-line {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.tow-illustration { width: 100%; max-width: 520px; transform: translateY(2px); }
.tow-illustration svg { width: 100%; height: auto; }
.svg-primary { stroke: color-mix(in srgb, var(--text) 88%, transparent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.svg-soft { stroke: var(--line-strong); stroke-width: 2; stroke-linecap: round; }
.svg-fill { fill: color-mix(in srgb, var(--surface-3) 88%, transparent); }
.svg-fill-2 { fill: color-mix(in srgb, var(--surface-2) 92%, transparent); }
.svg-accent { fill: color-mix(in srgb, var(--accent) 55%, transparent); stroke: var(--accent-2); stroke-width: 2; }
.svg-wheel { fill: var(--surface-solid); stroke: color-mix(in srgb, var(--text) 82%, transparent); stroke-width: 3; }
.svg-rim { fill: color-mix(in srgb, var(--accent) 38%, var(--surface-solid)); stroke: var(--accent-2); stroke-width: 2; }

.dispatch-card {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: color-mix(in srgb, var(--nav-bg) 91%, transparent);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}
.dispatch-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #15120c;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
}
.dispatch-icon svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.8; }
.dispatch-card small { display: block; color: var(--muted); font-size: 10px; margin-bottom: 4px; }
.dispatch-card strong { font-size: 14px; }
.signal-bars { height: 26px; display: flex; gap: 3px; align-items: end; padding-inline: 6px; }
.signal-bars i { width: 3px; border-radius: 3px; background: var(--success); opacity: .92; }
.signal-bars i:nth-child(1) { height: 7px; }
.signal-bars i:nth-child(2) { height: 12px; }
.signal-bars i:nth-child(3) { height: 17px; }
.signal-bars i:nth-child(4) { height: 22px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}
.trust-row > div {
  min-width: 0;
  padding: 15px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  text-align: center;
  backdrop-filter: blur(16px);
}
.trust-row strong { display: block; font-size: 12px; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trust-row span { display: block; color: var(--muted); font-size: 9px; line-height: 1.4; }

.section { padding: 72px 0 0; scroll-margin-top: 90px; }
.section-heading { margin-bottom: 23px; }
.section-heading h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 8vw, 48px);
  letter-spacing: -.04em;
  line-height: 1.08;
}
html[lang="ar"] .section-heading h2, html[lang="ar"] .final-cta h2 { line-height: 1.45; }
.section-heading p, .final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-card {
  min-height: 186px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, var(--surface), color-mix(in srgb, var(--surface-solid) 74%, transparent));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent) 11%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 17%, var(--line));
}
.service-icon svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 7px; font-size: 14px; }
.service-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.coverage-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.map-orbit {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, transparent 0, color-mix(in srgb, var(--surface-solid) 12%, transparent) 42%, color-mix(in srgb, var(--surface-solid) 70%, transparent) 100%);
}
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.orbit--1 { width: 150px; height: 150px; }
.orbit--2 { width: 265px; height: 265px; opacity: .5; }
.pin {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #14110b;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 8%, transparent), 0 15px 30px rgba(0,0,0,.2);
}
.pin svg { width: 25px; height: 25px; stroke: currentColor; stroke-width: 1.8; }
.zone {
  position: absolute;
  z-index: 4;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--nav-bg);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}
.zone--one { left: 10%; top: 24%; }
.zone--two { right: 10%; top: 19%; }
.zone--three { left: 13%; bottom: 18%; }
.zone--four { right: 8%; bottom: 22%; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--line);
}
.area-chips span {
  padding: 9px 11px;
  border-radius: 12px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
}

.why-list { display: grid; gap: 10px; }
.why-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
}
.why-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  font-size: 11px;
  font-weight: 800;
}
.why-item h3 { margin: 1px 0 6px; font-size: 14px; }
.why-item p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.testimonial-section { padding-top: 56px; }
.quote-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(15,169,104,.18), transparent 38%),
    linear-gradient(145deg, var(--surface-2), var(--surface-solid));
  border: 1px solid var(--line);
}
.quote-stars { color: var(--accent); font-size: 13px; letter-spacing: .22em; }
.quote-card blockquote {
  margin: 18px 0 24px;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -.02em;
  font-weight: 600;
}
.quote-user { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
}
.quote-user strong { display: block; font-size: 12px; margin-bottom: 4px; }
.quote-user small { color: var(--muted); font-size: 10px; }

.faq-list { display: grid; gap: 9px; }
.faq-item {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: -4px 0 17px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}
.faq-plus { color: var(--accent); font-size: 21px; transition: transform .2s ease; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }

.final-cta {
  margin-top: 72px;
  padding: 30px;
  border-radius: 32px;
  color: #07140f;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.42), transparent 34%),
    linear-gradient(145deg, #70deb0, #0a9a61);
  box-shadow: 0 25px 65px rgba(7,138,83,.22);
}
.final-cta .section-kicker { color: rgba(4,28,18,.66); }
.final-cta p { color: rgba(4,28,18,.70); }
.primary-btn--wide {
  margin-top: 22px;
  width: 100%;
  justify-content: space-between;
  padding: 0 18px;
  color: white;
  background: #141516;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.primary-btn--wide svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
html[dir="rtl"] .primary-btn--wide svg { transform: rotate(180deg); }

.footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 2px 10px;
  color: var(--muted);
  font-size: 9px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: var(--text); font-size: 10px; letter-spacing: .08em; }
.footer p { margin: 0; text-align: end; }

.bottom-nav {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 590px);
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 7px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--nav-bg);
  backdrop-filter: blur(26px) saturate(1.2);
  box-shadow: 0 18px 50px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.06);
}
.nav-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--soft);
  font-size: 8px;
  font-weight: 700;
}
.nav-item svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-item.active, .nav-item:hover { color: var(--text); }
.nav-call {
  justify-self: center;
  align-self: center;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #14110b;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 28px rgba(15,169,104,.2);
}
.nav-call svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

html[dir="rtl"] .brand-copy { text-align: right; }
html[dir="rtl"] .hero-actions { direction: rtl; }
html[dir="rtl"] .dispatch-card { direction: rtl; }
html[dir="rtl"] .quote-user { direction: rtl; }

@media (min-width: 600px) {
  .app-shell { padding-inline: 28px; }
  .hero { padding-top: 52px; }
  .hero-actions { max-width: 460px; }
  .service-card { min-height: 205px; padding: 22px; }
  .service-card h3 { font-size: 16px; }
  .service-card p, .why-item p, .faq-item p { font-size: 12px; }
  .why-item h3 { font-size: 16px; }
}

@media (max-width: 370px) {
  .brand-copy small { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .trust-row strong { font-size: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .nav-item span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Premium adaptive scrollbar:
   - completely hidden on touch/mobile
   - desktop thumb appears only when the pointer approaches a viewport edge */
html {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: transparent;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
  transition: background-color .18s ease;
}

html.scrollbar-near {
  scrollbar-color: color-mix(in srgb, var(--accent) 72%, transparent) transparent;
}

html.scrollbar-near::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 72%, transparent);
  border: 2px solid transparent;
  background-clip: padding-box;
}

html.scrollbar-near::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  border: 1px solid transparent;
  background-clip: padding-box;
}

/* Keep every service-card icon optically identical. */
.service-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
}

.service-icon svg {
  width: 21px;
  height: 21px;
  min-width: 21px;
  min-height: 21px;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

.service-icon svg * {
  vector-effect: non-scaling-stroke;
}

/* Touch devices should never show a visible scrollbar. */
@media (hover: none), (pointer: coarse), (max-width: 820px) {
  html {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  body {
    -ms-overflow-style: none;
  }
}


/* Minimal full-screen hero */
.hero--minimal {
  min-height: calc(100svh - 78px);
  padding: 0;
  display: flex;
  align-items: center;
}

.hero-copy--minimal {
  width: 100%;
  padding: 0 0 10vh;
}

.hero-copy--minimal h1 {
  max-width: 680px;
}

.hero-copy--minimal .hero-text {
  max-width: 560px;
  margin-top: 22px;
}

.post-hero {
  padding-top: 14px;
  scroll-margin-top: 90px;
}

.post-hero .hero-visual {
  margin-top: 0;
}

@media (max-width: 820px) {
  .hero--minimal {
    min-height: calc(100svh - 74px);
  }

  .hero-copy--minimal {
    padding-bottom: 14vh;
  }
}

@supports not (height: 100svh) {
  .hero--minimal {
    min-height: calc(100vh - 78px);
  }
}


/* Premium animated coverage map */
.pin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  animation: premiumPinBreath 4.6s ease-in-out infinite;
}

.pin::before,
.pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.pin::before {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  transform: scale(1.24);
  animation: premiumPinPulse 2.8s ease-out infinite;
}

.pin::after {
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  transform: scale(1.62);
  animation: premiumPinRing 2.8s ease-out infinite;
}

.pin svg {
  width: 26px;
  height: 26px;
}

.zone {
  animation: premiumZoneFloat 6.2s ease-in-out infinite;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

.zone--one { animation-delay: 0s; }
.zone--two { animation-delay: 1.2s; }
.zone--three { animation-delay: 2.1s; }
.zone--four { animation-delay: 3s; }

@keyframes premiumPinBreath {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 10px color-mix(in srgb, var(--accent) 8%, transparent),
      0 15px 30px rgba(0,0,0,.16);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow:
      0 0 0 14px color-mix(in srgb, var(--accent) 10%, transparent),
      0 18px 34px rgba(0,0,0,.18);
  }
}

@keyframes premiumPinPulse {
  0% {
    opacity: .65;
    transform: scale(1.1);
  }
  70% {
    opacity: 0;
    transform: scale(1.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.78);
  }
}

@keyframes premiumPinRing {
  0% {
    opacity: .52;
    transform: scale(1.25);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.95);
  }
}

@keyframes premiumZoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(0, -3px, 0); }
  50% { transform: translate3d(2px, 1px, 0); }
  75% { transform: translate3d(-1px, 3px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .pin,
  .pin::before,
  .pin::after,
  .zone {
    animation: none !important;
  }
}


/* Premium iPhone-style gallery */
.gallery-shell {
  display: grid;
  gap: 16px;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.gallery-title {
  margin: 0;
  font-size: clamp(26px, 7vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.gallery-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 560px;
}

.gallery-meta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gallery-count {
  min-width: 84px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(18px);
}

.gallery-frame {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 8%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 28%),
    linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 92%, transparent), color-mix(in srgb, var(--surface-2) 96%, transparent));
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  aspect-ratio: 4 / 4.8;
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,10,12,.78) 0%, rgba(7,10,12,.36) 34%, rgba(7,10,12,.04) 60%, rgba(7,10,12,0) 100%);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 9px;
}

.gallery-chip {
  width: max-content;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.gallery-overlay strong {
  display: block;
  color: white;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.gallery-overlay p {
  margin: 0;
  max-width: 92%;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.7;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 18px;
}

.gallery-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
  cursor: pointer;
  transition: transform .2s ease, width .2s ease, background-color .2s ease;
}

.gallery-dot.is-active {
  width: 26px;
  background: var(--accent);
}

.gallery-swipe-hint {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {.gallery-thumb {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 22px;
  padding: 0;
  aspect-ratio: 1.15 / 1;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,11,16,.18), rgba(8,11,16,0));
}

.gallery-thumb.is-active {
  border-color: color-mix(in srgb, var(--accent) 58%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.gallery-thumb:active {
  transform: scale(.985);
}

@media (min-width: 700px) {
  .gallery-slide {
    aspect-ratio: 16 / 11;
  }

  .gallery-overlay {
    inset-inline: 24px;
    bottom: 22px;
  }

  .gallery-overlay p {
    font-size: 13px;
    max-width: 70%;
  }

  .gallery-thumbs {
    gap: 12px;
  }

  .gallery-thumb {
    flex: 0 0 148px;
    width: 148px;
    min-width: 148px;
  }
}

@media (max-width: 430px) {
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-thumb {
    flex: 0 0 96px;
    width: 96px;
    min-width: 96px;
  }

  .gallery-count {
    min-width: 74px;
  }

  .gallery-overlay strong {
    font-size: 18px;
  }
}

html[dir="rtl"] .gallery-head {
  align-items: end;
}

html[dir="rtl"] .gallery-controls {
  flex-direction: row-reverse;
}

html[dir="rtl"] .gallery-head,
html[dir="rtl"] .gallery-text,
html[dir="rtl"] .gallery-overlay {
  text-align: right;
}


/* Premium vehicle-service tiers */
.service-grid--premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card--premium {
  position: relative;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 34%),
    linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--surface-solid) 88%, transparent));
}

.service-card--premium::after {
  content: "";
  position: absolute;
  inset-inline: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 28%, transparent), transparent);
  opacity: .75;
}

.service-card--executive {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 36%),
    linear-gradient(145deg, var(--surface-2), color-mix(in srgb, var(--surface-solid) 94%, transparent));
  border-color: color-mix(in srgb, var(--accent) 20%, var(--line));
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.service-card--premium .service-icon {
  margin: 0;
}

.service-badge {
  max-width: 70%;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-solid) 72%, transparent);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

html[lang="ar"] .service-badge {
  letter-spacing: 0;
  text-transform: none;
}

.service-badge--executive {
  color: var(--accent-2);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-number {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-card--premium h3 {
  max-width: 88%;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

html[lang="ar"] .service-card--premium h3 {
  line-height: 1.7;
  letter-spacing: 0;
}

.service-card--premium p {
  max-width: 94%;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

html[lang="ar"] .service-card--premium p {
  line-height: 2;
}

@media (min-width: 680px) {
  .service-grid--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card--executive {
    grid-column: 1 / -1;
  }

  .service-card--premium {
    padding: 24px;
  }

  .service-card--executive .service-content {
    max-width: 78%;
  }
}


/* Full-size horizontal 10-image gallery */
.gallery-frame {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 14px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 calc(100% - 28px);
  width: calc(100% - 28px);
  min-width: calc(100% - 28px);
  aspect-ratio: 4 / 4.8;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface-2);
}

.gallery-slide:first-child {
  margin-inline-start: 0;
}

.gallery-slide:last-child {
  margin-inline-end: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-controls {
  padding: 14px 18px 18px;
}

@media (min-width: 700px) {
  .gallery-slide {
    flex-basis: calc(100% - 28px);
    width: calc(100% - 28px);
    min-width: calc(100% - 28px);
    aspect-ratio: 16 / 11;
  }
}

/* Old thumbnail strip is intentionally disabled. */
.gallery-thumbs {
  display: none !important;
}


/* FINAL GALLERY FIX: horizontal hero gallery + horizontal thumbnails + full image display */
.gallery-frame {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 8%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 28%),
    linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 92%, transparent), color-mix(in srgb, var(--surface-2) 96%, transparent));
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 16 / 10;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 98%, transparent), color-mix(in srgb, var(--surface-2) 94%, transparent));
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transform: none;
  padding: 10px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.04), transparent 60%);
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(7,10,12,.80) 0%, rgba(7,10,12,.42) 45%, rgba(7,10,12,0) 100%);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.gallery-chip {
  width: max-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.gallery-overlay strong {
  display: block;
  color: white;
  font-size: clamp(18px, 4.8vw, 28px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.gallery-overlay p {
  margin: 0;
  max-width: 92%;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.7;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 18px;
}

.gallery-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
  cursor: pointer;
  transition: transform .2s ease, width .2s ease, background-color .2s ease;
}

.gallery-dot.is-active {
  width: 22px;
  background: var(--accent);
}

.gallery-swipe-hint {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.gallery-thumbs {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 2px 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  flex: 0 0 96px;
  width: 96px;
  min-width: 96px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 0;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
  opacity: .76;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb.is-active {
  opacity: 1;
  border-color: color-mix(in srgb, var(--accent) 58%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.gallery-thumb:active {
  transform: scale(.985);
}

@media (min-width: 700px) {
  .gallery-slide {
    aspect-ratio: 16 / 9;
  }

  .gallery-overlay {
    inset-inline: 24px;
    bottom: 22px;
  }

  .gallery-overlay p {
    font-size: 13px;
    max-width: 72%;
  }

  .gallery-thumb {
    flex: 0 0 118px;
    width: 118px;
    min-width: 118px;
  }
}

@media (max-width: 430px) {
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-count {
    min-width: 74px;
  }

  .gallery-overlay strong {
    font-size: 17px;
  }

  .gallery-overlay p {
    font-size: 11px;
  }

  .gallery-thumb {
    flex: 0 0 88px;
    width: 88px;
    min-width: 88px;
  }
}

html[dir="rtl"] .gallery-head,
html[dir="rtl"] .gallery-text,
html[dir="rtl"] .gallery-overlay {
  text-align: right;
}

html[dir="rtl"] .gallery-controls {
  flex-direction: row-reverse;
}


/* AUTHORITATIVE GALLERY LAYOUT FIX
   - main image stays horizontal
   - thumbnails stay small and horizontal
   - these selectors intentionally use IDs + !important to override older broken rules
*/
#galleryTrack {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding: 0 !important;
}

#galleryTrack::-webkit-scrollbar {
  display: none !important;
}

#galleryTrack .gallery-slide {
  position: relative !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  scroll-snap-align: start !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 98%, transparent), color-mix(in srgb, var(--surface-2) 94%, transparent)) !important;
}

#galleryTrack .gallery-slide img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  padding: 8px !important;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.04), transparent 60%) !important;
}

#galleryThumbs {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 10px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 12px 0 4px !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}

#galleryThumbs::-webkit-scrollbar {
  display: none !important;
}

#galleryThumbs .gallery-thumb {
  position: relative !important;
  display: block !important;
  flex: 0 0 88px !important;
  width: 88px !important;
  min-width: 88px !important;
  max-width: 88px !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  background: var(--surface) !important;
  border-radius: 16px !important;
  padding: 0 !important;
  aspect-ratio: 16 / 9 !important;
  cursor: pointer !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease !important;
  opacity: .78 !important;
}

#galleryThumbs .gallery-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

#galleryThumbs .gallery-thumb.is-active {
  opacity: 1 !important;
  border-color: color-mix(in srgb, var(--accent) 58%, transparent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent) !important;
}

#galleryThumbs .gallery-thumb:active {
  transform: scale(.985) !important;
}

@media (min-width: 700px) {
  #galleryTrack .gallery-slide {
    aspect-ratio: 16 / 9 !important;
  }

  #galleryThumbs .gallery-thumb {
    flex: 0 0 112px !important;
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
  }
}

@media (max-width: 430px) {
  #galleryThumbs .gallery-thumb {
    flex: 0 0 82px !important;
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
  }
}
