/* ============================================================
   FAKHAMAT ALDECOR — LUXURY DARK-GREEN + CHAMPAGNE GOLD
   Multi-page static site design system
   (Upgraded with hor-cars.com techniques — dark green-black world,
    gold-shimmer titles, circular gold WhatsApp, hover-animated icons,
    signature easeOutQuint easing, heritage cross-hatch texture.)
   ============================================================ */

/* ---------- 1. RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

::selection { background: rgba(201, 165, 90, 0.25); color: #fff; }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Palette — Dark luxury base (hor-cars.com signature dark green-black world) */
  --bg: #08160c;              /* hor-black — deep forest near-black (was #0a0a0b) */
  --bg-2: #0c1e10;            /* hor-green-950 — subtle dark green section shift */
  --bg-3: #1f4f2d;            /* hor-green-700 — used sparingly for accents */
  --surface: #0c1e10;         /* charcoal tinted green (was #111114) */
  --surface-2: #102815;       /* slightly lighter green-tinted charcoal (was #17171c) */
  --footer-bg: #050d07;       /* deepest green-black for footer (was #060607) */
  --fg: #f4f0e8;
  --ink: #f4f0e8;
  --ink-muted: #9a958a;
  --ivory: #f4f0e8;
  --line: rgba(201, 165, 90, 0.18);

  /* Champagne / antique gold accent (unchanged) */
  --gold: #c9a55a;
  --gold-soft: #d8bd83;
  --gold-deep: #9c7d3f;
  --gold-shimmer-hi: #f7edd0;   /* hor-gold-100 — shimmer highlight mid-tone */

  /* === WHATSAPP — now in the site's gold spirit (per client request) ===
     Legacy green tokens retained for backward compatibility but no longer applied.
     All WhatsApp touchpoints use the gold gradient (.btn-gold spirit). */
  --whatsapp: #25D366;             /* legacy */
  --whatsapp-hover: #2bf07a;       /* legacy */
  --whatsapp-deep: #128C7E;        /* legacy */
  --whatsapp-text: #0a2f1f;        /* legacy */
  --whatsapp-glow: rgba(37, 211, 102, 0.55);  /* legacy */
  --gold-glow: rgba(201, 165, 90, 0.55);      /* new — used for WhatsApp pulse */

  /* Typography — Latin */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Typography — Arabic (applied via [dir="rtl"]) */
  --font-arabic-sans: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', system-ui, sans-serif;
  --font-arabic-display: 'Amiri', 'Noto Naskh Arabic', serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --radius: 4px;

  /* Easing — hor-cars.com signature easeOutQuint-like curve */
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Apply Arabic fonts when RTL */
[dir="rtl"] body { font-family: var(--font-arabic-sans); }
[dir="rtl"] .font-display,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] .section-title,
[dir="rtl"] .hero-title,
[dir="rtl"] .loading-mark,
[dir="rtl"] .brand-name { font-family: var(--font-arabic-display) !important; }

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: clamp(5rem, 10vw, 9rem); position: relative; }
.section-tight { padding-block: clamp(3.5rem, 7vw, 6rem); }

.bg-surface { background-color: var(--surface); }
.bg-surface-2 { background-color: var(--surface-2); }

/* Alt-section surface — subtle dark green shift for alternating rhythm */
.bg-green-tint {
  background-color: var(--bg-2);
  position: relative;
}
.bg-green-tint::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201, 165, 90, 0.04), transparent 60%);
  pointer-events: none;
}
.bg-brand-green,
.bg-brand-green-deep { background-color: var(--bg-2); }

/* ---------- 4. TYPOGRAPHY ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
[dir="rtl"] .eyebrow::before { display: none; }
[dir="rtl"] .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  /* color is overridden by the gold-shimmer rule below */
}
.section-title-center { text-align: center; margin-inline: auto; }

