/* ============================================================
   AKOUD REAL ESTATE — clone stylesheet
   Palette: ink #0f1216 · cream #fbf9f5 · sand #f3ede2 · gold #c9a26b
   Type: Cormorant Garamond (display) · Inter (body) · IBM Plex Sans Arabic (AR)
   ============================================================ */

:root {
  --ink: #0f1216;
  --ink-700: #1e242c;
  --ink-500: #444c57;
  --cream: #fbf9f5;
  --sand: #f3ede2;
  --line: #e7dfd2;
  --line-dark: #2a313a;
  --gold: #c9a26b;
  --gold-soft: #e2cca8;
  --gold-deep: #a3773f;
  --muted: #6d6961;
  --muted-dark: #9a958c;
  --wa: #25d366;
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-arabic: "IBM Plex Sans Arabic", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 72rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[dir="rtl"] body, [dir="rtl"] { font-family: var(--font-arabic); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1.2rem; border-radius: 2px; font-size: 0.85rem;
}
.skip-link:focus { top: 1rem; }

/* ---------- layout helpers ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 5rem; }
@media (min-width: 640px) { .section { padding-block: 7rem; } }

.bg-ink { background: var(--ink); color: var(--cream); }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 1.25rem;
}
[dir="rtl"] .eyebrow { letter-spacing: 0.04em; }
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--gold); }
.bg-ink .eyebrow { color: var(--gold); }

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
[dir="rtl"] .h2 { font-family: var(--font-arabic); font-weight: 600; letter-spacing: 0; }

.lede { color: var(--muted); font-size: 1.05rem; max-width: 56ch; margin-top: 1.25rem; }
.bg-ink .lede { color: var(--muted-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  border: 1px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline-light { border-color: rgba(251, 249, 245, 0.35); color: var(--cream); }
.btn-outline-light:hover { border-color: var(--cream); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }
.btn-wa { background: var(--wa); color: #06251a; }
.btn-wa:hover { filter: brightness(1.08); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(15, 18, 22, 0.55), transparent);
  transition: background-color 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
}
.site-header .container {
  display: flex; align-items: center; gap: 1.5rem;
  height: 4.5rem;
}
.site-header.scrolled {
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.brand { display: flex; align-items: center; gap: 0.65rem; margin-inline-end: auto; }
.brand img { width: 2rem; height: 2rem; object-fit: contain; }
.brand span {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.14em;
  color: var(--cream); font-weight: 600;
  transition: color 0.5s;
}
.site-header.scrolled .brand span { color: var(--ink); }
[dir="rtl"] .brand span { font-family: var(--font-arabic); letter-spacing: 0.02em; font-weight: 700; }

.main-nav { display: none; align-items: center; gap: 1.75rem; }
.main-nav a {
  color: rgba(255, 255, 255, 0.85); font-size: 0.86rem; font-weight: 500;
  transition: color 0.25s; position: relative; padding-block: 0.25rem;
}
.main-nav a:hover { color: var(--cream); }
.main-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -0.35rem; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease-out);
}
.main-nav a:hover::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--ink-500); }
.site-header.scrolled .main-nav a:hover { color: var(--ink); }
@media (min-width: 1024px) { .main-nav { display: flex; } }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang-link {
  color: var(--gold); font-size: 0.86rem; font-weight: 600;
  border: 1px solid rgba(201, 162, 107, 0.4); border-radius: 2px;
  padding: 0.35rem 0.75rem; transition: background 0.25s, color 0.25s;
}
.lang-link:hover { background: var(--gold); color: var(--ink); }
.header-phone { display: none; color: var(--cream); font-size: 0.86rem; font-weight: 600; direction: ltr; transition: color 0.5s; }
@media (min-width: 768px) { .header-phone { display: inline; } }
.header-phone:hover { color: var(--gold); }
.site-header.scrolled .header-phone { color: var(--ink); }
.site-header.scrolled .header-phone:hover { color: var(--gold-deep); }
.header-wa { display: none; padding: 0.5rem 1rem; font-size: 0.82rem; }
@media (min-width: 1024px) { .header-wa { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 0.5rem;
  border-radius: 999px; transition: background 0.25s;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.site-header.scrolled .nav-toggle:hover { background: rgba(15, 18, 22, 0.05); }
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); transition: transform 0.3s, opacity 0.3s, background 0.5s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed; inset-inline: 0; top: 4.5rem; z-index: 99;
  background: var(--ink); border-bottom: 1px solid var(--line-dark);
  padding: 1rem 1.25rem 1.75rem; display: none; flex-direction: column; gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--cream); padding: 0.8rem 0.25rem; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: hero-drift 26s var(--ease-out) forwards; }
@keyframes hero-drift {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.13) translateY(-1.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(15, 18, 22, 0.95) 0%, rgba(15, 18, 22, 0.55) 45%, rgba(15, 18, 22, 0.25) 100%);
}
.hero-inner { width: 100%; padding-bottom: 3rem; padding-top: 9rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-bottom: 1.5rem;
}
[dir="rtl"] .hero-eyebrow { letter-spacing: 0.03em; }
.hero-eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.9rem, 7.5vw, 5.5rem); line-height: 1.02;
  color: var(--cream); max-width: 12ch; letter-spacing: -0.015em;
}
[dir="rtl"] .hero h1 { font-family: var(--font-arabic); font-weight: 600; letter-spacing: 0; max-width: 14ch; }
.hero p { color: rgba(251, 249, 245, 0.82); max-width: 52ch; margin-top: 1.5rem; font-size: 1.05rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.25rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem;
  margin-top: 3.5rem; padding-block: 1.75rem;
  border-top: 1px solid rgba(251, 249, 245, 0.18);
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--gold-soft); line-height: 1.1;
}
[dir="rtl"] .hero-stat b { font-family: var(--font-arabic); font-weight: 600; }
.hero-stat span { font-size: 0.78rem; color: var(--muted-dark); letter-spacing: 0.06em; text-transform: uppercase; }
[dir="rtl"] .hero-stat span { letter-spacing: 0; }

/* ---------- value props ---------- */
.value-grid { display: grid; gap: 2.5rem; margin-top: 3.5rem; }
@media (min-width: 900px) { .value-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.value-item { border-top: 1px solid var(--line); padding-top: 1.75rem; }
.bg-ink .value-item { border-top-color: var(--line-dark); }
.value-num {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-deep);
  letter-spacing: 0.1em; display: block; margin-bottom: 1rem;
}
.bg-ink .value-num { color: var(--gold); }
.value-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; line-height: 1.2; }
[dir="rtl"] .value-item h3 { font-family: var(--font-arabic); }
.value-item p { color: var(--muted); margin-top: 0.75rem; font-size: 0.95rem; }
.bg-ink .value-item p { color: var(--muted-dark); }

