/* ═══════════════════════════════════════════════════════════════════════
   Al Jawhara Car Services — Design System
   Palette taken from the logo: warm charcoal ground (#282621 centre fading
   to #13130E / black) + its cyan (#05C3D8), on a warm sand neutral.
   Every content box is 1400px wide.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 1. Tokens ─────────────────────────────────────────────────────────── */
:root {
  /* Brand ramp — sampled from the logo artwork */
  --ink-950: #070706;
  --ink-900: #0f0e0c;
  --ink-850: #161512;
  --ink-800: #1e1c18;
  --ink-700: #282621; /* logo's lit centre */
  --ink-600: #37342c;
  --ink-500: #4c473d;

  --cyan-300: #7ceef5;
  --cyan-400: #33d9e8;
  --cyan-500: #05c3d8; /* logo cyan */
  --cyan-600: #00a2b6;
  --cyan-700: #007e8e;

  --sand-50: #fbfaf7;
  --sand-100: #f6f4ef;
  --sand-200: #efebe2;
  --sand-300: #e4ded2;

  --stone-900: #1c1a17;
  --stone-700: #4a453d;
  --stone-500: #78726a;
  --stone-400: #9c968c;

  --white: #ffffff;
  --whatsapp: #25d366;

  /* Semantic aliases (kept for markup that references them inline) */
  --primary: var(--ink-900);
  --primary-light: var(--ink-700);
  --accent: var(--cyan-500);
  --accent-light: var(--cyan-400);
  --accent-dark: var(--cyan-700);
  --bg-light: var(--sand-100);
  --bg-white: var(--white);
  --bg-header: var(--ink-900);
  /* Text & line colours for use on the dark header and other dark surfaces */
  --on-dark: rgba(255, 255, 255, 0.76);
  --on-dark-strong: #ffffff;
  --on-dark-soft: rgba(255, 255, 255, 0.56);
  --on-dark-line: rgba(255, 255, 255, 0.10);
  --on-dark-fill: rgba(255, 255, 255, 0.06);
  --text: var(--stone-900);
  --text-muted: var(--stone-500);
  --text-light: var(--stone-400);
  --border: var(--sand-300);
  --border-soft: var(--sand-200);

  /* Layout — the 1400px box */
  --max-width: 1400px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --measure: 74ch;

  /* Spacing scale (4pt) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-9: 4rem;
  --sp-10: 5rem;
  --section-y: clamp(3.5rem, 7vw, 6rem);

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Cairo', 'Inter', -apple-system, sans-serif;
  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 0.975rem;
  --fs-md: 1.0625rem;
  --fs-lg: clamp(1.1rem, 1.6vw, 1.25rem);
  --fs-h4: clamp(1.05rem, 1.6vw, 1.2rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.375rem);
  --fs-h2: clamp(1.65rem, 3.4vw, 2.35rem);
  --fs-h1: clamp(2.1rem, 5.2vw, 3.35rem);

  /* Shape */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(18, 16, 12, 0.05);
  --shadow-sm: 0 2px 6px -2px rgba(18, 16, 12, 0.08), 0 1px 2px rgba(18, 16, 12, 0.04);
  --shadow: 0 10px 28px -14px rgba(18, 16, 12, 0.16), 0 2px 6px -2px rgba(18, 16, 12, 0.06);
  --shadow-lg: 0 24px 54px -22px rgba(18, 16, 12, 0.26), 0 6px 16px -8px rgba(18, 16, 12, 0.10);
  --shadow-accent: 0 14px 34px -14px rgba(0, 200, 216, 0.55);
  --ring: 0 0 0 3px rgba(0, 200, 216, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.68, 0.35, 1);
  --transition: 0.28s cubic-bezier(0.22, 0.68, 0.35, 1);
  --dur-fast: 0.16s;
  --dur: 0.28s;

  --header-h: 140px;
}