/* === GOLD SHIMMER — hor-cars.com signature title effect ===
   5-stop gold gradient (deep → soft → highlight → soft → deep) clipped to text,
   animated as a 3s linear sweep of background-position from -200% to 200%.
   Applied automatically to every <em> inside .section-title and .hero-title
   (no HTML or JS changes needed — works with content.js <em>...</em> strings). */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.section-title em,
.hero-title em,
.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold-deep) 0%,
    var(--gold-soft) 25%,
    var(--gold-shimmer-hi) 50%,
    var(--gold-soft) 75%,
    var(--gold-deep) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShimmer 3s linear infinite;
  font-style: italic;
  padding-bottom: 0.08em;  /* helps italic descenders show through text-clip */
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 60ch;
}
.lead-center { margin-inline: auto; }

.body-text {
  color: var(--ink-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.text-gold { color: var(--gold); }
.text-green { color: var(--whatsapp); }
.text-ivory { color: var(--ivory); }
.text-muted { color: var(--ink-muted); }
.text-center { text-align: center; }

/* ---------- 5. BUTTONS — confident, jewelry-grade ---------- */
/* Three-tier hierarchy: gold primary (hero), ghost secondary (elegant outline), WhatsApp (saturated, always-on) */
.btn-gold,
.btn-ghost,
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.45s var(--ease-lux);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid transparent;
  min-height: 52px;
}

/* PRIMARY — solid gold, the hero of any section */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #0a0a0b;
  border-color: var(--gold);
  box-shadow: 0 4px 16px -4px rgba(201, 165, 90, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -100%;
  width: 100%;
  height: 100%;
  /* hor-cars.com diagonal white sweep */
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transition: inset-inline-start 0.7s var(--ease-lux);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -6px rgba(201, 165, 90, 0.55), 0 12px 40px -8px rgba(200, 150, 44, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold:hover::before { inset-inline-start: 100%; }
.btn-gold:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

/* SECONDARY — visible, elegant outline */
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ivory);
  border-color: rgba(244, 240, 232, 0.32);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 165, 90, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(201, 165, 90, 0.25);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Premium green button — kept for legacy but upgraded to WhatsApp palette */
.btn-green {
  background: var(--whatsapp);
  color: var(--whatsapp-text);
  border-color: var(--whatsapp-deep);
  font-weight: 700;
  box-shadow: 0 4px 16px -4px var(--whatsapp-glow);
}
.btn-green:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -6px var(--whatsapp-glow);
}

/* === WHATSAPP BUTTON — now in the site's gold spirit (per client request) ===
   Same visual language as .btn-gold (gold gradient + dark text + diagonal sheen),
   but keeps the WhatsApp glyph so users still recognize the channel. */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.45s var(--ease-lux);
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #0a0a0b;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  min-height: 52px;
  text-decoration: none;
  box-shadow: 0 4px 18px -4px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
  overflow: visible;  /* prevent any edge clipping of the glyph */
}
.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transition: inset-inline-start 0.7s var(--ease-lux);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  border-color: var(--gold-soft);
  color: #0a0a0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -6px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-whatsapp:hover::before { inset-inline-start: 100%; }
.btn-whatsapp:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

/* === FLOATING WHATSAPP BUTTON — clean gold CIRCLE in the site's spirit ===
   Per client: "I want the recognized CIRCLE" + "doesn't have to be green, can
   be in the site's spirit (gold/dark)." So this is now a 56×56 gold-gradient
   circle with the WhatsApp glyph in dark. A small label fades in on hover as
   a tooltip pill (off by default — the circle is the icon the user asked for). */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  inset-inline-start: 1.75rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #0a0a0b;
  border: 1px solid var(--gold-deep);
  box-shadow:
    0 10px 28px -8px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s var(--ease-lux);
  animation: waPulse 2.6s ease-in-out infinite;
  text-decoration: none;
  font-family: var(--font-sans);
}
.whatsapp-float:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  color: #0a0a0b;
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    0 14px 36px -8px rgba(0, 0, 0, 0.7),
    0 0 24px -2px rgba(201, 165, 90, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: none;
}
.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}
.whatsapp-float-icon {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: visible;  /* ensure the glyph is never clipped at the bottom */
}
.whatsapp-float-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  overflow: visible;  /* official WhatsApp path fills the full 24x24 viewBox; ensure no edge clipping */
  display: block;
}

