/* ─────────────────────────────────────────────────────────
   Muneef Transport — styles.css
   Shared across AR (root) and EN (/en/) pages
   ───────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;600;700;800;900&family=Cairo:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:        #0b1929;
  --navy-700:    #102240;
  --navy-600:    #173054;
  --gold:        #c8962c;
  --gold-light:  #e4b24e;
  --gold-pale:   #fdf3dc;
  --white:       #ffffff;
  --off-white:   #f8f5f1;
  --gray-100:    #f0ece6;
  --gray-300:    #c4b9ae;
  --gray-500:    #8a7d72;
  --text:        #1c1510;
  --text-muted:  #7a6e66;
  --green:       #128b2e;
  --green-hover: #1aaa3b;

  --font-ar-display: 'Noto Kufi Arabic', sans-serif;
  --font-ar-body:    'Cairo', sans-serif;
  --font-en:         'Outfit', sans-serif;

  --max-w:   1400px;
  --gutter:  clamp(1rem, 4vw, 2.5rem);

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 0.75rem;
  --r:    1.5rem;
  --r-lg: 2.5rem;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-ar-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Language layer ─────────────────────────────────────── */
html[lang="ar"] body { font-family: var(--font-ar-body); }
html[lang="en"] body { font-family: var(--font-en); }
html[lang="ar"] .heading-display,
html[lang="ar"] .heading-xl,
html[lang="ar"] .heading-lg,
html[lang="ar"] .heading-md { font-family: var(--font-ar-display); }

/* ── Scroll reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-2rem); }
[data-reveal="right"] { transform: translateX(2rem); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].visible { opacity: 1; transform: translate(0) scale(1); }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ── Utility ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
html[lang="ar"] .section-label { letter-spacing: 0; }
.section-label::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
}

.heading-xl {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
}
.heading-lg {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.heading-md {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease), background 0.2s;
  font-family: inherit;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(200,150,44,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover {
  background: var(--green-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(18,139,46,0.35);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 200;
  padding: 0.9rem var(--gutter);
  transition: background 0.45s var(--ease), backdrop-filter 0.45s, box-shadow 0.45s;
}
.nav.scrolled {
  background: rgba(11, 25, 41, 0.93);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--font-ar-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-lang-link {
  border: 1px solid rgba(200,150,44,0.5);
  border-radius: 4px;
  padding: 0.2rem 0.55rem !important;
  color: var(--gold-light) !important;
  font-size: 0.82rem !important;
}
.nav-lang-link:hover { border-color: var(--gold); background: rgba(200,150,44,0.1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  direction: ltr;
  transition: color 0.2s;
  font-family: var(--font-en);
}
.nav-phone:hover { color: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: var(--navy);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-ar-display);
  font-weight: 700;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Background image with heavy dark overlay */
  background-image:
    linear-gradient(135deg,
      rgba(11,25,41,0.93) 0%,
      rgba(11,25,41,0.82) 45%,
      rgba(15,44,80,0.90) 100%),
    url('https://images.pexels.com/photos/33897865/pexels-photo-33897865.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
}
/* Atmospheric radial glows on top of the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 70%, rgba(200,150,44,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 15%, rgba(16,60,140,0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle noise grain overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "text    visual"
    "actions visual";
  column-gap: 5rem;
  row-gap: 0;
  align-items: start;
  padding-top: 7rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  grid-area: text;
  padding-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,150,44,0.1);
  border: 1px solid rgba(200,150,44,0.28);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  width: fit-content;
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
.hero-badge-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero h1 {
  font-family: var(--font-ar-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  max-width: 44ch;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-bottom: 2.5rem;
}

.hero-trust {
  grid-area: trust;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-trust-num {
  font-family: var(--font-ar-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.hero-trust-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
}

/* Hero visual side — stats panel */
.hero-visual {
  grid-area: visual;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

/* ── Hero booking card ── */
.hero-booking {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
  padding: 1.35rem;
  margin-bottom: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.hbc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hbc-title {
  font-family: var(--font-ar-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.hbc-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.22);
  color: #4ade80;
  border-radius: 100px;
  padding: 0.22rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
}
.hbc-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: dot-pulse 2.2s ease-in-out infinite;
}

.hbc-route {
  margin-bottom: 1.1rem;
  padding-inline-start: 1.2rem;
  position: relative;
}
.hbc-route-line {
  position: absolute;
  inset-inline-start: 4px;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,150,44,0.15));
}
.hbc-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.hbc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-inline-start: -1.2rem;
}
.hbc-dot.from { background: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,44,0.2); }
.hbc-dot.to   { background: rgba(255,255,255,0.8); box-shadow: 0 0 0 3px rgba(255,255,255,0.12); }
.hbc-point-label { font-size: 0.68rem; color: rgba(255,255,255,0.38); font-weight: 600; margin-bottom: 0.1rem; }
.hbc-point-addr  { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 700; }