/* ── 2. Reset & base ───────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--ink-800);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--cyan-600); }

img,
svg,
iframe { max-width: 100%; display: block; }
img { height: auto; }

ul, ol { padding-inline-start: 1.35rem; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan-600);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: rgba(0, 200, 216, 0.24); color: var(--ink-900); }

/* ── 3. Typography ─────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.22;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: var(--fs-h4); font-weight: 700; }

p { text-wrap: pretty; }

/* Marker-style underline rather than a full highlight block */
.text-accent {
  color: var(--cyan-600);
  background-image: linear-gradient(90deg, rgba(0, 200, 216, 0.55), rgba(0, 200, 216, 0.18));
  background-size: 100% 3px;
  background-position: 0 calc(100% - 0.08em);
  background-repeat: no-repeat;
  padding-bottom: 0.06em;
}

/* ── 4. Layout — the 1400px box ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Readable prose column, still centred inside the same 1400px box */
.container--narrow > *,
.prose { max-width: 60rem; margin-inline: auto; }

.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-rounded { border-radius: var(--radius-lg); }

/* ── 5. Buttons ────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--ink-900);
  --btn-fg: var(--white);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 650;
  font-size: var(--fs-sm);
  line-height: 1.2;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 0.92rem 1.9rem; font-size: var(--fs-base); }
.btn--full { width: 100%; }

.btn--primary { --btn-bg: var(--ink-900); --btn-fg: var(--white); }
.btn--primary:hover { --btn-bg: var(--ink-700); color: var(--white); }

.btn--accent {
  --btn-bg: linear-gradient(135deg, var(--cyan-400) 0%, var(--cyan-600) 100%);
  --btn-fg: var(--ink-950);
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  --btn-bg: linear-gradient(135deg, var(--cyan-300) 0%, var(--cyan-500) 100%);
  color: var(--ink-950);
  box-shadow: 0 18px 40px -14px rgba(0, 200, 216, 0.7);
}

.btn--white { --btn-bg: var(--white); --btn-fg: var(--ink-900); --btn-bd: transparent; }
.btn--white:hover { --btn-bg: var(--sand-100); color: var(--ink-900); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink-800);
  --btn-bd: var(--border);
  box-shadow: none;
}
.btn--outline:hover {
  --btn-bg: var(--white);
  --btn-bd: var(--cyan-500);
  color: var(--cyan-700);
}

.btn--outline-white {
  --btn-bg: rgba(255, 255, 255, 0.06);
  --btn-fg: var(--white);
  --btn-bd: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--outline-white:hover {
  --btn-bg: rgba(255, 255, 255, 0.14);
  --btn-bd: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* ── 6. Header ─────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--bg-header);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: 0 12px 34px -14px rgba(0, 0, 0, 0.75); }

.header__topbar {
  background: var(--ink-950);
  color: var(--on-dark-soft);
  font-size: var(--fs-xs);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--on-dark-line);
}
.header__topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.header__topbar-inner a { color: var(--cyan-300); font-weight: 600; }
.header__topbar-inner a:hover { color: var(--white); }
.header__address,
.header__hours { white-space: nowrap; letter-spacing: 0.01em; }
.header__wa {
  margin-inline-start: auto;
  padding: 0.15rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.16);
  color: #7ef0a8 !important;
}
.header__wa:hover { background: rgba(37, 211, 102, 0.3); }

/* Navbar echoes the logo's own ground: a lit warm-charcoal centre falling
   off to near-black, with a cyan hairline picking up the logo's accent. */
.header__navbar {
  position: relative;
  background:
    radial-gradient(42rem 9rem at 14% 46%, var(--ink-700), transparent 72%),
    linear-gradient(180deg, var(--ink-850) 0%, var(--ink-900) 100%);
}
.header__navbar::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5, 195, 216, 0.5), transparent);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* padding-block only — the shorthand would wipe .container's gutter and
     pull the logo out of alignment with the topbar row above it. */
  padding-block: 0.55rem;
}

.header__logo { display: flex; align-items: center; gap: 0.85rem; }
/* logo-mark.png is the artwork with a real alpha channel — no plate, no radius.
   Trimmed of its empty margin, so it reads larger than its pixel height. */