/* Tooltip-style label wrapper (the second <span> child of .whatsapp-float).
   Hidden by default; fades in as a pill tooltip to the side on hover.
   `!important` overrides the inline `display:flex; flex-direction:column;`. */
.whatsapp-float > span:not(.whatsapp-float-icon) {
  position: absolute !important;
  display: block !important;
  flex-direction: unset !important;
  inset-inline-start: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 22, 12, 0.96);
  border: 1px solid rgba(201, 165, 90, 0.45);
  color: var(--ivory);
  padding: 0.5rem 0.9rem !important;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-lux), visibility 0.3s var(--ease-lux);
  pointer-events: none;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.7);
}
.whatsapp-float:hover > span:not(.whatsapp-float-icon) {
  opacity: 1;
  visibility: visible;
}
.whatsapp-float-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--gold-soft);
}
.whatsapp-float-label-sub { display: none; }  /* tooltip stays single-line */

/* Gold pulse ring (was green) — expanding glow that fades to transparent. */
@keyframes waPulse {
  0%, 100% {
    box-shadow:
      0 10px 28px -8px rgba(0, 0, 0, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 0 0 rgba(201, 165, 90, 0.5);
  }
  50% {
    box-shadow:
      0 10px 28px -8px rgba(0, 0, 0, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 0 14px rgba(201, 165, 90, 0);
  }
}

[dir="rtl"] .whatsapp-float {
  /* Mirrored automatically by inset-inline-start — no manual overrides needed */
}

/* ---------- 6. CARDS ---------- */
.lux-card {
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease-lux);
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
}
.lux-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lux-card:hover {
  background: var(--surface-2);
  border-color: rgba(201, 165, 90, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(200, 150, 44, 0.18);
}
.lux-card:hover::before { opacity: 1; }

/* ---------- 7. GOLD RULE ---------- */
.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-block: 1.5rem;
}
.gold-rule-center { margin-inline: auto; }

/* Decorative star */
.gold-star { color: var(--gold); font-size: 0.8rem; opacity: 0.9; }

/* ---------- 8. LOADING SCREEN ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  letter-spacing: 0.05em;
  /* hor-cars.com gold-shimmer effect on the "F" mark */
  background: linear-gradient(
    90deg,
    var(--gold-deep) 0%,
    var(--gold-soft) 25%,
    var(--gold-shimmer-hi) 50%,
    var(--gold-soft) 75%,
    var(--gold-deep) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShimmer 3s linear infinite, pulseGold 2.5s ease-in-out infinite;
  padding-bottom: 0.1em;
}
.loading-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.loading-bar {
  width: 180px;
  height: 1px;
  background: rgba(201, 165, 90, 0.2);
  overflow: hidden;
  position: relative;
}
.loading-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--gold), var(--gold-soft), var(--gold-deep));
  transform: translateX(-100%);
  animation: loadingProgress 2.4s ease-in-out infinite;
}
@keyframes pulseGold {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes loadingProgress {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* ---------- 9. HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(8, 22, 12, 0);
  transition: background 0.5s var(--ease-lux), padding 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 14, 8, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(200, 150, 44, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
}
.brand-mark {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-desktop a {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: 0.5rem;
  transition: color 0.3s ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-lux);
}
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.active { color: var(--gold); }
.nav-desktop a.active::after { width: 100%; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.3s ease;
  background: transparent;
}
.lang-switch:hover {
  border-color: var(--gold);
  background: rgba(201, 165, 90, 0.08);
}
.lang-switch svg { width: 14px; height: 14px; }

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.4s var(--ease-lux);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s var(--ease-lux);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  position: relative;
}
[dir="rtl"] .mobile-menu a { font-family: var(--font-arabic-display); }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }
.mobile-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}
[dir="rtl"] .mobile-menu a.active::after { transform: translateX(50%); }

