/* ============================================================
   ALMISNED — Design System
   Palette: ink / deep teal / brass / warm sand
   Signature motif: Najdi triangular frieze (سعف/مثلثات نجدية)
   ============================================================ */

:root {
  --ink: #12211D;
  --ink-soft: #1B2E27;
  --teal-deep: #1E4A43;
  --teal-mid: #2C635A;
  --brass: #AE8A53;
  --brass-light: #D9BE8F;
  --brass-pale: #EFE3CB;
  --sand: #F1ECE1;
  --sand-deep: #E7DFCE;
  --white: #FFFFFF;
  --paper: #FBF9F5;
  --text: #1A241F;
  --text-muted: #5B6A61;
  --text-on-dark: #F3EFE4;
  --text-on-dark-muted: #AFC0B7;
  --line: rgba(18, 33, 29, 0.12);
  --line-on-dark: rgba(243, 239, 228, 0.16);

  --shadow-sm: 0 2px 10px rgba(18, 33, 29, 0.06);
  --shadow-md: 0 12px 32px rgba(18, 33, 29, 0.10);
  --shadow-lg: 0 24px 64px rgba(18, 33, 29, 0.16);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --container: 1240px;
  --container-narrow: 820px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: 0.6s;
}

/* ---------- Fonts ---------- */
@font-face { font-display: swap; }

:root {
  --font-ar-display: 'Aref Ruqaa', serif;
  --font-ar-body: 'Tajawal', sans-serif;
  --font-en-display: 'Fraunces', serif;
  --font-en-body: 'Inter', sans-serif;
}