.direct-line {
  margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; border: 1px solid var(--line); padding: 1.25rem 1.5rem; border-radius: 2px;
}
.direct-line span { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.direct-line a { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); direction: ltr; }
.direct-line a:hover { color: var(--gold-deep); }

/* ---------- split feature (working together) ---------- */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1.1fr; gap: 5rem; } }
.split-media { position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--sand); }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.split-media:hover img { transform: scale(1.04); }
.split-body > p { color: var(--muted); margin-top: 1.5rem; }
.fit-cards { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--line); }
.fit-card { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.fit-card h4 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 0.7rem;
}
[dir="rtl"] .fit-card h4 { font-family: var(--font-arabic); }
.fit-card h4 svg { color: var(--gold-deep); flex: none; }
.fit-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- numbers ---------- */
.numbers-grid { display: grid; gap: 0; margin-top: 3.5rem; border-top: 1px solid var(--line-dark); }
@media (min-width: 768px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .numbers-grid { grid-template-columns: repeat(3, 1fr); } }
.number-cell { padding: 2rem 1.5rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 768px) {
  .number-cell:nth-child(odd) { border-inline-end: 1px solid var(--line-dark); }
}
@media (min-width: 1024px) {
  .number-cell:nth-child(odd) { border-inline-end: 1px solid var(--line-dark); }
  .number-cell:nth-child(3n) { border-inline-end: 0; }
  .number-cell:nth-child(n+4) { border-bottom: 0; padding-bottom: 0; }
}
.number-cell:nth-last-child(-n+2) { border-bottom: 0; }
@media (min-width: 1024px) { .number-cell:nth-last-child(-n+2) { border-bottom: 0; } }
.number-cell b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--gold-soft); line-height: 1.1; direction: ltr; text-align: start;
}
[dir="rtl"] .number-cell b { font-family: var(--font-arabic); font-weight: 600; }
.number-cell h4 { font-size: 0.95rem; font-weight: 600; margin-top: 0.6rem; color: var(--cream); }
.number-cell p { color: var(--muted-dark); font-size: 0.88rem; margin-top: 0.35rem; }
.numbers-note {
  margin-top: 3rem; padding: 1.25rem 1.5rem; border: 1px solid var(--line-dark);
  border-radius: 2px; color: var(--muted-dark); font-size: 0.9rem; max-width: 62ch;
}