.hbc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.hbc-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.035);
  border-radius: 0.5rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.hbc-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.hbc-bar {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.hbc-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 100px;
  transition: width 1.4s var(--ease) 0.6s;
}
.hbc-bar-fill.run { width: 73%; }

/* Stats grid — used in hero visual panel */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
}
.hero-stat {
  border-inline-start: 2px solid rgba(200,150,44,0.35);
  padding-inline-start: 1.25rem;
}
.hero-stat-num {
  font-family: var(--font-ar-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* Visual divider between stats and content */
.hero-visual-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(200,150,44,0.3) 0%, transparent 100%);
}
.hero-visual-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 36ch;
  border-inline-start: 2px solid rgba(200,150,44,0.2);
  padding-inline-start: 1rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  padding: 6rem 0;
  background: var(--off-white);
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.055);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  inset-inline-end: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,44,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.09);
}
.svc-card.featured {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--navy) 0%, #122e55 60%, #0d2140 100%);
}
.svc-card.featured::after {
  background: radial-gradient(circle, rgba(200,150,44,0.12) 0%, transparent 70%);
  width: 18rem;
  height: 18rem;
  bottom: -5rem;
  inset-inline-end: -4rem;
}
.svc-card.featured:hover {
  box-shadow: 0 24px 56px rgba(11,25,41,0.35);
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.svc-card:not(.featured) .svc-icon { background: var(--gold-pale); }
.svc-card.featured .svc-icon { background: rgba(200,150,44,0.12); }

.svc-card .heading-md { margin-bottom: 0.7rem; }
.svc-card.featured .heading-md { color: var(--white); }

.svc-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.55); }

.svc-features {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.svc-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Service card image strip */
.svc-card-img {
  margin: -2.5rem -2.5rem 2rem;
  overflow: hidden;
  border-radius: var(--r) var(--r) 0 0;
  position: relative;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,25,41,0.75) 0%, rgba(11,25,41,0.1) 60%);
}

.svc-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.svc-bg-icon {
  position: absolute;
  bottom: -1.5rem;
  inset-inline-end: -1rem;
  opacity: 0.04;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   WHY MUNEEF
   ═══════════════════════════════════════════════════════════ */
.why {
  padding: 6rem 0;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-content .heading-xl { margin-bottom: 1rem; }
.why-content .heading-xl span { color: var(--gold); }

.why-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 2.5rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--off-white);
  border-radius: var(--r-sm);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}