/* ---------- 10. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 8rem 7rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 22s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,22,12,0.6) 0%, rgba(8,22,12,0.4) 40%, rgba(8,22,12,0.95) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(8,22,12,0.4) 100%);
  z-index: 1;
}
/* Cinematic dark hero variant — deep black gradient with subtle gold atmosphere */
.hero-overlay-green {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,22,12,0.55) 0%, rgba(8,22,12,0.45) 40%, rgba(8,22,12,0.97) 100%),
    radial-gradient(ellipse at top, rgba(201, 165, 90, 0.06) 0%, transparent 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: 56ch;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  inset-inline-end: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.85;
}
[dir="rtl"] .hero-scroll { inset-inline-end: 2rem; inset-inline-start: auto; transform: none; }
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@media (max-height: 720px) {
  /* On shorter viewports, hide the hero scroll indicator entirely —
     it can overlap the CTA buttons when the hero is short. */
  .hero-scroll { display: none; }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* ---------- 11. PAGE BANNER (interior pages) — dark cinematic ---------- */
.page-banner {
  position: relative;
  padding-block: 12rem 5rem;
  overflow: hidden;
  background: var(--bg);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-bg img,
.page-banner-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,22,12,0.45) 0%, rgba(8,22,12,0.55) 60%, rgba(8,22,12,0.75) 100%),
    radial-gradient(ellipse at top, rgba(201, 165, 90, 0.05) 0%, transparent 70%);
  z-index: 1;
}

/* === HERITAGE CROSS-HATCH PATTERN — hor-cars.com subtle texture ===
   Two 45°/-45° repeating-linear-gradients at 3% gold opacity.
   Applied to .hero, .cta-section, .page-banner for a luxury textile feel.
   z-index:1 (above overlay, below content which is z-index:2). */
.hero::after,
.cta-section::after,
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201, 165, 90, 0.03) 0, rgba(201, 165, 90, 0.03) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(-45deg, rgba(201, 165, 90, 0.03) 0, rgba(201, 165, 90, 0.03) 1px, transparent 1px, transparent 12px);
  pointer-events: none;
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: var(--ink-muted); opacity: 0.5; }

/* ---------- 12. STATS ROW ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.4s ease;
}
.stat:hover { background: var(--surface); }
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}
[dir="rtl"] .stat-value { font-family: var(--font-arabic-display); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- 13. ABOUT / IMAGE+TEXT ALTERNATING ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-section.reverse .split-image { order: 2; }
.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.split-image img,
.split-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-lux);
}
.split-image:hover img,
.split-image:hover svg { transform: scale(1.04); }
.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}

/* ---------- 14. CONCEPTS (2 cards) ---------- */
.concepts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.concept-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s var(--ease-lux);
  position: relative;
}
.concept-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}
.concept-card:hover {
  border-color: rgba(201, 165, 90, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(200, 150, 44, 0.18);
}
.concept-card:hover::before { opacity: 1; }
.concept-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.concept-image img,
.concept-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}
.concept-card:hover .concept-image img,
.concept-card:hover .concept-image svg {
  transform: scale(1.04);
}
.concept-body { padding: 2.5rem; }
.concept-label {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}
[dir="rtl"] .concept-label { font-family: var(--font-arabic-display); }