.header__logo-img {
  height: 52px;
  width: auto;
  transition: transform var(--dur) var(--ease);
}
.header__logo:hover .header__logo-img { transform: scale(1.04); }
.header__brand { display: flex; flex-direction: column; line-height: 1.25; }
.header__brand-en {
  color: var(--on-dark-strong);
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
.header__brand-ar {
  color: var(--cyan-400);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  direction: rtl;
}

/* Rendered as a link (a real URL per language), so it needs a button's box. */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  text-decoration: none;
  background: var(--on-dark-fill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--on-dark);
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: var(--fs-xs);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all var(--dur) var(--ease);
}
.lang-toggle:hover {
  border-color: var(--cyan-500);
  color: var(--on-dark-strong);
  background: rgba(5, 195, 216, 0.14);
}

/* ── 7. Navigation ─────────────────────────────────────────────────────── */
.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
}
.nav__link {
  position: relative;
  display: block;
  color: var(--on-dark);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 550;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan-500), var(--cyan-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--on-dark-strong); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--on-dark-strong); font-weight: 700; }

.nav__cta-item { margin-inline-start: 0.6rem; }
.nav__cta-item .btn { padding: 0.55rem 1.15rem; font-size: var(--fs-sm); }
.nav__lang { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--on-dark-fill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--on-dark-strong);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 8. Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-900);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.04);
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(52rem 30rem at 86% 8%, rgba(5, 195, 216, 0.15), transparent 60%),
    radial-gradient(40rem 26rem at 2% 98%, rgba(5, 195, 216, 0.09), transparent 58%),
    linear-gradient(102deg, rgba(7, 7, 6, 0.95) 0%, rgba(15, 14, 12, 0.88) 45%, rgba(15, 14, 12, 0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan-300);
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 200, 216, 0.1);
  border: 1px solid rgba(0, 200, 216, 0.28);
  backdrop-filter: blur(6px);
}
.hero__eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(0, 200, 216, 0.25);
}
.hero__title { color: var(--white); margin-bottom: 1rem; letter-spacing: -0.035em; }
.hero__title span { display: block; }
.hero__title .text-accent {
  color: var(--cyan-400);
  background: none;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(100deg, var(--cyan-300), var(--cyan-500) 62%, var(--cyan-600));
  -webkit-background-clip: text;
  background-clip: text;
}
/* Arabic strapline is for the Arabic pages only; the layout puts .rtl on
   <body> when it renders /ar/. On the English pages it stays hidden. */
.hero__title-ar {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  direction: rtl;
  font-family: var(--font-heading);
  display: none;
}
body.rtl .hero__title-ar { display: block; }
.hero__subtitle {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--fs-md);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 38rem;
}
.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 2rem;
}
.hero__trust { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.hero__trust span {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-xs);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

/* ── 9. Stats bar ──────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(180deg, var(--ink-950), var(--ink-850));
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stats-bar__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.stats-bar__item:hover {
  border-color: rgba(0, 200, 216, 0.34);
  background: rgba(0, 200, 216, 0.06);
}
.stats-bar__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  font-size: 1.2rem;
  background: rgba(0, 200, 216, 0.14);
  border: 1px solid rgba(0, 200, 216, 0.22);
}
.stats-bar__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.45;
}

/* ── 10. Service-area ticker ───────────────────────────────────────────── */
.service-area-ticker {
  background: var(--sand-100);
  padding: 0.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.service-area-ticker__track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.service-area-ticker__item {
  padding: 0 2.5rem;
  font-size: var(--fs-sm);
  color: var(--stone-700);
}
.service-area-ticker__item strong { color: var(--ink-900); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── 11. Section headers ───────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
  max-width: 46rem;
  margin-inline: auto;
}
.section-title { margin-bottom: 0.5rem; }
.section-title-ar {
  color: var(--cyan-700);
  font-size: 1.05rem;
  font-weight: 700;
  direction: rtl;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.6rem;
}
.section-subtitle {
  color: var(--stone-500);
  font-size: var(--fs-md);
  line-height: 1.7;
  max-width: 40rem;
  margin-inline: auto;
}

/* ── 12. Page header ───────────────────────────────────────────────────── */
.page-header {
  position: relative;
  background: var(--ink-900);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(46rem 26rem at 78% 0%, rgba(5, 195, 216, 0.16), transparent 60%),
    radial-gradient(34rem 22rem at 8% 100%, rgba(5, 195, 216, 0.1), transparent 60%);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 216, 0.5), transparent);
}
.page-header__title { color: var(--white); margin-bottom: 0.6rem; }
.page-header__title .text-accent {
  color: var(--cyan-400);
  background: none;
}
.page-header__title-ar {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.1rem;
  font-weight: 600;
  direction: rtl;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.75rem;
}
.page-header__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-md);
  line-height: 1.7;
  max-width: 42rem;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a { color: var(--cyan-300); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255, 255, 255, 0.32); }