html[lang="ar"] { --font-display: var(--font-ar-display); --font-body: var(--font-ar-body); }
html[lang="en"] { --font-display: var(--font-en-display); --font-body: var(--font-en-body); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.18;
  font-weight: 700;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { font-weight: 400; }

p { margin: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.container--narrow { max-width: var(--container-narrow); }

section { position: relative; }
.section-pad { padding-block: 108px; }
@media (max-width: 900px) { .section-pad { padding-block: 72px; } }

/* ---------- Focus & a11y ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; inset-inline-start: 12px; top: -60px;
  background: var(--ink); color: var(--text-on-dark);
  padding: 10px 18px; border-radius: var(--radius-sm); z-index: 999;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en-body), var(--font-body);
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); font-weight: 600;
  margin-bottom: 18px;
}
html[lang="ar"] .eyebrow { letter-spacing: 0; font-family: var(--font-body); font-size: 14px; }
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--brass); display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head .lede { margin-top: 16px; color: var(--text-muted); font-size: 17px; }

/* ============================================================
   NAJDI FRIEZE — signature triangular motif
   ============================================================ */
.frieze {
  height: 14px;
  width: 100%;
  background-image:
    linear-gradient(135deg, var(--brass) 25%, transparent 25.5%),
    linear-gradient(-135deg, var(--brass) 25%, transparent 25.5%);
  background-size: 28px 28px;
  background-position: 0 0, 0 0;
  background-repeat: repeat-x;
}
.frieze--dark {
  background-image:
    linear-gradient(135deg, var(--ink) 25%, transparent 25.5%),
    linear-gradient(-135deg, var(--ink) 25%, transparent 25.5%);
}
.frieze--sm { height: 9px; background-size: 18px 18px; }

.frieze-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--brass); margin-block: 8px 0;
}
.frieze-divider .tri-row { display: flex; gap: 3px; }
.frieze-divider .tri {
  width: 0; height: 0;
  border-inline: 6px solid transparent;
  border-bottom: 10px solid var(--brass);
}
.frieze-divider .tri:nth-child(even) { transform: rotate(180deg); margin-top: 2px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 245, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav-row { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.brand img { height: 44px; width: auto; border-radius: 4px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.brand-text strong { font-family: var(--font-display); font-size: 16.5px; color: var(--ink); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
html[lang="ar"] .brand-text strong { font-weight: 400; font-size: 19px; }
.brand-text span { font-size: 11px; color: var(--text-muted); letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--text);
  position: relative; padding-block: 6px;
}
html[lang="ar"] .main-nav a { font-weight: 500; }
.main-nav a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: 0;
  width: 0; height: 2px; background: var(--brass);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--teal-deep); }

.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.lang-switch {
  font-size: 13px; font-weight: 700; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px; color: var(--ink);
  transition: border-color .25s, background .25s;
}
.lang-switch:hover { border-color: var(--brass); background: var(--brass-pale); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-size: 14.5px; font-weight: 700;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn-primary { background: var(--ink); color: var(--text-on-dark); }
.btn-primary:hover { background: var(--teal-deep); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--brass); background: var(--brass-pale); }
.btn-outline-light { border-color: var(--line-on-dark); color: var(--text-on-dark); background: transparent; }
.btn-outline-light:hover { border-color: var(--brass-light); background: rgba(255,255,255,0.06); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
@media (max-width: 420px) {
  .btn { white-space: normal; text-align: center; }
}

.menu-toggle {
  display: none; background: none; border: none; padding: 8px; color: var(--ink);
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset-inline: 0; top: 76px; bottom: 0; height: calc(100vh - 76px); height: calc(100dvh - 76px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 32px 28px; gap: 6px; transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: all .3s var(--ease); overflow-y: auto; border-top: 1px solid var(--line); z-index: 90;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { width: 100%; padding: 14px 4px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 18px; width: 100%; }
  .main-nav .nav-cta .btn { width: 100%; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn-brass.desktop-only { display: none; }
  .nav-row { padding-block: 12px; }
  .brand-text { max-width: 150px; }
  .lang-switch { padding: 6px 12px; font-size: 12px; }
}
@media (max-width: 380px) {
  .brand-text { display: none; }
}
.desktop-only { display: inline-flex; }
@media (max-width: 980px) { .desktop-only.hide-mobile { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: flex-end;
  background: var(--ink); color: var(--text-on-dark); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,33,29,.55) 0%, rgba(18,33,29,.35) 38%, rgba(18,33,29,.94) 100%);
}
.hero-content { position: relative; z-index: 2; padding-block: 120px 64px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--brass-light);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 26px; opacity: 0; animation: rise .8s var(--ease) .1s forwards;
}
html[lang="ar"] .hero-eyebrow { letter-spacing: 0; font-size: 15px; }
.hero-eyebrow::before { content: ""; width: 30px; height: 1.5px; background: var(--brass-light); }
.hero h1 {
  font-size: clamp(38px, 6vw, 72px); color: var(--white); max-width: 15ch;
  opacity: 0; animation: rise .9s var(--ease) .22s forwards;
}
.hero .lede {
  margin-top: 24px; max-width: 46ch; font-size: 18px; color: var(--text-on-dark-muted);
  opacity: 0; animation: rise .9s var(--ease) .36s forwards;
}
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
  opacity: 0; animation: rise .9s var(--ease) .5s forwards; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-frieze { position: relative; z-index: 2; }

/* small page hero (interior pages) */
.page-hero {
  background: var(--ink); color: var(--text-on-dark); padding-block: 150px 70px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset-inline-end: -8%; top: -30%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(174,138,83,.22), transparent 68%);
}
.page-hero .eyebrow { color: var(--brass-light); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); max-width: 20ch; }
.page-hero .lede { margin-top: 18px; max-width: 56ch; color: var(--text-on-dark-muted); font-size: 17px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-on-dark-muted); margin-bottom: 22px; }
.breadcrumbs a:hover { color: var(--brass-light); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 76px; align-items: center; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 44px; } }
.about-split.reverse { grid-template-columns: 1.05fr 1fr; }
@media (max-width: 900px) { .about-split.reverse { grid-template-columns: 1fr; } }
.about-split.reverse .about-media { order: -1; }
@media (min-width: 901px) { .about-split.reverse .about-media { order: 2; } }