/* ---------- 15. SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s var(--ease-lux);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(201, 165, 90, 0.45);
  transform: translateY(-4px);
  background: var(--surface-2);
  box-shadow: 0 12px 40px -8px rgba(200, 150, 44, 0.18);
}
.service-card:hover::before { opacity: 1; }
.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-image img,
.service-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}
.service-card:hover .service-image img,
.service-card:hover .service-image svg {
  transform: scale(1.05);
}
.service-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ivory);
  margin-bottom: 0.9rem;
  line-height: 1.25;
}
[dir="rtl"] .service-title { font-family: var(--font-arabic-display); }
.service-desc {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease;
}
.service-card:hover .service-link { gap: 0.9rem; }

/* ---------- 16. WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem;
  transition: all 0.5s var(--ease-lux);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.why-card:hover {
  background: var(--surface-2);
  border-color: rgba(201, 165, 90, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(200, 150, 44, 0.18);
}
.why-card:hover::before { opacity: 1; }
.why-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 50%;
  transition: all 0.5s var(--ease-lux);
}
.why-card:hover .why-number {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(201, 165, 90, 0.12);
  border-color: var(--gold);
  color: var(--gold-soft);
}
.why-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}
[dir="rtl"] .why-title { font-family: var(--font-arabic-display); }
.why-body {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---------- 17. TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
}
.team-portrait {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  position: relative;
}
.team-portrait img,
.team-portrait svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-lux);
  filter: grayscale(0.4);
}
.team-card:hover .team-portrait img,
.team-card:hover .team-portrait svg {
  transform: scale(1.04);
  filter: grayscale(0);
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}
[dir="rtl"] .team-name { font-family: var(--font-arabic-display); }
.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.team-secondary {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Managerial team (now with floating portrait style like leaders) */
.team-grid-sm {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card-sm {
  text-align: center;
}
.team-portrait-sm {
  overflow: visible !important;
  margin-bottom: 1.2rem;
  border: none !important;
  background: transparent !important;
}
.team-portrait-sm img,
.team-portrait-sm svg {
  width: 100%;
  height: auto;
  display: block;
  filter: none !important;
  transition: transform 0.5s ease;
}
.team-card-sm:hover .team-portrait-sm img,
.team-card-sm:hover .team-portrait-sm svg {
  filter: none;
}
.team-card-sm .team-name { font-size: 1rem; }
.team-card-sm .team-role { font-size: 0.7rem; }

/* ---------- 18. WARRANTY ---------- */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.warranty-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s var(--ease-lux);
}
.warranty-card:hover {
  border-color: rgba(201, 165, 90, 0.45);
}
.warranty-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.warranty-image img,
.warranty-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.warranty-body { padding: 2.5rem; }
.warranty-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
[dir="rtl"] .warranty-title { font-family: var(--font-arabic-display); }
.warranty-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.warranty-list li {
  display: flex;
  gap: 0.8rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.warranty-list li::before {
  content: "✦";
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---------- 19. GROUP ---------- */
.group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.group-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s var(--ease-lux);
  position: relative;
  overflow: hidden;
}
.group-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.group-card:hover {
  background: var(--surface-2);
  border-color: rgba(201, 165, 90, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(200, 150, 44, 0.18);
}
.group-card:hover::before { opacity: 1; }
.group-country {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.group-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
[dir="rtl"] .group-name { font-family: var(--font-arabic-display); }
.group-specialty {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Group card logo (added to match PDF page 23 layout) */
.group-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  transition: all 0.5s var(--ease-lux);
}
.group-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.5s ease;
}
.group-card:hover .group-logo {
  border-color: var(--gold);
  background: rgba(201, 165, 90, 0.08);
}
.group-card:hover .group-logo img {
  filter: brightness(1.1);
}

/* ---------- 20. CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding-block: clamp(6rem, 12vw, 10rem);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img,
.cta-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8,22,12,0.85), rgba(8,22,12,0.92));
  z-index: 1;
}
/* CTA overlay — dark cinematic with faint gold atmosphere */
.cta-overlay-green {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,22,12,0.65) 0%, rgba(12,30,16,0.70) 100%),
    radial-gradient(ellipse at center, rgba(201, 165, 90, 0.06) 0%, transparent 70%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.cta-content .eyebrow { justify-content: center; }
[dir="rtl"] .cta-content .eyebrow { justify-content: center; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ---------- 21. CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 3rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
[dir="rtl"] .form-input,
[dir="rtl"] .form-textarea { font-family: var(--font-arabic-sans); }
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 0 var(--gold);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.5;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-error {
  display: none;
  font-size: 0.78rem;
  color: #d97757;
  margin-top: 0.4rem;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-bottom-color: #d97757;
}
.form-success {
  display: none;
  padding: 2rem;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid var(--gold);
  text-align: center;
}
.form-success.show { display: block; }
.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
[dir="rtl"] .form-success-title { font-family: var(--font-arabic-display); }
.form-success-body {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* Contact info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.5s var(--ease-lux);
}
.contact-info-item:hover .contact-info-icon {
  border-color: var(--gold);
  background: rgba(201, 165, 90, 0.12);
  color: var(--gold-soft);
  transform: scale(1.1) rotate(-5deg);
}
.contact-info-icon svg { width: 18px; height: 18px; overflow: visible; }
.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.5;
  direction: ltr;
  text-align: start;
}
[dir="rtl"] .contact-info-value { text-align: end; }

/* WhatsApp-specific contact item — now in the site's gold spirit (was green).
   Inherits the gold hover scale/rotate from the general .contact-info-item rule. */
.contact-info-item.whatsapp-item .contact-info-icon {
  color: var(--gold);
  border-color: rgba(201, 165, 90, 0.5);
}
.contact-info-item.whatsapp-item:hover .contact-info-icon {
  background: rgba(201, 165, 90, 0.12);
  border-color: var(--gold);
}
.contact-info-item.whatsapp-item .contact-info-label {
  color: var(--gold);
}

/* ---------- 22. FOOTER ---------- */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
  padding-block: 4rem 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand { margin-bottom: 1.5rem; }
.footer-tagline {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 36ch;
}
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col a {
  color: var(--ink-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social a.whatsapp-link:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.footer-social svg { width: 14px; height: 14px; overflow: visible; }

/* ---------- 23. BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  inset-inline-end: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-lux);
  z-index: 900;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover { background: var(--gold-soft); }

/* ---------- 24. SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 24b. PROJECT GALLERY (services page) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease-lux);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}
.gallery-item:hover {
  border-color: var(--gold);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ---------- 24c. FULL-WIDTH IMAGE (Execution/Vision/Mission sections) ---------- */
.full-width-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.full-width-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-lux);
}
.full-width-image:hover img { transform: scale(1.03); }

/* ---------- 24d. TWO-COLUMN TEXT (Execution + Showroom split) ---------- */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin-inline: auto;
}
.col-text .col-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
[dir="rtl"] .col-text .col-title { font-family: var(--font-arabic-display); }
@media (max-width: 768px) {
  .two-col-text { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- 24e. WHY SPLIT (image right, text bullets left) ---------- */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-split .why-image { order: 2; }
.why-split .why-image img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  display: block;
}
.why-text-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.why-text-list li {
  position: relative;
  padding-inline-start: 2rem;
  margin-bottom: 1.2rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.why-text-list li::before {
  content: "✦";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-size: 0.85rem;
  top: 0;
}
.why-text-list li strong {
  color: var(--ivory);
  font-weight: 500;
}
@media (max-width: 768px) {
  .why-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-split .why-image { order: 0; }
}

/* ---------- 24f. SERVICE SECTION (services page) ---------- */
.service-section {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line);
}
.service-section:last-child { border-bottom: none; }
.service-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.service-section-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
[dir="rtl"] .service-section-number { font-family: var(--font-arabic-display); }
.service-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.2;
}
[dir="rtl"] .service-section-title { font-family: var(--font-arabic-display); }
.service-section-desc {
  max-width: 700px;
  margin-inline: auto;
  color: var(--ink-muted);
  line-height: 1.8;
  font-size: 0.98rem;
}
.service-section-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
/* 3 images: all in one row */
.service-section-images.img-count-3 {
  grid-template-columns: repeat(3, 1fr);
}
/* 4 images: 2 per row (2x2 grid) */
.service-section-images.img-count-4 {
  grid-template-columns: repeat(2, 1fr);
}
/* 6 images: 3 per row (2x3 grid) */
.service-section-images.img-count-6 {
  grid-template-columns: repeat(3, 1fr);
}
/* 1 image: full width */
.service-section-images.img-count-1 {
  grid-template-columns: 1fr;
}
.service-section-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease-lux);
}
.service-section-images img:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .service-section-images,
  .service-section-images.img-count-3,
  .service-section-images.img-count-4,
  .service-section-images.img-count-6 { grid-template-columns: 1fr; }
}