/* ── 13. Icon tiles (shared) ───────────────────────────────────────────── */
.service-card__icon,
.why-us__icon,
.trust__icon,
.service-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(150deg, rgba(0, 200, 216, 0.16), rgba(0, 129, 140, 0.08));
  border: 1px solid rgba(0, 200, 216, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-section__icon { width: 60px; height: 60px; font-size: 1.75rem; border-radius: 18px; }

/* ── 14. Sections ──────────────────────────────────────────────────────── */
.services,
.why-us,
.about-trust,
.faq,
.img-gallery { padding: var(--section-y) 0; }
.why-us,
.about-areas,
.img-gallery { background: var(--sand-100); }
.about-intro,
.about-areas { padding: var(--section-y) 0; }

/* ── 15. Cards ─────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--cyan-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 200, 216, 0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-card__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: var(--shadow-accent);
}

.service-card__img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--sand-200);
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.06); }

.service-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__icon { margin-bottom: 0.9rem; }
.service-card__title { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.service-card__desc {
  color: var(--stone-500);
  font-size: var(--fs-sm);
  line-height: 1.68;
  margin-bottom: 1.1rem;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--cyan-700);
  align-self: flex-start;
}
.service-card__link:hover { gap: 0.6rem; color: var(--cyan-600); }

.why-us__grid,
.trust__grid,
.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.25rem;
}

.why-us__card,
.trust__card,
.area-card {
  background: var(--white);
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.why-us__card:hover,
.trust__card:hover,
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 200, 216, 0.36);
}
.why-us__card h3,
.trust__card h3,
.area-card h3 { margin-bottom: 0.45rem; }
.why-us__card p,
.trust__card p,
.area-card p { color: var(--stone-500); font-size: var(--fs-sm); line-height: 1.68; }

.trust__card { text-align: center; }
.trust__card .trust__icon { margin-inline: auto; }

.credential-card {
  background: var(--white);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-soft);
  border-inline-start: 3px solid var(--cyan-500);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.credential-card:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }
.credential-card h3 { margin-bottom: 0.25rem; font-size: var(--fs-md); }
.credential-card p { color: var(--stone-500); font-size: var(--fs-sm); }

/* ── 16. About / expertise ─────────────────────────────────────────────── */
.expertise__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.expertise__content img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.expertise__list {
  list-style: none;
  padding: 0.5rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.expertise__list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: var(--fs-sm);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.expertise__list li:last-child { border-bottom: none; }
.expertise__list strong {
  color: var(--ink-900);
  min-width: 5.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.expertise__list a { color: var(--cyan-700); font-weight: 650; }

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.about-intro__text h2 { margin-bottom: 0.9rem; }
.about-intro__lead {
  font-size: var(--fs-lg);
  color: var(--ink-800);
  margin-bottom: 1.25rem;
  line-height: 1.65;
  font-weight: 500;
}
.about-intro__text p { margin-bottom: 0.9rem; color: var(--stone-500); font-size: var(--fs-base); }

/* ── 17. CTA banner ────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--ink-900);
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(40rem 24rem at 50% 0%, rgba(0, 200, 216, 0.24), transparent 62%),
    linear-gradient(180deg, var(--ink-850), var(--ink-950));
}
.cta-banner__content { max-width: 42rem; margin-inline: auto; }
.cta-banner__content h2 { color: var(--white); margin-bottom: 0.7rem; }
.cta-banner__content p { color: rgba(255, 255, 255, 0.72); margin-bottom: 1.6rem; font-size: var(--fs-md); }
.cta-banner__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── 18. FAQ ───────────────────────────────────────────────────────────── */
.faq__list { max-width: 52rem; margin-inline: auto; display: grid; gap: 0.7rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item:hover { border-color: var(--border); }
.faq__item[open] {
  border-color: rgba(0, 200, 216, 0.42);
  box-shadow: var(--shadow-sm);
}
.faq__question {
  padding: 1.15rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-base);
  gap: 1rem;
  transition: color var(--dur-fast) var(--ease);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--cyan-700); }
.faq__question::after {
  content: '';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sand-100);
  border: 1px solid var(--border);
  background-image:
    linear-gradient(var(--cyan-600), var(--cyan-600)),
    linear-gradient(var(--cyan-600), var(--cyan-600));
  background-size: 11px 2px, 2px 11px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.faq__item[open] .faq__question::after {
  transform: rotate(135deg);
  background-color: rgba(0, 200, 216, 0.12);
}
.faq__answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--stone-500);
  font-size: var(--fs-sm);
  line-height: 1.75;
}
.faq__answer a { color: var(--cyan-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ── 19. Service detail pages ──────────────────────────────────────────── */
.service-details { padding: clamp(2.5rem, 5vw, 4rem) 0 0; }
.service-section { padding: clamp(2rem, 4vw, 3rem) 0; }
.service-section--alt { background: var(--sand-100); }
.service-section__grid { max-width: 52rem; margin-inline: auto; }
.service-section__title { margin-bottom: 0.6rem; }
.service-section__title-ar {
  color: var(--cyan-700);
  font-size: 1rem;
  font-weight: 700;
  direction: rtl;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 1rem;
}
.service-section__lead {
  font-size: var(--fs-lg);
  color: var(--ink-800);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  font-weight: 500;
}
.service-section__img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.75rem 0;
  box-shadow: var(--shadow);
}
.service-section__content h3 {
  margin: 2.25rem 0 0.75rem;
  font-size: var(--fs-h3);
  padding-inline-start: 0.9rem;
  border-inline-start: 3px solid var(--cyan-500);
}
.service-section__content > p { margin-bottom: 1rem; color: var(--stone-700); }
.service-section__content ul,
.service-section__content ol { margin-bottom: 1.5rem; padding-inline-start: 1.35rem; }
.service-section__content li {
  margin-bottom: 0.55rem;
  color: var(--stone-700);
  font-size: var(--fs-base);
  line-height: 1.7;
}
.service-section__content li::marker { color: var(--cyan-600); font-weight: 700; }
.service-section__content strong { color: var(--ink-900); font-weight: 650; }

.emergency-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(120deg, var(--sand-100), var(--white));
  border: 1px solid var(--border-soft);
  border-inline-start: 4px solid var(--cyan-500);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}