.about-media { position: relative; }
.about-media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.about-media .frame:hover img { transform: scale(1.04); }
.about-media .corner-tri {
  position: absolute; bottom: -22px; inset-inline-start: -22px; width: 130px; height: 130px;
  background: var(--brass); z-index: -1; border-radius: var(--radius-md);
}

.about-copy p + p { margin-top: 18px; }
.about-copy .lede-line { font-family: var(--font-display); font-size: clamp(21px, 2.4vw, 27px); color: var(--ink); font-weight: 700; margin-bottom: 20px; line-height: 1.4; }
html[lang="ar"] .about-copy .lede-line { font-weight: 400; }
.about-copy p { color: var(--text-muted); font-size: 16px; }

.strength-list { margin-top: 34px; display: grid; gap: 16px; }
.strength-item { display: flex; gap: 14px; align-items: flex-start; }
.strength-item .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--brass-pale); color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.strength-item .tick svg { width: 13px; height: 13px; }
.strength-item strong { display: block; color: var(--ink); font-size: 15.5px; margin-bottom: 2px; }
.strength-item span.desc { color: var(--text-muted); font-size: 14.5px; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 820px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: box-shadow .4s var(--ease), transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card .thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .num {
  position: absolute; top: 16px; inset-inline-start: 16px; background: rgba(18,33,29,.72);
  backdrop-filter: blur(6px); color: var(--brass-light); font-size: 12.5px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; letter-spacing: .06em;
}
.service-card .body { padding: 32px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 23px; margin-bottom: 14px; }
.service-card p { color: var(--text-muted); font-size: 15px; flex: 1; }
.service-card .more {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px;
  color: var(--teal-deep);
}
.service-card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
html[dir="rtl"] .service-card .more svg { transform: scaleX(-1); }
.service-card:hover .more svg { transform: translateX(4px); }
html[dir="rtl"] .service-card:hover .more svg { transform: scaleX(-1) translateX(4px); }

/* service detail page */
.service-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
@media (max-width: 940px) { .service-detail-grid { grid-template-columns: 1fr; } }
.includes-list { display: grid; gap: 14px; margin-top: 8px; }
.includes-list li { display: flex; gap: 12px; padding: 16px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); font-size: 15px; }
.includes-list li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); margin-top: 7px; flex-shrink: 0; }
.side-card { background: var(--ink); color: var(--text-on-dark); border-radius: var(--radius-lg); padding: 36px 32px; position: sticky; top: 110px; }
.side-card h4 { color: var(--white); font-size: 19px; margin-bottom: 14px; }
.side-card p { color: var(--text-on-dark-muted); font-size: 14.5px; margin-bottom: 24px; }
.side-card .btn { width: 100%; }
.side-card .contact-mini { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-on-dark); display: grid; gap: 12px; }
.side-card .contact-mini a { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--text-on-dark); }
.side-card .contact-mini svg { width: 17px; height: 17px; color: var(--brass-light); flex-shrink: 0; }

/* ============================================================
   WHY / STRENGTHS (standalone section variant)
   ============================================================ */