/* ---------- 24g. GROUP — main logo on top + bigger company logos ---------- */
.group-main-logo {
  max-width: 280px;
  margin: 0 auto 1.5rem;
}
.group-main-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(201, 165, 90, 0.2));
}
.group-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  text-align: center;
}
.group-main-block {
  text-align: center;
  margin-bottom: 4rem;
}

/* Bigger company logos inside group cards (was 80px → now 140px) */
.group-logo {
  width: 140px !important;
  height: 140px !important;
  margin: 0 auto 1.5rem !important;
  padding: 20px !important;
}
@media (max-width: 768px) {
  .group-main-logo { max-width: 200px; }
  .group-logo { width: 110px !important; height: 110px !important; }
}

/* ---------- 24h. TEAM GROUP PHOTOS (large team photos below execution grid) ---------- */
.team-group-photos {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.team-group-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  position: relative;
}
.team-group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}
.team-group-photo:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .team-group-photos { grid-template-columns: 1fr; }
}

/* ---------- 24i. TEAM PORTRAIT FLOAT (leaders + execution team) ----------
   Per client: portraits must FLOAT on the background — no box, no frame around the
   photo itself. The decorative gold frame baked into the portrait image stays visible. */
.team-card.leader-card .team-portrait,
.team-card.execution-card .team-portrait {
  border: none !important;
  overflow: visible !important;
  background: transparent !important;
  margin-bottom: 1.5rem;
  aspect-ratio: auto;
}
.team-card.leader-card .team-portrait img,
.team-card.execution-card .team-portrait img {
  filter: none !important;
  width: 100%;
  height: auto;
  display: block;
}
.team-card.leader-card:hover .team-portrait img,
.team-card.execution-card:hover .team-portrait img {
  transform: none;
  filter: none;
}