.emergency-cta p { margin: 0; font-size: var(--fs-base); }

/* Related-service links sit on the same reading column as the article above */
.service-details > .container > h3,
.service-details > .container > h3 + div { max-width: 52rem; margin-inline: auto; }
.service-details > .container > h3 {
  margin-bottom: 0.35rem;
  padding-inline-start: 0.9rem;
  border-inline-start: 3px solid var(--cyan-500);
}

/* ── 20. Contact ───────────────────────────────────────────────────────── */
.contact-page { padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-y); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.contact__info h2 { margin-bottom: 0.6rem; }
.contact__info > p { color: var(--stone-500); margin-bottom: 1.75rem; font-size: var(--fs-base); }
.contact__cards { display: grid; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact__card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.contact__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 200, 216, 0.36);
}
.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.15rem;
  background: linear-gradient(150deg, rgba(0, 200, 216, 0.16), rgba(0, 129, 140, 0.08));
  border: 1px solid rgba(0, 200, 216, 0.22);
}
.contact__card h3 { font-size: var(--fs-sm); margin-bottom: 0.2rem; color: var(--stone-500); font-weight: 650; }
.contact__value { font-size: var(--fs-base); font-weight: 650; color: var(--ink-900); }
a.contact__value:hover { color: var(--cyan-700); }
.contact__card-sub { display: block; font-size: var(--fs-xs); color: var(--stone-400); margin-top: 0.25rem; }