.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.6rem;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-card h4 {
  font-family: var(--font-ar-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.why-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Why visual */
.why-visual { position: relative; }

/* Image frame */
.why-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.why-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: transform 0.65s var(--ease);
}
.why-visual:hover .why-img-wrap img { transform: scale(1.04); }
.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,25,41,0.9) 0%, rgba(11,25,41,0.2) 60%);
}
.why-img-label {
  position: absolute;
  bottom: 1.5rem;
  inset-inline-start: 1.75rem;
  inset-inline-end: 1.75rem;
}
.why-img-label h4 {
  font-family: var(--font-ar-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.why-img-label p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* Stats card below image */
.why-visual-main {
  background: var(--navy);
  border-radius: var(--r);
  padding: 2rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-visual-main::after {
  content: '';
  position: absolute;
  bottom: -5rem;
  inset-inline-end: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(200,150,44,0.06);
  pointer-events: none;
}

.why-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.why-score {
  font-family: var(--font-ar-display);
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.why-score-detail { display: flex; flex-direction: column; gap: 0.3rem; }
.why-stars { display: flex; gap: 2px; }
.why-reviews {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.why-quote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-style: italic;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-sm);
  border-inline-start: 3px solid var(--gold);
  margin-bottom: 1.75rem;
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.why-badge {
  background: rgba(200,150,44,0.1);
  border: 1px solid rgba(200,150,44,0.22);
  color: var(--gold-light);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.why-visual-accent {
  position: absolute;
  top: -1.5rem;
  inset-inline-start: 2rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(200,150,44,0.4);
  animation: float 5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200,150,44,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.how-header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}
.how-header .heading-xl { color: var(--white); margin-bottom: 0.75rem; }
.how-header p {
  color: rgba(255,255,255,0.5);
  max-width: 50ch;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.how-connector {
  position: absolute;
  top: 3.5rem;
  inset-inline-start: calc(100% / 6);
  inset-inline-end: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, rgba(200,150,44,0.6) 0%, rgba(200,150,44,0.15) 100%);
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,44,0.3);
  background: rgba(200,150,44,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.how-step:hover .how-step-icon {
  background: rgba(200,150,44,0.14);
  border-color: rgba(200,150,44,0.5);
}
.how-step-num {
  position: absolute;
  top: -0.6rem;
  inset-inline-end: -0.6rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
}
.how-step h3 {
  font-family: var(--font-ar-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.how-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 24ch;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════
   COVERAGE
   ═══════════════════════════════════════════════════════════ */
.coverage {
  padding: 6rem 0;
  background: var(--off-white);
  overflow: hidden;
}
.coverage-header {
  text-align: center;
  margin-bottom: 3rem;
}
.coverage-header .heading-xl { margin-bottom: 0.75rem; }
.coverage-header p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.coverage-areas {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
}
.coverage-areas::-webkit-scrollbar { display: none; }
.area-chip {
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.2s var(--ease-spring);
  cursor: pointer;
  text-decoration: none;
}
.area-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
}
.area-chip.home {
  background: var(--gold-pale);
  border-color: rgba(200,150,44,0.4);
  color: var(--navy);
}

.coverage-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.coverage-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq { padding: 7rem 0; background: var(--surface); }
.faq-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}
.faq-item:first-child { border-top: 1px solid var(--gray-300); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--gold);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.97rem;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing {
  padding: 6rem 0;
  background: var(--gray-100);
}
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pricing-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.pricing-card__amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.pricing-card__currency {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-card__note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-card__note--top {
  margin-bottom: 0.5rem;
}
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-top: 1px solid var(--gray-300);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}
.pricing-card__list li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 700;
}
.pricing-card__list--surcharge {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.pricing-card__list--surcharge li::before { content: ""; }
.surcharge-label { flex: 1; }
.surcharge-price { font-weight: 700; color: var(--text); }
.pricing-card__list--surcharge li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--gray-300);
}
.pricing-card__list--surcharge li:last-child { border-bottom: none; }
.surcharge-elevator {
  color: var(--text-muted);
  font-size: 0.82rem;
  gap: 0.4rem;
}
.surcharge-elevator svg { vertical-align: middle; flex-shrink: 0; }
.pricing-exclusion {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-exclusion svg { flex-shrink: 0; color: #c8962c; margin-top: 2px; }
.pricing-exclusion strong { color: var(--text); }
.pricing-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.pricing-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 40ch;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 50ch;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.t-track {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1rem;
  padding-inline: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}
@media (max-width: 1299px) {
  .t-track { justify-content: flex-start; }
}
.t-track::-webkit-scrollbar { display: none; }

.t-card {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  background: var(--off-white);
  border-radius: var(--r);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.07);
}

.t-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.t-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: 0.8rem; }
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ar-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.2;
}
.t-area { font-size: 0.78rem; color: var(--text-muted); }

.t-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.3s var(--ease);
}
.t-dot.active { background: var(--navy); width: 26px; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 110%, rgba(200,150,44,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band .heading-xl { color: var(--white); margin-bottom: 1rem; }
.cta-band .heading-xl em { font-style: normal; color: var(--gold); }
.cta-band-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.cta-band-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: #060e1a;
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 32ch;
  margin-top: 0.75rem;
}
.footer-brand .nav-logo-name { margin-bottom: 0; display: block; }
.footer-silo-link { color: var(--gold); text-decoration: none; }
.footer-silo-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer-col h5 {
  font-family: var(--font-ar-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.footer-col li + li { margin-top: 0.5rem; }
.footer-col a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer-lang a {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-lang a:hover { color: var(--white); }

/* ── Active nav link ── */
.nav-links a.active { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER  (about, contact, inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hd {
  background: var(--navy);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hd::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 108% 50%, rgba(200,150,44,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at -8% 40%,  rgba(16,60,140,0.18)  0%, transparent 60%);
  pointer-events: none;
}
.page-hd-inner { position: relative; z-index: 1; }
.page-hd .section-label        { color: rgba(200,150,44,0.75); }
.page-hd .section-label::before{ background: rgba(200,150,44,0.45); }
.page-hd h1 {
  font-family: var(--font-ar-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.page-hd h1 em { font-style: normal; color: var(--gold); }
.page-hd-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.52);
  line-height: 1.85;
  max-width: 54ch;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — STORY
   ═══════════════════════════════════════════════════════════ */
.story {
  padding: 7rem 0;
  background: var(--white);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-content .heading-xl { margin-bottom: 0; }
.story-content .heading-xl span { color: var(--gold); }
.story-lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}
.story-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-100);
}
.story-stat-num {
  font-family: var(--font-ar-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.story-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}
.story-visual { position: relative; }
.story-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.story-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: transform 0.65s var(--ease);
}
.story-visual:hover .story-img-wrap img { transform: scale(1.04); }
.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,25,41,0.88) 0%, rgba(11,25,41,0.08) 55%);
}
.story-img-badge {
  position: absolute;
  bottom: 2rem;
  inset-inline-start: 2rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-sm);
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(200,150,44,0.45);
}
.story-img-badge-num {
  font-family: var(--font-ar-display);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}
.story-img-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.2rem;
  opacity: 0.72;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — VALUES
   ═══════════════════════════════════════════════════════════ */
.values {
  padding: 6rem 0;
  background: var(--off-white);
}
.values-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.values-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1rem;
  max-width: 54ch;
  margin-inline: auto;
  line-height: 1.7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.055);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.value-card h3 {
  font-family: var(--font-ar-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — COMMITMENT QUOTE
   ═══════════════════════════════════════════════════════════ */
.commit {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.commit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 110%, rgba(200,150,44,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.commit-inner {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.commit-icon {
  margin-bottom: 2rem;
}
.commit-text {
  font-family: var(--font-ar-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  font-style: normal;
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 1.75rem;
  margin-bottom: 2.5rem;
}
.commit-author-name {
  font-family: var(--font-ar-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  padding-inline-start: 1.75rem;
}
.commit-author-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  padding-inline-start: 1.75rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT — INFO CARDS
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}
.contact-section-header {
  margin-bottom: 3rem;
}
.contact-section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 52ch;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}
.contact-card {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 2rem 2rem 2rem;
  border: 1px solid rgba(0,0,0,0.055);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.contact-card.dark {
  background: var(--navy);
  border-color: transparent;
  grid-column: span 2;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card:not(.dark) .contact-icon { background: var(--gold-pale); }
.contact-card.dark        .contact-icon { background: rgba(200,150,44,0.12); }
.contact-card-body {}
.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
html[lang="ar"] .contact-card-label { letter-spacing: 0; }
.contact-card-value {
  font-family: var(--font-ar-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.contact-card.dark .contact-card-value { color: var(--white); }
.contact-card-sub {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-card.dark .contact-card-sub { color: rgba(255,255,255,0.48); }
.contact-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.2s;
}
.contact-card-action:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════
   CONTACT — FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1rem;
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
}
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid rgba(0,0,0,0.055);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-ar-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s, background 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23c8962c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq-item summary:hover { color: var(--gold); background: rgba(200,150,44,0.03); }
.faq-item[open] > summary { color: var(--gold); }
.faq-item[open] > summary::after { transform: rotate(180deg); }
.faq-body {
  padding: 0 2rem 1.75rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — inner pages
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .story-img-wrap img { height: 360px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card.dark { grid-column: auto; }
}
@media (max-width: 768px) {
  .page-hd { padding: 8rem 0 4rem; }
  .story-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .story-img-wrap img { height: 280px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 1.25rem 1.25rem; font-size: 0.93rem; }
  .faq-body { padding: 0 1.25rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING CTAs
   ═══════════════════════════════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.float-btn:hover  { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.32); }
.float-btn:active { transform: scale(0.95); }
.float-wa   { background: var(--green); color: var(--white); }
.float-call {
  background: var(--navy);
  color: var(--gold);
  border: 1.5px solid rgba(200,150,44,0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "visual"
      "actions";
    padding-top: 6rem;
    padding-bottom: 4rem;
    row-gap: 0;
  }
  .hero-text    { padding-bottom: 1.25rem; }
  .hero-visual  { padding: 1.5rem 0; }
  .hero-actions { padding-bottom: 1.25rem; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .hero-visual-tagline { display: none; }

  .why-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-phone  { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { padding-top: 5rem; padding-bottom: 2.5rem; }
  .hero-text    { padding-bottom: 1rem; }
  .hero-visual  { padding: 0.75rem 0; }
  .hero-actions { padding-bottom: 0.75rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.85rem 1.5rem; }
  .hero-stat-num { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  .services-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .svc-card.featured { grid-row: auto; }

  .how-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-connector { display: none; }

  .why-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .why-rating-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ═══════════════════════════════════════════════════════════
   COVERAGE SCROLL — 1-row horizontal area pill strip
   ═══════════════════════════════════════════════════════════ */
.coverage-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.coverage-scroll:active { cursor: grabbing; }
.coverage-scroll::-webkit-scrollbar { height: 4px; }
.coverage-scroll::-webkit-scrollbar-track { background: var(--gray-300); border-radius: 2px; }
.coverage-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.coverage-scroll .area-chip { flex-shrink: 0; scroll-snap-align: start; }

/* ═══════════════════════════════════════════════════════════
   COMBO PAGES — area × service landing pages
   ═══════════════════════════════════════════════════════════ */

/* Combo page nav — always dark since hero is not full-viewport at top */
.combo-page .nav {
  background: rgba(11, 25, 41, 0.95);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
  padding: 0.6rem 0;
  font-size: 0.82rem;
  margin-top: 64px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  flex-wrap: wrap;
  color: var(--text-muted);
}
.breadcrumb-list a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list [aria-current] { color: var(--text); font-weight: 600; }

/* Local body section */
.combo-local { padding: 6rem 0; }
.combo-local-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}
.combo-local-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0.5rem 0 1.25rem; color: var(--navy); }
.combo-local-body { font-size: 1.05rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 1rem; }
.silo-link { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }
.text-link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--navy); }

.combo-insight-block {
  background: var(--gray-100);
  border-right: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
[dir="ltr"] .combo-insight-block { border-right: none; border-left: 3px solid var(--gold); border-radius: 8px 0 0 8px; }
.combo-insight-block h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.combo-insight-block p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

.combo-insight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.combo-insight-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 1rem;
}
.combo-insight-item svg { flex-shrink: 0; margin-top: 2px; }
.combo-insight-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.combo-insight-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.combo-tip {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(200,150,44,0.06);
  border: 1px solid rgba(200,150,44,0.25);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.combo-tip svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.combo-tip p { font-size: 0.88rem; color: var(--text); line-height: 1.7; margin: 0; }

.combo-local-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

/* Service detail section */
.combo-detail { padding: 5rem 0; background: var(--gray-100); }
.combo-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.combo-detail-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy); margin: 0.5rem 0 1.25rem; }
.combo-detail-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.combo-detail-list h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.detail-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.detail-list li svg { flex-shrink: 0; margin-top: 3px; }

/* Problems section */
.combo-problems { padding: 5rem 0; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.problem-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(200,150,44,0.08); }
.problem-icon { color: var(--gold); margin-bottom: 1rem; }
.problem-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* FAQs section */
.combo-faqs { padding: 5rem 0; background: var(--gray-100); }
.faq-accordion { margin-top: 3rem; max-width: 800px; margin-inline: auto; }

/* Nearby areas section */
.nearby { padding: 5rem 0; }
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.nearby-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.nearby-card:hover { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.nearby-card svg { flex-shrink: 0; opacity: 0.5; }
.nearby-card:hover svg { opacity: 1; }
.nearby-name { flex: 1; }

/* Responsive — combo pages */
@media (max-width: 1024px) {
  .combo-local-inner { grid-template-columns: 1fr; gap: 3rem; }
  .combo-local-img img { height: 320px; }
  .combo-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .problems-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .combo-local { padding: 4rem 0; }
  .combo-insight-row { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