/* ---------- areas ---------- */
.areas-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card { position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sand); display: block; }
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.area-card:hover img { transform: scale(1.05); }
.area-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 18, 22, 0.82) 0%, rgba(15, 18, 22, 0.15) 55%, transparent 100%);
}
.area-card figcaption { position: absolute; inset-inline: 0; bottom: 0; z-index: 1; padding: 1.4rem; }
.area-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: var(--cream); }
[dir="rtl"] .area-card h3 { font-family: var(--font-arabic); }
.area-card p { color: rgba(251, 249, 245, 0.78); font-size: 0.86rem; margin-top: 0.3rem; max-width: 34ch; }
.areas-more {
  margin-top: 2.5rem; color: var(--muted); font-size: 0.95rem; max-width: 68ch;
  border-inline-start: 2px solid var(--gold); padding-inline-start: 1.25rem;
}

/* ---------- process ---------- */
.steps { margin-top: 3.5rem; display: grid; gap: 0; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: 1.9rem 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-display); font-size: 1rem; color: var(--gold-deep);
  letter-spacing: 0.08em; padding-top: 0.3rem; min-width: 2.2rem;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; line-height: 1.25; }
[dir="rtl"] .step h3 { font-family: var(--font-arabic); }
.step p { color: var(--muted); margin-top: 0.5rem; font-size: 0.95rem; max-width: 58ch; }
.process-note { margin-top: 2.5rem; font-size: 0.92rem; color: var(--muted); }

/* ---------- mortgages band ---------- */
.mortgage-band { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .mortgage-band { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.mortgage-media { border-radius: 2px; overflow: hidden; aspect-ratio: 5 / 4; background: var(--ink-700); }
.mortgage-media img { width: 100%; height: 100%; object-fit: cover; }
.mortgage-body p { color: var(--muted); margin-top: 1.5rem; max-width: 54ch; }
.mortgage-body .btn { margin-top: 2rem; }

/* ---------- consultation ---------- */
.consultation { position: relative; isolation: isolate; overflow: hidden; }
.consultation-bg { position: absolute; inset: 0; z-index: -1; }
.consultation-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.consult-grid { display: grid; gap: 3.5rem; }
/* On mobile the form comes first, the photo/text column after */
@media (max-width: 1023px) {
  .consult-grid > div:first-child { order: 2; }
  .consult-grid > div:last-child { order: 1; }
}
@media (min-width: 1024px) { .consult-grid { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; } }
.consult-media { position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-700); }
.consult-media img { width: 100%; height: 100%; object-fit: cover; }
.consult-perks { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(15,18,22,0.9), transparent); }
.consult-perks li { color: var(--cream); font-size: 0.9rem; padding-block: 0.35rem; display: flex; align-items: center; gap: 0.6rem; }
.consult-perks li::before { content: "—"; color: var(--gold); }

.consult-form {
  position: relative; display: grid; gap: 1.25rem; margin-top: 2.5rem;
  background: var(--cream); border-radius: 2px; padding: 1.5rem; color: var(--ink);
}
@media (min-width: 640px) { .consult-form { padding: 2.25rem; } }
.hp { position: absolute; left: -9999px; width: 0; height: 0; overflow: hidden; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.8125rem; font-weight: 500; color: var(--ink-500); }
.field input, .field textarea {
  margin-top: 0.5rem; width: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: 2px;
  padding: 0.75rem 1rem; color: var(--ink); font-size: 0.875rem;
  transition: border-color 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(109, 105, 97, 0.6); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 5rem; }
.opt-label-note { font-weight: 400; color: var(--muted); }

.phone-group {
  margin-top: 0.5rem; display: flex; overflow: hidden;
  border: 1px solid var(--line); background: #fff; border-radius: 2px;
  transition: border-color 0.25s;
}
.phone-group:focus-within { border-color: var(--gold); }
.phone-group select {
  width: 7.5rem; flex: none; border: 0; border-inline-end: 1px solid var(--line);
  background: var(--sand); padding: 0.75rem 0.5rem; font-size: 0.875rem; color: var(--ink);
  outline: none; cursor: pointer;
}
.phone-group input {
  flex: 1; min-width: 0; margin-top: 0; border: 0; background: transparent;
  padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--ink); outline: none;
}
.phone-hint { margin-top: 0.375rem; font-size: 0.75rem; color: var(--muted); }

.choice-group { border: 0; padding: 0; }
.choice-group legend { font-size: 0.8125rem; font-weight: 500; color: var(--ink-500); padding: 0; }
.opts { margin-top: 0.75rem; display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .opts.two { grid-template-columns: 1fr 1fr; } }
.opt {
  display: flex; align-items: center; gap: 0.75rem; cursor: pointer;
  border: 1px solid var(--line); background: #fff; border-radius: 2px;
  padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--ink);
  transition: border-color 0.25s, background 0.25s; user-select: none;
}
.opt:hover { border-color: rgba(201, 162, 107, 0.6); }
.opt:has(:checked) { border-color: var(--gold); background: rgba(201, 162, 107, 0.1); }
.opt input { width: 1rem; height: 1rem; flex: none; margin: 0; accent-color: var(--gold-deep); cursor: pointer; }