.contact__emergency {
  background: linear-gradient(140deg, var(--ink-850), var(--ink-950));
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
  box-shadow: var(--shadow);
}
.contact__emergency h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact__emergency p { margin-bottom: 1.1rem; color: rgba(255, 255, 255, 0.7); font-size: var(--fs-sm); }

.contact__form-wrap {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}
.contact__form-wrap h2 { margin-bottom: 0.4rem; }
.contact__form-wrap > p { color: var(--stone-500); margin-bottom: 1.25rem; font-size: var(--fs-sm); }

.contact-map { margin-top: var(--sp-8); }
.contact-map__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}
.contact-map__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

/* Forms */
.form__group { margin-bottom: 1rem; }
.form__group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink-800);
  letter-spacing: 0.01em;
}
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  background: var(--sand-50);
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.form__group textarea { resize: vertical; min-height: 7rem; }
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--stone-400); }
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--cyan-500);
  background: var(--white);
  box-shadow: var(--ring);
}
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success__check { font-size: 2.75rem; margin-bottom: 0.75rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--stone-500); font-size: var(--fs-sm); }

/* ── 21. Prose (legal pages) ───────────────────────────────────────────────
   Scoped to a .container that is a DIRECT child of .about-page. The About
   page nests its containers inside <section>s, so its grids are untouched. */
.about-page > .container { padding-block: clamp(2.5rem, 5vw, 4rem) var(--section-y); }
.about-page > .container > * { max-width: 52rem; margin-inline: auto; }
.about-page > .container > h2 {
  font-size: var(--fs-h3);
  /* margin-block only — the shorthand would reset the centring margin-inline */
  margin-block: 2.25rem 0.75rem;
  padding-inline-start: 0.9rem;
  border-inline-start: 3px solid var(--cyan-500);
}
.about-page > .container > h2:first-of-type { margin-top: 1.25rem; }
.about-page > .container > p { margin-bottom: 1rem; color: var(--stone-700); font-size: var(--fs-base); }
.about-page > .container ul,
.about-page > .container ol { margin-bottom: 1.25rem; color: var(--stone-700); }
.about-page > .container li { margin-bottom: 0.4rem; }
.about-page > .container li::marker { color: var(--cyan-600); }
.about-page > .container a {
  color: var(--cyan-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── 22. Image gallery ─────────────────────────────────────────────────── */
.img-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.25rem;
}
.img-gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-sm);
}
.img-gallery__item img { transition: transform 0.6s var(--ease); }
.img-gallery__item:hover img { transform: scale(1.06); }
.img-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(10, 9, 7, 0.82));
  color: var(--white);
  padding: 1.5rem 1rem 0.9rem;
  font-size: var(--fs-sm);
  font-weight: 650;
}

/* ── 23. Footer ────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--ink-900), var(--ink-950));
  color: rgba(255, 255, 255, 0.72);
  padding: var(--section-y) 0 2rem;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 216, 0.45), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr 1.35fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  margin-bottom: 2.5rem;
}
.footer__logo { margin-bottom: 1.1rem; height: 74px; width: auto; }
.footer__name { color: var(--white); font-size: var(--fs-md); margin-bottom: 0.15rem; }
.footer__name-ar { color: var(--cyan-400); font-size: var(--fs-sm); direction: rtl; margin-bottom: 0.85rem; }
.footer__brand p { font-size: var(--fs-sm); line-height: 1.7; color: rgba(255, 255, 255, 0.58); }
.footer h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a,
.footer address a { color: rgba(255, 255, 255, 0.62); font-size: var(--fs-sm); }
.footer ul a:hover,
.footer address a:hover { color: var(--cyan-400); }
.footer ul a { position: relative; transition: padding-inline-start var(--dur) var(--ease), color var(--dur-fast) var(--ease); }
.footer ul a:hover { padding-inline-start: 0.4rem; }
.footer address { font-style: normal; }
.footer address p { margin-bottom: 0.5rem; font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.62); }
.footer__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.footer__credit { color: rgba(255, 255, 255, 0.3); }
.footer__credit:hover { color: var(--cyan-400); }

/* ── 23b. Floating WhatsApp (injected by main.js on mobile) ────────────── */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  inset-inline-end: 1.15rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ee06f, #128c4a);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(18, 140, 74, 0.75), 0 0 0 6px rgba(37, 211, 102, 0.14);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover,
.wa-float:focus-visible { color: var(--white); transform: scale(1.06); }
.wa-float:active { transform: scale(0.97); }