/* ---------- 25. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .why-grid,
  .warranty-grid,
  .group-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-sm { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .split-section,
  .split-section.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section.reverse .split-image { order: 0; }
  .split-image { aspect-ratio: 4 / 3; }
  .concepts-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding-block: 7rem 4rem; min-height: 90vh; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .contact-form { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 2rem 1rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .lux-card, .concept-body, .service-body, .warranty-body { padding: 1.75rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid-sm { grid-template-columns: repeat(2, 1fr); }
  .page-banner { padding-block: 9rem 3.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hide the hero scroll indicator on mobile — it overlaps the CTA buttons
     when the hero is short, and it's not really needed on touch devices. */
  .hero-scroll { display: none; }
  /* Mobile WhatsApp float — keep it a clean gold circle, slightly smaller */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    inset-inline-start: 1.25rem;
  }
  .whatsapp-float-icon svg { width: 26px; height: 26px; overflow: visible; }
  .whatsapp-float > span:not(.whatsapp-float-icon) { display: none !important; }
}

@media (max-width: 480px) {
  .services-grid,
  .why-grid,
  .warranty-grid,
  .group-grid,
  .team-grid-sm { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .header-inner { padding-block: 1rem; }
  .brand-sub { display: none; }
}

/* ---------- 26. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .whatsapp-float { animation: none; }
  /* Disable shimmer — show solid gold for the accent words instead */
  .section-title em,
  .hero-title em,
  .gold-shimmer,
  .loading-mark {
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: var(--gold) !important;
  }
}

/* ---------- 27. SCROLLBAR ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(201, 165, 90, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(201, 165, 90, 0.45); }

/* ---------- 28. MISC ---------- */
.font-display { font-family: var(--font-serif); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* Page wrapper to push footer down */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-wrapper > main { flex: 1; }
