/* ==========================================================================
   EcoTec Auto Care — design system
   Palette taken from the logo: graphite black, chrome silver, signal red.
   ========================================================================== */

:root {
  --ink-950: #060607;
  --ink-900: #0b0c0e;
  --ink-850: #101216;
  --ink-800: #15181c;
  --ink-700: #1d2126;
  --steel-500: #474c52;
  --steel-300: #9aa0a7;
  --silver-200: #c9ccd1;
  --silver-100: #e0e2e4;

  --red-700: #8f1c1f;
  --red-600: #b9272a;
  --red-500: #d1303a;
  --red-400: #e5484c;
  --red-300: #ff6b6f;

  --text: #e9ebed;
  --muted: #a3a9b0;
  --faint: #858c93;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .17);

  --radius: 22px;
  --header-h: 76px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font-head: "Sora", "Cairo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", "Cairo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
html.no-scroll { overflow: hidden; }
body {
  margin: 0; background: var(--ink-900); color: var(--text);
  font-family: var(--font-body); font-size: 1rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); }
:focus-visible { outline: 2px solid var(--red-300); outline-offset: 3px; }
::selection { background: var(--red-600); color: #fff; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link {
  position: fixed; inset-inline-start: 16px; top: -64px; z-index: 300; padding: 10px 18px;
  background: #fff; color: #000; border-radius: 10px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.ico { width: 1.15em; height: 1.15em; flex: none; }
.arrow { transition: transform .3s var(--ease); }

/* ---------- Type helpers ---------- */
h2 {
  font-weight: 700; font-size: clamp(1.9rem, 1.2rem + 3vw, 3.2rem);
  line-height: 1.08; letter-spacing: -.025em; color: #fff; text-wrap: balance;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red-400);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--red-500), var(--silver-100)); }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: #fff; }
.grad {
  background: linear-gradient(95deg, #ff8286 0%, var(--red-400) 42%, var(--red-600) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.section { position: relative; padding-block: clamp(72px, 10vw, 132px); }
.section-head { max-width: 780px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head--left { margin: 0; text-align: start; }
.section-lead { margin-top: 18px; color: var(--muted); font-size: clamp(1rem, .95rem + .3vw, 1.15rem); max-width: 64ch; }
.section-head:not(.section-head--left) .section-lead { margin-inline: auto; }
.section-head:not(.section-head--left) .eyebrow::after { content: ""; width: 28px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--silver-100), var(--red-500)); }

/* ---------- Buttons ---------- */
.btn {
  --h: 52px; position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 26px; border-radius: 999px; isolation: isolate; overflow: hidden;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; letter-spacing: .005em; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, border-color .3s, color .3s;
}
.btn:hover .arrow, .svc-card:hover .arrow, .cat-tile:hover .arrow, .zs-book:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }
.btn--sm { --h: 42px; padding: 0 20px; font-size: .88rem; }
.btn--lg { --h: 56px; padding: 0 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  color: #fff; background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 55%, var(--red-700) 100%);
  box-shadow: 0 12px 32px -12px rgba(209, 48, 58, .75), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1; transform: translateX(-120%); transition: transform .7s var(--ease);
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .32) 50%, transparent 70%);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(209, 48, 58, .9), inset 0 1px 0 rgba(255, 255, 255, .3); }
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { color: #fff; background: rgba(255, 255, 255, .05); border: 1px solid var(--line-strong); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); transform: translateY(-2px); }
.btn--light { color: #0b0c0e; background: linear-gradient(180deg, #fff, #dfe2e5); box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .6), inset 0 -2px 0 rgba(0, 0, 0, .08); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(0, 0, 0, .75); }
.btn--outline { color: #fff; border: 1px solid rgba(255, 255, 255, .55); background: rgba(0, 0, 0, .12); }
.btn--outline:hover { background: rgba(255, 255, 255, .14); border-color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}
.site-header.is-scrolled, .site-header.menu-open {
  background: rgba(11, 12, 14, .78); border-bottom-color: var(--line);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.nav { display: flex; align-items: center; gap: 28px; height: var(--header-h); transition: height .3s var(--ease); }
.is-scrolled .nav { height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .55)); transition: transform .5s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-word { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-head); }
.brand-word b { font-weight: 800; font-size: 1.22rem; letter-spacing: -.01em; color: #fff; }
.brand-word i { font-style: normal; color: var(--red-400); }
.brand-word small { margin-top: 5px; font-weight: 600; font-size: .6rem; letter-spacing: .34em; color: var(--silver-200); }
.nav-links { display: flex; gap: 4px; margin-inline: auto; }
.nav-links a { position: relative; padding: 10px 14px; font-size: .92rem; font-weight: 500; color: var(--silver-200); border-radius: 999px; transition: color .25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red-500), var(--silver-100)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: #fff; }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; position: relative; width: 46px; height: 46px; margin-inline-start: auto; border-radius: 14px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .05); }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: #fff; transition: transform .35s var(--ease), opacity .2s, top .35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 16px; } .nav-toggle span:nth-child(2) { top: 22px; } .nav-toggle span:nth-child(3) { top: 28px; }
.menu-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0; max-height: 0; overflow: hidden; visibility: hidden;
  background: rgba(9, 10, 12, .985); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
  transition: max-height .5s var(--ease), visibility 0s .5s;
}
.menu-open .mobile-menu { max-height: calc(100vh - 66px); max-height: calc(100dvh - 66px); overflow-y: auto; visibility: visible; transition: max-height .5s var(--ease); }
.mobile-menu nav { padding-block: 10px 26px; }
.mobile-link { display: flex; align-items: center; justify-content: space-between; padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: #fff; }
.mobile-link .arrow { color: var(--red-400); }
.mobile-actions { display: grid; gap: 12px; margin-top: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; display: flex; align-items: center; isolation: isolate; overflow: hidden;
  min-height: min(100svh, 940px); padding: calc(var(--header-h) + clamp(24px, 5vw, 60px)) 0 clamp(72px, 8vw, 112px);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 76% 42%, rgba(209, 48, 58, .20), transparent 62%),
    radial-gradient(40% 40% at 6% 94%, rgba(209, 48, 58, .13), transparent 66%),
    radial-gradient(50% 45% at 94% 0%, rgba(224, 226, 228, .07), transparent 60%),
    linear-gradient(180deg, #0d0f12 0%, #08090b 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 16px);
  -webkit-mask-image: radial-gradient(70% 70% at 70% 45%, #000, transparent 78%); mask-image: radial-gradient(70% 70% at 70% 45%, #000, transparent 78%);
}
.streak { position: absolute; left: -50vw; height: 2px; width: 46vw; opacity: .5; background: linear-gradient(90deg, transparent, rgba(229, 72, 76, .8), transparent); animation: streak 10s linear infinite; }
.streak--a { top: 26%; }
.streak--b { top: 70%; width: 34vw; opacity: .32; background: linear-gradient(90deg, transparent, rgba(224, 226, 228, .7), transparent); animation-delay: -5s; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: clamp(20px, 3vw, 48px); align-items: center; }
.hero .eyebrow::before { display: none; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red-400); animation: ping 2s infinite; }
.hero h1 { font-weight: 800; font-size: clamp(2.4rem, 1.3rem + 4.6vw, 4.7rem); line-height: 1.03; letter-spacing: -.035em; color: #fff; text-wrap: balance; }
.lead { margin-top: 22px; max-width: 52ch; font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-facts { display: flex; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-facts li { padding-inline: clamp(14px, 2.4vw, 30px); border-inline-start: 1px solid var(--line); }
.hero-facts li:first-child { padding-inline-start: 0; border: 0; }
.hero-facts b { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.4rem); line-height: 1; color: #fff; }
.hero-facts span { display: block; max-width: 15ch; margin-top: 8px; font-size: .82rem; line-height: 1.35; color: var(--muted); }

.hero-stage { position: relative; width: 100%; max-width: 690px; margin-inline: auto; aspect-ratio: 1 / .98; }
.stage-rings { position: absolute; left: 50%; top: -10%; width: 88%; margin-left: -44%; opacity: .85; translate: calc(var(--px, 0) * -8px) calc(var(--py, 0) * -6px); transition: translate .5s ease-out; }
.stage-rings > * { transform-origin: 300px 300px; }
.stage-rings circle:first-child, .stage-rings path { animation: spin 70s linear infinite; }
.stage-logo {
  position: absolute; left: 50%; top: 2%; width: 64%; margin-left: -32%; height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .65)) drop-shadow(0 0 60px rgba(209, 48, 58, .28));
  translate: calc(var(--px, 0) * 12px) calc(var(--py, 0) * 10px); transition: translate .5s ease-out;
  animation: float 7s ease-in-out infinite;
}
.stage-car { position: absolute; left: 50%; bottom: -2%; width: 122%; margin-left: -61%; height: auto; overflow: visible; translate: calc(var(--px, 0) * -16px) 0; transition: translate .5s ease-out; }
.js .stage-car { animation: carIn 1.3s var(--ease) .2s backwards; }
.rim { animation: wheelIn 2.6s cubic-bezier(.12, .6, .2, 1) both; }
.z-sheen { animation: sheen 2.6s ease-in-out infinite; }
.js .stage-logo { animation: logoIn 1.1s var(--ease) backwards, float 7s ease-in-out 1.1s infinite; }
.car-shine { transform-origin: 0 0; animation: shine 8s ease-in-out 2.4s infinite; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; width: 26px; height: 42px; margin-left: -13px; border: 1.5px solid rgba(255, 255, 255, .35); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: cue 1.8s ease-in-out infinite; }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, #08090b, var(--ink-900) 28%); }
.cat-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: clamp(52px, 7vw, 92px); }
.cat-tile {
  position: relative; display: flex; flex-direction: column; gap: 6px; padding: 22px; overflow: hidden; isolation: isolate;
  border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.cat-tile::after { content: ""; position: absolute; z-index: -1; inset: auto -30% -70% -30%; height: 90%; background: radial-gradient(closest-side, rgba(209, 48, 58, .4), transparent); opacity: 0; transition: opacity .45s; }
.cat-tile:hover { transform: translateY(-6px); border-color: rgba(229, 72, 76, .5); box-shadow: 0 26px 60px -30px rgba(209, 48, 58, .5); }
.cat-tile:hover::after { opacity: 1; }
.cat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cat-ico { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 17px; color: var(--silver-100); background: rgba(229, 72, 76, .1); border: 1px solid rgba(229, 72, 76, .3); --ic-accent: var(--red-400); }
.cat-ico svg { width: 36px; height: 36px; }
.cat-no { font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .2em; color: var(--faint); }
.cat-name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; line-height: 1.22; color: #fff; }
.cat-count { font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--red-400); }
.cat-list { flex: 1; margin-top: 6px; font-size: .86rem; line-height: 1.55; color: var(--muted); }
.cat-go { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .86rem; font-weight: 600; color: #fff; }

.svc-group + .svc-group { margin-top: clamp(56px, 8vw, 100px); }
.group-head { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.group-no { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px rgba(229, 72, 76, .75); }
.group-title h3 { font-weight: 700; font-size: clamp(1.3rem, 1rem + 1.2vw, 1.85rem); letter-spacing: -.02em; color: #fff; line-height: 1.2; }
.group-title p { margin-top: 4px; font-size: .95rem; color: var(--muted); }
.group-count { margin-inline-start: auto; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-200); white-space: nowrap; }

.svc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.span-3 { grid-column: span 3; } .span-4 { grid-column: span 4; } .span-6 { grid-column: span 6; } .span-12 { grid-column: span 12; }
.svc-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden; isolation: isolate;
  border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s;
}
.svc-card:hover { transform: translateY(-8px); border-color: rgba(229, 72, 76, .55); box-shadow: 0 30px 70px -28px rgba(209, 48, 58, .5), 0 0 0 1px rgba(229, 72, 76, .12); }
.svc-art {
  position: relative; display: grid; place-items: center; min-height: 176px; overflow: hidden;
  background:
    radial-gradient(120% 100% at 28% 0%, rgba(255, 255, 255, .12), transparent 55%),
    radial-gradient(70% 90% at 92% 120%, rgba(209, 48, 58, .45), transparent 70%),
    linear-gradient(160deg, #20242b, #0d0f12);
}
.svc-art::before {
  content: ""; position: absolute; inset: 0; transition: transform .9s var(--ease);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 180'%3E%3Cpath d='M-10 150 C90 78 190 52 300 92 C345 106 375 128 410 158' fill='none' stroke='%23e5484c' stroke-opacity='.6' stroke-width='2.2'/%3E%3Cpath d='M-10 172 C110 114 210 108 305 136 C350 149 378 164 410 178' fill='none' stroke='%23e0e2e4' stroke-opacity='.28' stroke-width='2'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.svc-card:hover .svc-art::before { transform: translateX(16px) scale(1.05); }
.svc-art::before { background-size: cover; }
.svc-icon { position: relative; width: 98px; height: 98px; color: var(--silver-100); --ic-accent: var(--red-400); filter: drop-shadow(0 8px 24px rgba(209, 48, 58, .5)); transition: transform .55s var(--ease); }
.svc-card:hover .svc-icon { transform: scale(1.12) rotate(-3deg); }
.svc-num { position: absolute; top: 16px; inset-inline-end: 18px; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .22em; color: rgba(255, 255, 255, .38); }
.svc-body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 22px 24px 24px; }
.svc-names { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.svc-title { font-weight: 700; font-size: 1.15rem; line-height: 1.25; letter-spacing: -.01em; color: #fff; }
.svc-ar { font-family: "Cairo", var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--silver-200); white-space: nowrap; }
.svc-ar[lang="en"], .zs-name em[lang="en"] { font-family: "Inter", system-ui, sans-serif; font-weight: 500; font-size: .9rem; }
.svc-body p { font-size: .95rem; line-height: 1.6; color: var(--muted); }
.svc-cta { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-top: auto; padding-top: 8px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--red-300); transition: color .25s; }
.svc-card:hover .svc-cta, .svc-cta:hover { color: #fff; }
.svc-card:target { border-color: rgba(229, 72, 76, .7); box-shadow: 0 0 0 1px rgba(229, 72, 76, .25), 0 30px 70px -28px rgba(209, 48, 58, .55); }
.svc-card--wide, .svc-card--feature { flex-direction: row; }
.svc-card--wide .svc-art { flex: 0 0 40%; min-height: 0; }
.svc-card--feature .svc-art { flex: 0 0 36%; }
.svc-card--feature .svc-icon { width: 128px; height: 128px; }
.svc-card--feature .svc-body { justify-content: center; padding: 34px clamp(24px, 4vw, 56px); }
.svc-card--feature .svc-title { font-size: 1.55rem; }
.svc-card--feature .svc-ar { font-size: 1.2rem; }
.svc-card--feature p { max-width: 58ch; font-size: 1.02rem; }

/* ---------- About / vehicle explorer ---------- */
.about { background: radial-gradient(60% 40% at 50% 0%, rgba(209, 48, 58, .09), transparent 70%), var(--ink-850); }
.about-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(36px, 5vw, 60px); }
.about-points { display: grid; gap: 14px; }
.about-points li { padding: 18px 22px 18px 24px; border-inline-start: 2px solid var(--red-500); border-radius: 0 16px 16px 0; background: linear-gradient(90deg, rgba(255, 255, 255, .05), transparent); }
.about-points b { display: block; margin-bottom: 4px; font-family: var(--font-head); font-weight: 700; color: #fff; }
.about-points span { font-size: .95rem; color: var(--muted); }

.explorer { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(290px, 1fr); gap: 20px; align-items: stretch; }
.explorer-stage {
  position: relative; overflow: hidden; padding: clamp(16px, 3vw, 32px); border-radius: 28px; border: 1px solid var(--line);
  background: radial-gradient(70% 60% at 50% 32%, rgba(255, 255, 255, .07), transparent 70%), linear-gradient(180deg, #15181c, #0a0b0d);
}
.explorer-stage::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 34px), repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 34px);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 45%, #000, transparent 80%); mask-image: radial-gradient(80% 70% at 50% 45%, #000, transparent 80%);
}
.explorer-hint { position: relative; display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hint-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-400); animation: ping 2s infinite; }
.car-wrap { position: relative; width: 100%; aspect-ratio: 1000 / 440; margin-top: 10px; transform-style: preserve-3d; transform: perspective(1400px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .45s var(--ease); }
.hotspots { position: absolute; inset: 0; transform-style: preserve-3d; }
.explorer-car { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hotspot { position: absolute; z-index: 2; inset-inline-start: var(--x); top: var(--y); display: grid; place-items: center; width: 34px; height: 34px; margin-top: -17px; margin-inline-start: -17px; border-radius: 50%; transform: translateZ(26px); }
.hs-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--red-400); border: 2px solid #fff; animation: ping 2.2s infinite; transition: transform .3s var(--ease), background .3s, border-color .3s; }
.hotspot:hover .hs-dot, .hotspot.is-active .hs-dot { transform: scale(1.4); background: #fff; border-color: var(--red-400); }
.hs-label {
  position: absolute; bottom: calc(100% + 2px); left: 50%; padding: 6px 12px; border-radius: 999px; white-space: nowrap; pointer-events: none; opacity: 0; transform: translate(-50%, 6px);
  background: rgba(11, 12, 14, .92); border: 1px solid var(--line-strong); font-size: .78rem; font-weight: 600; color: #fff; transition: opacity .25s, transform .25s;
}
.hotspot:hover .hs-label, .hotspot.is-active .hs-label, .hotspot:focus-visible .hs-label { opacity: 1; transform: translate(-50%, 0); }
.zone-tabs { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.zone-tab { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .03); font-size: .85rem; font-weight: 500; color: var(--silver-200); transition: background .25s, border-color .25s, color .25s, box-shadow .25s; }
.zone-tab:hover { border-color: rgba(255, 255, 255, .42); color: #fff; }
.zone-tab[aria-selected="true"] { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--red-500), var(--red-700)); box-shadow: 0 10px 24px -10px rgba(209, 48, 58, .85); }

.zone-panel { display: flex; flex-direction: column; justify-content: center; min-height: 340px; padding: clamp(22px, 3vw, 34px); border-radius: 28px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02)); }
.zone-count { font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .22em; color: var(--red-400); }
.zone-info h3 { margin: 10px 0 8px; font-weight: 700; font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem); line-height: 1.15; letter-spacing: -.02em; color: #fff; }
.zone-info > p { color: var(--muted); }
.zone-services { display: grid; gap: 10px; margin-top: 22px; }
.zone-services li { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, .04); }
.zs-ico { display: grid; place-items: center; flex: none; width: 48px; height: 48px; border-radius: 14px; color: var(--silver-100); background: rgba(229, 72, 76, .1); border: 1px solid rgba(229, 72, 76, .26); --ic-accent: var(--red-400); }
.zs-ico svg { width: 32px; height: 32px; }
.zs-name { display: flex; flex: 1; flex-direction: column; font-weight: 600; font-size: .96rem; line-height: 1.3; color: #fff; }
.zs-name em { font-family: "Cairo", var(--font-body); font-style: normal; font-weight: 500; font-size: .85rem; color: var(--muted); }
.zs-book { display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; border-radius: 999px; border: 1px solid rgba(229, 72, 76, .4); font-size: .82rem; font-weight: 600; color: var(--red-300); transition: background .25s, color .25s, border-color .25s; }
.zs-book:hover { background: var(--red-600); border-color: transparent; color: #fff; }
.js .zone-info { display: none; }
.js .zone-info.is-active { display: block; animation: fadeUp .5s var(--ease); }
.no-js .hotspots, .no-js .zone-tabs, .no-js .explorer-hint { display: none; }
.no-js .zone-info { margin-bottom: 28px; }

/* vehicle zone overlays (inside the car artwork) */
.zone { opacity: 0; pointer-events: none; transition: opacity .5s; filter: drop-shadow(0 0 5px rgba(229, 72, 76, .7)); }
.zone.is-on { opacity: 1; }
.z-line { fill: none; stroke: #ff6367; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.z-white { stroke: #fff; stroke-width: 3; }
.z-thin { stroke-width: 1.4; }
.z-area { fill: rgba(229, 72, 76, .22); }
.z-dash { stroke: #ff8b8e; stroke-width: 1.8; stroke-dasharray: 7 6; }
.z-fill { fill: #ff6367; stroke: none; }
.z-spark { fill: #fff; stroke: none; }
.zone.is-on .z-spin { animation: dash 2.4s linear infinite; }
.zone.is-on .z-ping { animation: pingLine 2s ease-out infinite; }
.zone.is-on .z-spark { animation: twinkle 1.6s ease-in-out infinite; }
.car-seats { transition: opacity .4s; }

/* ---------- Why ---------- */
.why { background: var(--ink-900); }
.why-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 76px); align-items: start; }
.why-head { position: sticky; top: calc(var(--header-h) + 28px); }
.why-head .btn { margin-top: 30px; }
.why-tag { margin-top: 26px; padding-inline-start: 18px; border-inline-start: 2px solid var(--red-500); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; line-height: 1.5; color: var(--silver-100); }
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card:nth-child(even) { margin-top: 30px; }
.why-card {
  position: relative; overflow: hidden; padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.why-card::after { content: ""; position: absolute; inset-inline-end: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(closest-side, rgba(209, 48, 58, .28), transparent); opacity: 0; transition: opacity .4s; }
.why-card:hover { transform: translateY(-6px); border-color: rgba(229, 72, 76, .45); box-shadow: 0 26px 60px -30px rgba(209, 48, 58, .55); }
.why-card:hover::after { opacity: 1; }
.why-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.why-ico { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; color: var(--silver-100); background: rgba(229, 72, 76, .1); border: 1px solid rgba(229, 72, 76, .3); --ic-accent: var(--red-400); }
.why-ico svg { width: 40px; height: 40px; }
.why-no { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .25); }
.why-card h3 { font-weight: 700; font-size: 1.1rem; line-height: 1.3; color: #fff; }
.why-card p { margin-top: 10px; font-size: .95rem; color: var(--muted); }

/* ---------- Booking CTA ---------- */
.book { padding-block: clamp(20px, 4vw, 48px) clamp(48px, 7vw, 96px); background: var(--ink-900); }
.book-card {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; overflow: hidden; isolation: isolate;
  padding: clamp(28px, 5vw, 64px); border-radius: 36px; background: linear-gradient(120deg, #5c0f12 0%, #a3191d 46%, #740f13 100%);
  box-shadow: 0 40px 100px -40px rgba(209, 48, 58, .65), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.book-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 70% at 100% 0%, rgba(255, 255, 255, .22), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(0, 0, 0, .5), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 500' preserveAspectRatio='none'%3E%3Cpath d='M-20 380 C200 200 480 120 760 210 C920 262 1040 340 1220 430' fill='none' stroke='%23ffffff' stroke-opacity='.28' stroke-width='3'/%3E%3Cpath d='M-20 440 C240 300 520 250 780 320 C940 362 1060 420 1220 480' fill='none' stroke='%23000000' stroke-opacity='.28' stroke-width='3'/%3E%3C/svg%3E") center / cover no-repeat;
}
.book-copy h2 { max-width: 16ch; }
.book-copy p { max-width: 50ch; margin-top: 16px; font-size: 1.08rem; color: rgba(255, 255, 255, .88); }
.book-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.book-contacts { display: grid; gap: 10px; }
.book-contacts a { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(0, 0, 0, .28); backdrop-filter: blur(6px); font-weight: 600; font-size: .98rem; color: #fff; word-break: break-word; transition: background .3s, transform .3s var(--ease); }
.book-contacts a:hover { background: rgba(0, 0, 0, .46); transform: translateX(6px); }
.book-contacts .ico { color: rgba(255, 255, 255, .85); }

/* ---------- Contact ---------- */
.contact { background: var(--ink-850); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 24px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.info-card { display: flex; gap: 18px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015)); }
.info-ico { display: grid; place-items: center; flex: none; width: 50px; height: 50px; border-radius: 16px; color: var(--red-300); background: rgba(229, 72, 76, .12); border: 1px solid rgba(229, 72, 76, .3); }
.info-ico svg { width: 24px; height: 24px; }
.info-card > div { min-width: 0; flex: 1; }
.info-card h3 { margin-bottom: 8px; font-weight: 700; font-size: 1.02rem; color: #fff; }
.phone-list li { display: flex; align-items: center; gap: 12px; padding: 5px 0; }
.phone-list li a:first-child { font-weight: 500; letter-spacing: .01em; color: var(--silver-100); transition: color .2s; }
.phone-list li a:first-child:hover, .info-line a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.chip { margin-inline-start: auto; padding: 4px 14px; border-radius: 999px; border: 1px solid rgba(229, 72, 76, .4); font-size: .78rem; font-weight: 600; color: var(--red-300); transition: background .25s, color .25s; }
.chip:hover { background: var(--red-600); color: #fff; border-color: transparent; }
.info-line a { color: var(--silver-100); word-break: break-word; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-size: .9rem; font-weight: 600; color: var(--red-300); transition: color .2s; }
.text-link:hover { color: #fff; }
.info-card--placeholder { border-style: dashed; border-color: var(--line-strong); background: transparent; }
.muted { color: var(--muted); }

.form { padding: clamp(22px, 3.4vw, 38px); border-radius: 28px; border: 1px solid var(--line-strong); background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02)); box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .8); }
.form-title { margin-bottom: 22px; font-weight: 700; font-size: 1.4rem; color: #fff; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: .84rem; font-weight: 600; letter-spacing: .02em; color: var(--silver-200); }
.req { color: var(--red-400); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line-strong); background: #0a0b0e; color: #fff; font: inherit; font-size: .98rem;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 116px; }
.field input::placeholder, .field textarea::placeholder { color: #737a82; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255, 255, 255, .32); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--red-400); box-shadow: 0 0 0 4px rgba(229, 72, 76, .2); }
.field .is-invalid { border-color: #ff7b7f; }
.field-error { margin-top: 6px; font-size: .8rem; color: #ff9a9d; }
.field.flash select { animation: flash 1.4s ease; }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; inset-inline-end: 18px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--silver-200); border-bottom: 2px solid var(--silver-200); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.field select { appearance: none; -webkit-appearance: none; padding-inline-end: 44px; cursor: pointer; }
.field select option, .field select optgroup { background: #101216; color: #fff; }
.form .btn { margin-top: 22px; }
.form-note { margin-top: 16px; font-size: .84rem; color: var(--muted); }
.form-note strong { color: var(--silver-100); font-weight: 600; }
.form-note a { color: var(--silver-100); text-decoration: underline; text-underline-offset: 3px; }
.form-status { margin-top: 14px; }
.form-status:not(:empty) { padding: 12px 16px; border-radius: 14px; border-inline-start: 3px solid var(--silver-100); background: rgba(255, 255, 255, .06); font-size: .92rem; color: #fff; }
.form-status.is-error { border-inline-start-color: #ff7b7f; }

/* ---------- Footer ---------- */
.site-footer { position: relative; padding-top: clamp(48px, 7vw, 88px); background: #060607; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; opacity: .75; background: linear-gradient(90deg, transparent, var(--red-600), var(--silver-100), var(--red-600), transparent); }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: clamp(40px, 6vw, 72px); padding: clamp(24px, 4vw, 40px); border-radius: 26px; border: 1px solid var(--line-strong); background: linear-gradient(120deg, rgba(209, 48, 58, .18), rgba(255, 255, 255, .04)); }
.footer-cta h2 { font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem); }
.footer-cta p { margin-top: 8px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1.4fr 1.4fr; gap: clamp(24px, 4vw, 56px); padding-bottom: clamp(36px, 5vw, 56px); }
.footer-brand p { max-width: 34ch; margin-top: 18px; font-size: .95rem; color: var(--muted); }
.brand--lg .brand-mark { width: 72px; height: 72px; }
.brand--lg .brand-word b { font-size: 1.5rem; }
.footer-col h3 { margin-bottom: 18px; font-weight: 600; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--silver-100); }
.footer-col > a, .footer-services a { display: block; padding: 5px 0; font-size: .95rem; color: var(--muted); transition: color .2s, transform .25s var(--ease); }
.footer-col > a:hover, .footer-services a:hover, .footer-contact a:hover { color: #fff; transform: translateX(3px); }
.footer-services { columns: 2; column-gap: 20px; }
.footer-services a { break-inside: avoid; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: .95rem; color: var(--muted); }
.footer-contact .ico { margin-top: 4px; color: var(--red-400); }
.footer-contact a { transition: color .2s; word-break: break-word; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0 34px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--faint); }
.to-top { display: inline-flex; align-items: center; gap: 8px; color: var(--silver-200); }
.to-top .arrow { transform: rotate(-90deg); }
.to-top:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; z-index: 90; inset-inline-end: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; height: 60px; min-width: 60px; padding: 0 16px; border-radius: 999px; color: #fff; border: 2px solid transparent;
  background: linear-gradient(#171a1f, #0b0c0e) padding-box, linear-gradient(135deg, #f5f6f7, #8b9097 45%, #e0e2e4) border-box;
  box-shadow: 0 14px 34px -8px rgba(0, 0, 0, .75); animation: waPing 3.2s infinite; transition: padding .35s var(--ease), gap .35s var(--ease), transform .3s var(--ease);
}
.wa-float .ico { width: 26px; height: 26px; }
.wa-label { max-width: 0; overflow: hidden; white-space: nowrap; font-family: var(--font-head); font-weight: 600; font-size: .9rem; transition: max-width .4s var(--ease); }
.wa-float:hover, .wa-float:focus-visible { gap: 10px; padding-inline-end: 22px; transform: translateY(-3px); }
.wa-float:hover .wa-label, .wa-float:focus-visible .wa-label { max-width: 170px; }

/* ---------- Motion ---------- */
.js [data-reveal] { opacity: 0; }
.reveal-fallback [data-reveal] { opacity: 1 !important; }
.js [data-reveal].in { opacity: 1; animation: reveal .85s var(--ease) var(--d, 0ms) backwards; }
@keyframes reveal { from { opacity: 0; transform: translateY(28px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes carIn { from { opacity: 0; transform: translateX(110px); } }
@keyframes carInRtl { from { opacity: 0; transform: translateX(-110px); } }
@keyframes wheelIn { from { transform: rotate(0); } to { transform: rotate(1080deg); } }
@keyframes sheen { 0% { transform: translateX(0) skewX(-20deg); } 70%, 100% { transform: translateX(1150px) skewX(-20deg); } }
@keyframes logoIn { from { opacity: 0; transform: scale(.86); } }
@keyframes streak { to { transform: translateX(180vw); } }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(229, 72, 76, .65); } 70%, 100% { box-shadow: 0 0 0 12px rgba(229, 72, 76, 0); } }
@keyframes waPing { 0% { box-shadow: 0 14px 34px -8px rgba(0, 0, 0, .75), 0 0 0 0 rgba(229, 72, 76, .55); } 60%, 100% { box-shadow: 0 14px 34px -8px rgba(0, 0, 0, .75), 0 0 0 16px rgba(229, 72, 76, 0); } }
@keyframes shine { 0% { transform: translateX(0) skewX(-22deg); } 42%, 100% { transform: translateX(1500px) skewX(-22deg); } }
@keyframes dash { to { stroke-dashoffset: -26; } }
@keyframes pingLine { 0% { opacity: .9; } 100% { opacity: 0; } }
@keyframes twinkle { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes flash { 0%, 100% { box-shadow: 0 0 0 0 rgba(229, 72, 76, 0); } 25%, 75% { box-shadow: 0 0 0 5px rgba(229, 72, 76, .45); border-color: var(--red-400); } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .cat-nav { grid-template-columns: repeat(2, 1fr); }
  .span-3 { grid-column: span 6; }
  .explorer { grid-template-columns: 1fr; }
  .zone-panel { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 22px); }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stage { max-width: 560px; }
  .stage-car { width: 106%; margin-left: -53%; }
  .scroll-cue { display: none; }
  .about-top, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-head { position: static; }
  .span-4 { grid-column: span 6; }
  .svc-card--wide { flex-direction: column; }
  .svc-card--wide .svc-art { flex: none; min-height: 176px; }
  .svc-card:last-child:nth-child(odd):not(.span-12) { grid-column: 1 / -1; flex-direction: row; }
  .svc-card:last-child:nth-child(odd):not(.span-12) .svc-art { flex: 0 0 38%; min-height: 0; }
}

@media (max-width: 700px) {
  .cat-nav { gap: 12px; }
  .cat-tile { padding: 16px; }
  .cat-list, .cat-go { display: none; }
  .cat-ico { width: 46px; height: 46px; border-radius: 14px; } .cat-ico svg { width: 30px; height: 30px; }
  .group-head { flex-wrap: wrap; gap: 6px 14px; }
  .group-count { margin-inline-start: 0; }
  .group-title { flex: 1 0 60%; }

  .svc-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-grid > .svc-card, .svc-card:last-child:nth-child(odd):not(.span-12) { grid-column: 1 / -1; flex-direction: row; }
  .svc-art, .svc-card--wide .svc-art, .svc-card--feature .svc-art, .svc-card:last-child:nth-child(odd):not(.span-12) .svc-art { flex: 0 0 112px; min-height: 0; }
  .svc-icon, .svc-card--feature .svc-icon { width: 68px; height: 68px; }
  .svc-num { display: none; }
  .svc-body, .svc-card--feature .svc-body { padding: 16px 18px 16px; gap: 6px; }
  .svc-names { flex-direction: column; align-items: flex-start; gap: 0; }
  .svc-title, .svc-card--feature .svc-title { font-size: 1.05rem; }
  .svc-ar, .svc-card--feature .svc-ar { font-size: .95rem; }
  .svc-body p, .svc-card--feature p { font-size: .88rem; line-height: 1.5; }
  .svc-card:hover { transform: none; }

  .zone-tabs { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(var(--gutter) * -1 + 0px); padding: 2px var(--gutter) 6px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .zone-tabs::-webkit-scrollbar { display: none; }
  .zone-tab { flex: none; scroll-snap-align: start; }
  .explorer-stage { padding: 14px; border-radius: 22px; }
  .hs-label { display: none; }
  .hotspot { width: 30px; height: 30px; margin: -15px 0 0 -15px; }
  .hs-dot { width: 12px; height: 12px; }
  .zone-panel { border-radius: 22px; }

  .why-cards { grid-template-columns: 1fr; }
  .why-card:nth-child(even) { margin-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-bottom: 96px; }
  .book-card { border-radius: 28px; }
  .book-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-facts li { padding-inline: 12px; }
  .hero-facts span { font-size: .74rem; }
  .brand-word b { font-size: 1.1rem; }
  .btn--lg { padding: 0 22px; }
  .book-cta .btn, .btn--lg { white-space: normal; text-align: center; }
  .wa-float { height: 56px; min-width: 56px; padding: 0 15px; }
}

@media (hover: none) { .wa-label { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; }
}


/* ==========================================================================
   Language switch, location link, social icons
   ========================================================================== */
.ltr { direction: ltr; unicode-bidi: isolate; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 8px; flex: none; min-height: 42px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .05); backdrop-filter: blur(6px);
  font-family: "Cairo", var(--font-body); font-weight: 600; font-size: .92rem; color: #fff;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.lang-switch .ico { width: 18px; height: 18px; color: var(--red-300); }
.lang-switch:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .42); transform: translateY(-1px); }
.info-card--link { transition: transform .4s var(--ease), border-color .3s, box-shadow .4s; }
.info-card--link:hover, .info-card--link:focus-visible { transform: translateY(-4px); border-color: rgba(229, 72, 76, .55); box-shadow: 0 24px 56px -30px rgba(209, 48, 58, .6); }
.info-card--link:hover .text-link { color: #fff; }
.info-card--link .text-link .ico { width: 1em; height: 1em; }
.info-card--social { align-items: center; }
.social-list { display: flex; flex-wrap: wrap; gap: 12px; }
.info-card--social .social-list { margin-top: 6px; }
.social-link {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; color: var(--silver-100);
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .05);
  transition: transform .35s var(--ease), background .3s, border-color .3s, color .3s, box-shadow .35s;
}
.social-link svg { width: 22px; height: 22px; }
a.social-link:hover, a.social-link:focus-visible { transform: translateY(-4px); color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--red-500), var(--red-700)); box-shadow: 0 14px 30px -12px rgba(209, 48, 58, .85); }
.social-link.is-soon { cursor: default; opacity: .55; border-style: dashed; }
.social-list--footer { margin-top: 22px; }
.social-list--footer .social-link { width: 44px; height: 44px; border-radius: 14px; }
.book-loc { align-items: flex-start !important; font-weight: 500 !important; font-size: .9rem !important; line-height: 1.5; }
.book-loc .ico { margin-top: 3px; flex: none; }

/* 404 page */
.notfound { min-height: 100vh; display: grid; place-items: center; background: radial-gradient(60% 50% at 50% 30%, rgba(209, 48, 58, .16), transparent 70%), var(--ink-900); }
.nf { display: grid; justify-items: center; gap: 14px; padding: 32px var(--gutter); text-align: center; max-width: 620px; }
.nf-code { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 14vw, 7rem); line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(229, 72, 76, .8); }
.nf h1 { font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem); color: #fff; }
.nf p { color: var(--muted); }
.nf-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 10px; }

/* small screens: the language switch sits next to the menu button */
@media (max-width: 900px) {
  .lang-switch { margin-inline-start: auto; }
  .nav-toggle { margin-inline-start: 0; }
}
@media (max-width: 400px) {
  .lang-switch { padding: 0 12px; }
  .lang-switch .ico { display: none; }
  .brand-word small { display: none; }
}
@media (pointer: coarse) {
  .hotspot { width: 44px; height: 44px; margin-top: -22px; margin-inline-start: -22px; }
}
@media (prefers-reduced-motion: reduce) {
  .car-wrap { transform: none !important; }
}

/* ==========================================================================
   Arabic (RTL) — direction and typography overrides
   ========================================================================== */
html[lang="ar"] {
  --font-head: "Cairo", "Sora", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  --font-body: "Cairo", "Inter", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  font-size: 106.25%;
}
html[lang="ar"] body { line-height: 1.85; }
/* Arabic letters must stay joined: no letter-spacing anywhere except the Latin logo wordmark */
html[lang="ar"] body :where(h1, h2, h3, h4, p, a, span, b, li, label, button, input, select, textarea, small, em, strong) { letter-spacing: 0; }
html[lang="ar"] .brand-word { font-family: "Sora", system-ui, sans-serif; }
html[lang="ar"] .brand-word b { letter-spacing: -.01em; }
html[lang="ar"] .brand-word small { letter-spacing: .34em; }
html[lang="ar"] h1, html[lang="ar"] .hero h1 { line-height: 1.3; font-weight: 800; }
html[lang="ar"] h2 { line-height: 1.3; }
html[lang="ar"] .group-title h3, html[lang="ar"] .zone-info h3, html[lang="ar"] .footer-cta h2 { line-height: 1.35; }
html[lang="ar"] .lead, html[lang="ar"] .section-lead, html[lang="ar"] .book-copy p { line-height: 1.95; }
html[lang="ar"] .svc-body p, html[lang="ar"] .why-card p, html[lang="ar"] .cat-list, html[lang="ar"] .group-title p, html[lang="ar"] .info-line { line-height: 1.85; }
html[lang="ar"] .eyebrow, html[lang="ar"] .cat-count, html[lang="ar"] .group-count, html[lang="ar"] .footer-col h3, html[lang="ar"] .explorer-hint { text-transform: none; font-weight: 700; }
html[lang="ar"] .eyebrow { font-size: .9rem; }
html[lang="ar"] .btn { font-weight: 700; }
html[lang="ar"] .svc-title { font-size: 1.22rem; }
html[lang="ar"] .group-no, html[lang="ar"] .why-no, html[lang="ar"] .svc-num, html[lang="ar"] .cat-no { font-family: "Sora", "Cairo", sans-serif; }

[dir="rtl"] .hero-bg { transform: scaleX(-1); }
[dir="rtl"] .stage-car, [dir="rtl"] .explorer-car { scale: -1 1; }
[dir="rtl"] .js .stage-car { animation-name: carInRtl; }
[dir="rtl"] .nav-links a::after { transform-origin: right; }
[dir="rtl"] .about-points li { border-radius: 16px 0 0 16px; background: linear-gradient(270deg, rgba(255, 255, 255, .05), transparent); }
[dir="rtl"] .arrow { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arrow, [dir="rtl"] .svc-card:hover .arrow, [dir="rtl"] .cat-tile:hover .arrow,
[dir="rtl"] .zs-book:hover .arrow, [dir="rtl"] .text-link:hover .arrow { transform: scaleX(-1) translateX(4px); }
[dir="rtl"] .to-top .arrow { transform: rotate(-90deg); }
[dir="rtl"] .footer-col > a:hover, [dir="rtl"] .footer-services a:hover, [dir="rtl"] .footer-contact a:hover { transform: translateX(-3px); }
[dir="rtl"] .book-contacts a:hover { transform: translateX(-6px); }
[dir="rtl"] .btn--primary::before { background: linear-gradient(255deg, transparent 30%, rgba(255, 255, 255, .32) 50%, transparent 70%); }
[dir="rtl"] .field input[type="tel"], [dir="rtl"] .field input[type="email"] { direction: ltr; text-align: right; }
[dir="rtl"] .field input[type="tel"]::placeholder, [dir="rtl"] .field input[type="email"]::placeholder { text-align: right; }
[dir="rtl"] .svc-card:hover .svc-art::before { transform: translateX(-16px) scale(1.05); }

/* Explorer wheels: spin when the wheel area is selected (the hero car spins once on load) */
.explorer-car .rim { animation: none; }
.explorer-car.is-wheels .rim { animation: wheelIn 1.8s cubic-bezier(.12, .6, .2, 1) both; }

/* Without JavaScript the form cannot open WhatsApp, so only the "send by email" link is offered */
.no-js .form .btn { display: none; }

/* very narrow phones: service cards must never force horizontal scrolling */
@media (max-width: 700px) {
  .svc-body { min-width: 0; }
  .svc-ar { white-space: normal; }
  .svc-title, .svc-ar, .svc-body p { overflow-wrap: anywhere; }
}
@media (max-width: 380px) {
  .svc-art, .svc-card--wide .svc-art, .svc-card--feature .svc-art, .svc-card:last-child:nth-child(odd):not(.span-12) .svc-art { flex-basis: 84px; }
  .svc-icon, .svc-card--feature .svc-icon { width: 54px; height: 54px; }
  .svc-body, .svc-card--feature .svc-body { padding: 14px 14px; }
}

/* extremely narrow screens (folded phones, ~300px) */
@media (max-width: 1100px) {
  .explorer { grid-template-columns: minmax(0, 1fr); }
  .explorer-stage, .zone-panel { min-width: 0; }
}
@media (max-width: 340px) {
  .brand-word { display: none; }
  .nav { gap: 10px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { min-width: 0; }
}
.hero-facts { flex-wrap: wrap; row-gap: 14px; }
.hero-facts li { min-width: 0; }
.zs-name { min-width: 0; }
@media (max-width: 380px) {
  .zone-services li { flex-wrap: wrap; }
  .zone-services li .zs-name { flex: 1 1 110px; }
}