.btn-submit {
  width: 100%; background: var(--ink); color: var(--cream);
  padding: 1rem 2rem; font-size: 0.875rem;
}
.btn-submit:hover { background: var(--ink-700); transform: none; }
.btn-submit svg { transition: transform 0.3s var(--ease-out); }
.btn-submit:hover svg { transform: translateX(4px); }
[dir="rtl"] .btn-submit svg { transform: scaleX(-1); }
[dir="rtl"] .btn-submit:hover svg { transform: scaleX(-1) translateX(4px); }
@media (min-width: 640px) { .btn-submit { width: auto; justify-self: start; } }

.form-privacy { font-size: 0.75rem; line-height: 1.6; color: var(--muted); }
.form-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--ink-500);
  transition: color 0.25s;
}
.form-wa:hover { color: var(--gold-deep); }
.form-wa svg { flex: none; }
.form-success {
  display: none; padding: 1rem 1.25rem; border: 1px solid var(--gold); border-radius: 2px;
  background: rgba(201, 162, 107, 0.12); color: var(--ink); font-size: 0.875rem;
}
.form-success.show { display: block; }
.form-error {
  display: none; padding: 1rem 1.25rem; border: 1px solid #c0392b; border-radius: 2px;
  background: rgba(192, 57, 43, 0.08); color: #922b21; font-size: 0.875rem;
}
.form-error.show { display: block; }
.form-error a { color: #922b21; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .faq-wrap { grid-template-columns: 0.8fr 1.2fr; gap: 5rem; align-items: start; } }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0.25rem; text-align: start;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink);
  transition: color 0.25s;
}
[dir="rtl"] .faq-q { font-family: var(--font-arabic); }
.faq-q:hover { color: var(--gold-deep); }
.faq-icon { flex: none; width: 1.1rem; height: 1.1rem; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold-deep); transition: transform 0.35s var(--ease-out);
}
.faq-icon::before { inset-inline: 0; top: 50%; height: 1.5px; margin-top: -0.75px; }
.faq-icon::after { inset-block: 0; left: 50%; width: 1.5px; margin-left: -0.75px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-item.open .faq-q { color: var(--gold-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-a p { color: var(--muted); padding: 0 0.25rem 1.5rem; max-width: 62ch; font-size: 0.95rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  border: 1px solid var(--line); border-radius: 2px; padding: 2rem 1.75rem;
  background: var(--cream); display: flex; flex-direction: column; gap: 0.4rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(15, 18, 22, 0.25); }
.contact-card h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.65rem;
}
[dir="rtl"] .contact-card h3 { font-family: var(--font-arabic); }
.contact-card h3 svg { color: var(--gold-deep); }
.contact-card > p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.contact-card > a { margin-top: 1.25rem; font-weight: 600; color: var(--ink); font-size: 1.05rem; direction: ltr; text-align: start; }
.contact-card > a:hover { color: var(--gold-deep); }
.contact-card .btn { margin-top: 1.25rem; align-self: flex-start; }
.contact-note { margin-top: 2.5rem; color: var(--muted); font-size: 0.92rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-dark); padding-block: 4rem 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.1rem; }
.footer-brand img { width: 2rem; height: 2rem; }
.footer-brand span { font-family: var(--font-display); color: var(--cream); letter-spacing: 0.14em; font-size: 1.05rem; font-weight: 600; }
[dir="rtl"] .footer-brand span { font-family: var(--font-arabic); letter-spacing: 0.02em; }
.footer-desc { font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 {
  color: var(--cream); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 1.1rem; font-weight: 600;
}
[dir="rtl"] .footer-col h4 { letter-spacing: 0.03em; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
/* Phone numbers must always read left-to-right, even on the RTL page */
.footer-phone { direction: ltr; unicode-bidi: embed; }
.footer-legal {
  margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 1rem;
}
.footer-legal p { font-size: 0.78rem; max-width: 88ch; }
.footer-legal .copy { font-size: 0.85rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 1.5rem; inset-inline-end: 1.5rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--wa); color: #06251a; font-weight: 700; font-size: 0.88rem;
  padding: 0.85rem 1.3rem; border-radius: 999px;
  box-shadow: 0 12px 32px -10px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.7); }
.wa-float svg { flex: none; }

/* ---------- reveal animation ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