/* ── 24. Reveal animation ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── 25. RTL ───────────────────────────────────────────────────────────── */
body.rtl { direction: rtl; }

/* Arabic mode mirrors the layout, but any block still written in English must
   keep its own reading order — otherwise the bidi algorithm drags trailing
   punctuation to the wrong end ("‎.automotive accessories") and reorders
   leading neutrals ("& Car Key Services" → "Car Key Services &").
   `plaintext` makes each block take its direction from its own first strong
   character, so Arabic blocks stay RTL and English blocks stay LTR.
   `unicode-bidi` is not inherited, so the inline carriers (the title's spans,
   the icon+label chips and buttons) have to be listed too — otherwise a block
   that merely *contains* English still resolves as RTL. */
body.rtl :is(h1, h2, h3, h4, h5, p, li, dt, dd, blockquote,
              figcaption, label, summary, th, td, address,
              span, a, strong, em, small, time) {
  unicode-bidi: plaintext;
}

body.rtl .header__brand-ar { direction: ltr; }
body.rtl .hero__actions,
body.rtl .cta-banner__actions { flex-direction: row-reverse; }
body.rtl .expertise__content { direction: ltr; }
body.rtl .expertise__list { direction: rtl; }
body.rtl .service-card__link:hover,
body.rtl .footer ul a:hover { transform: none; }

/* ── 26. Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --header-h: 118px; }
  .header__logo-img { height: 48px; }
  .header__brand-en { font-size: 0.98rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .expertise__content,
  .about-intro__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--ink-900);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    gap: 0.15rem;
    border-bottom: 1px solid var(--on-dark-line);
    box-shadow: 0 22px 44px -18px rgba(0, 0, 0, 0.85);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__list.active { display: flex; animation: navDrop 0.24s var(--ease); }
  .nav__link { padding: 0.8rem 1rem; font-size: var(--fs-base); border-radius: var(--radius-sm); }
  .nav__link::after { display: none; }
  .nav__link:hover,
  .nav__link.active { background: var(--on-dark-fill); color: var(--on-dark-strong); }
  .nav__cta-item { margin: 0.5rem 0 0; }
  .nav__cta-item .btn { width: 100%; padding: 0.8rem 1rem; }
  .nav__lang { display: block; margin-top: 0.35rem; text-align: center; }
  .header__navbar { position: relative; }
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 112px; }
  .header__logo-img { height: 44px; }
  .header__logo { gap: 0.65rem; }
  .header__brand-en { font-size: 0.92rem; }
  /* The logo mark already carries the Arabic name — a second copy just wraps */
  .header__brand-ar { display: none; }
  .hero { min-height: auto; }
  .hero__content { padding: 3.5rem 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .header__topbar-inner { font-size: 0.7rem; gap: 0.6rem; row-gap: 0.35rem; }
  .header__hours { display: none; }
  .emergency-cta { flex-direction: column; align-items: stretch; }
  .emergency-cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; }
  /* Leave room for the floating WhatsApp button */
  .footer { padding-bottom: 6rem; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr; }
  .service-card__body { padding: 1.3rem; }
  .why-us__card,
  .trust__card,
  .area-card { padding: 1.4rem; }
  .faq__question { padding: 1rem 1.15rem; font-size: var(--fs-sm); }
  .faq__answer { padding: 0 1.15rem 1.1rem; }
}

/* ── 27. Motion & print ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer__map, .cta-banner, .service-area-ticker { display: none; }
  body { padding-top: 0 !important; color: #000; }
  .page-header, .hero { background: none; color: #000; }
}