.why-band { background: var(--ink); color: var(--text-on-dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-on-dark); border: 1px solid var(--line-on-dark); border-radius: var(--radius-lg); overflow: hidden; margin-top: 8px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { background: var(--ink-soft); padding: 38px 30px; }
.why-item .ic { width: 44px; height: 44px; color: var(--brass-light); margin-bottom: 20px; }
.why-item .ic svg { width: 100%; height: 100%; }
.why-item h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.why-item p { color: var(--text-on-dark-muted); font-size: 14.5px; }
.why-band .section-head h2 { color: var(--white); }
.why-band .section-head .lede { color: var(--text-on-dark-muted); }
.why-band .eyebrow { color: var(--brass-light); }

/* ============================================================
   PARTNERS / CLIENTS
   ============================================================ */
.partners-strip { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; justify-content: center; }
.partners-strip img {
  height: 52px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(1) opacity(.72);
  transition: filter .35s var(--ease), transform .35s var(--ease);
}
.partners-strip img:hover { filter: grayscale(0) opacity(1); transform: translateY(-3px); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, var(--teal-deep) 100%);
  color: var(--text-on-dark); border-radius: var(--radius-lg); overflow: hidden; position: relative;
  padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band::after {
  content: ""; position: absolute; inset-inline-end: -60px; bottom: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(217,189,143,.25), transparent 70%);
}
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); max-width: 22ch; position: relative; }
.cta-band p { color: var(--text-on-dark-muted); margin-top: 10px; max-width: 44ch; position: relative; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 42px; width: auto; border-radius: 4px; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 17px; }
html[lang="ar"] .footer-brand strong { font-weight: 400; font-size: 19px; }
.site-footer .desc { font-size: 14.5px; line-height: 1.8; max-width: 34ch; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 14.5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
html[lang="ar"] .site-footer h4 { letter-spacing: 0; text-transform: none; font-size: 16px; }
.site-footer .flinks { display: grid; gap: 13px; }
.site-footer .flinks a { font-size: 14.5px; transition: color .25s; }
.site-footer .flinks a:hover { color: var(--brass-light); }
.footer-contact { display: grid; gap: 14px; }
.footer-contact a, .footer-contact .item { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--brass-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--brass-light); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-on-dark);
  display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease);
}
.footer-social a:hover { border-color: var(--brass-light); background: rgba(217,189,143,.1); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark); padding-block: 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px;
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom .legal-links a:hover { color: var(--brass-light); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--teal-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); background: var(--ink); }
.wa-fab svg { width: 27px; height: 27px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { display: grid; gap: 16px; margin-bottom: 36px; }
.contact-card .row { display: flex; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); align-items: flex-start; transition: border-color .3s, box-shadow .3s; }
.contact-card .row:hover { border-color: var(--brass); box-shadow: var(--shadow-sm); }
.contact-card .row .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--brass-pale); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .row .ic svg { width: 19px; height: 19px; }
.contact-card .row strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.contact-card .row span, .contact-card .row a.value { font-size: 14.5px; color: var(--text-muted); direction: ltr; unicode-bidi: isolate; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 16/10; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--text); font-size: 15px; transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brass); background: var(--white); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg { color: #A6432F; font-size: 12.5px; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #A6432F; }
.field.has-error .error-msg { display: block; }
.form-status { margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #E4EFE8; color: #205C3F; }
.form-status.err { background: #F6E4E0; color: #8A3423; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; }

/* ============================================================
   MISC PAGE ELEMENTS
   ============================================================ */
.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: var(--text-on-dark); }
.bg-white { background: var(--white); }

.text-center { text-align: center; }
.stack { display: grid; gap: 16px; }
.simple-page .container--narrow p + p,
.simple-page .container--narrow ul { margin-top: 16px; }
.simple-page h2 { margin-top: 44px; margin-bottom: 14px; font-size: 24px; }
.simple-page ul { padding-inline-start: 22px; list-style: disc; color: var(--text-muted); }
.simple-page ul li + li { margin-top: 8px; }
.simple-page p { color: var(--text-muted); }
.updated-note { color: var(--text-muted); font-size: 13.5px; margin-top: 10px; }

.value-quote {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); color: var(--ink);
  line-height: 1.5; max-width: 26ch; margin-inline: auto; position: relative; padding-top: 26px;
}
html[lang="ar"] .value-quote { font-weight: 400; }
.value-quote::before {
  content: ""; position: absolute; top: 0; inset-inline-start: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-inline: 9px solid transparent; border-bottom: 15px solid var(--brass);
}
html[dir="rtl"] .value-quote::before { transform: translateX(50%); }

.approach-list { counter-reset: step; display: grid; gap: 0; margin-top: 8px; }
.approach-item { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding-block: 26px; border-top: 1px solid var(--line); }
.approach-item:last-child { border-bottom: 1px solid var(--line); }
.approach-item .step-no { font-family: var(--font-display); font-size: 30px; color: var(--brass); }
.approach-item h3 { font-size: 18px; margin-bottom: 8px; }
.approach-item p { color: var(--text-muted); font-size: 15px; max-width: 62ch; }
