/* mustashar-alqanoni.sa — site stylesheet */
/* extracted from inline <style> blocks for caching benefit */
/* ═══════════════════════════════════════════════════════════
   CONCEPT 1 — AUTHORITY & CLASSICAL
   Deep navy, gold leaf, serif display, hairline rules.
   Replaces the prior modern card-grid stylesheet. Same class
   names preserved for both naming conventions (Arabic + English).
   ═══════════════════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  /* Brand palette */
  --navy:#0a1928;
  --navy-dark:#050f1c;
  --navy-mid:#13243d;
  --navy-deep:#0a1928;
  --gold:#c8972a;
  --gold-light:#d4af37;
  --gold-pale:#e8d4a0;
  --gold-soft:#f5e9c8;
  --white:#ffffff;
  --off-white:#f6f1e7;        /* parchment */
  --cream:#faf6ec;
  --gray:#8a9ab5;
  --gray-light:#e8e2d3;
  --text:#1a1a1a;
  --text-muted:#5c5c5c;
  --text-soft:#8a8a8a;
  --border:#d8d0bd;            /* warm hairline */
  --border-strong:#b8a87e;
  --rule-gold:rgba(200,151,42,0.4);

  /* Type */
  --font-ar:'Cairo','Noto Kufi Arabic','Noto Naskh Arabic','Amiri',sans-serif;
  --font-ar-display:'Amiri','Noto Naskh Arabic','Cairo',serif;
  --font-en:'Playfair Display','Lora','Georgia',serif;
  --font-en-ui:'Inter','Helvetica Neue',sans-serif;
  --font-body:var(--font-ar);
  --font-display:var(--font-ar-display);
  --font-ui:var(--font-ar);

  /* System */
  --radius:2px;
  --radius-sm:2px;
  --radius-pill:0;
  --tr:.25s ease;
  --transition:.25s ease;
  --max-w:1180px;
  --header-h:78px;
  --hh:78px;
}

/* English pages override fonts */
html[lang="en"], body.en-page{
  --font-body:'Lora','Georgia',serif;
  --font-display:'Playfair Display','Lora','Georgia',serif;
  --font-ui:'Inter','Helvetica Neue',sans-serif;
}

html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--off-white);
  color:var(--text);
  line-height:1.85;
  overflow-x:hidden;
}
body.en-page{direction:ltr}

a{color:var(--navy);text-decoration:none;transition:color var(--tr)}
a:hover{color:var(--gold)}
img{max-width:100%;height:auto;display:block}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  line-height:1.25;
  font-weight:600;
  color:var(--navy);
  letter-spacing:-0.01em;
}
h1{font-size:clamp(2.1rem,4.5vw,3.4rem);font-weight:700}
h2{font-size:clamp(1.6rem,3.2vw,2.4rem)}
h3{font-size:clamp(1.15rem,2vw,1.4rem)}
h4{font-size:1.05rem}
p{color:var(--text-muted);margin-bottom:1em;line-height:1.85}
.lead{font-size:1.1rem;color:var(--text);line-height:1.85;font-weight:400}

/* All-caps eyebrow */
.eyebrow,.section-title .pretitle,.sec-title .pre{
  display:inline-block;
  font-family:var(--font-ui);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:18px;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container{max-width:var(--max-w);margin:0 auto;padding:0 28px}
.section{padding:96px 0}
.section-sm{padding:56px 0}
.grid-2{display:grid;grid-template-columns:2.4fr 1fr;gap:56px;align-items:start}
.grid-2.equal{grid-template-columns:1fr 1fr;gap:36px}

/* Article-column polish (Concept 1 editorial treatment for grid-2 article pages) */
.grid-2 > div:first-child > h2,
.grid-2 > div:first-child h2{
  font-size:clamp(1.5rem,2.4vw,1.95rem);
  line-height:1.25;
  margin:36px 0 14px;
  letter-spacing:-0.005em;
}
.grid-2 > div:first-child > h2:first-child,
.grid-2 > div:first-child > h2:first-of-type{margin-top:0}
.grid-2 > div:first-child p,
.grid-2 > div:first-child .lead{
  font-size:1.02rem;
  line-height:1.85;
  margin-bottom:1.05em;
}
.grid-2 > div:first-child .lead{
  font-size:1.12rem;
  color:var(--text);
}
/* Sticky CTA card refinements for the narrower column */
.grid-2 .card[style*="sticky"]{
  padding:28px 24px;
  text-align:center;
}
.grid-2 .card[style*="sticky"] h3{
  font-size:1.15rem;
  margin-bottom:14px;
}
.grid-2 .card[style*="sticky"] p{
  font-size:0.92rem;
  line-height:1.7;
}
.grid-2 .card[style*="sticky"] .btn{
  width:100%;
  justify-content:center;
}

/* Single-column article pages: center the max-width:820px column inside .container.
   Targets any <section.section> > <div.container> > <div style="...max-width:..."> pattern
   without needing to touch HTML. */
section.section > .container > div[style*="max-width"]{
  margin-left:auto;
  margin-right:auto;
}
/* Center the related-links block too when it follows a single article column */
section.section > .container > .rel-links,
section.section > .container > .related-links{
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}
/* Single-column article headings get the same editorial polish as grid-2 articles */
section.section > .container > div[style*="max-width"] > h2{
  font-size:clamp(1.5rem,2.4vw,1.95rem);
  line-height:1.25;
  margin:36px 0 14px;
  letter-spacing:-0.005em;
}
section.section > .container > div[style*="max-width"] > h2:first-of-type{margin-top:0}
section.section > .container > div[style*="max-width"] p{
  font-size:1.02rem;
  line-height:1.85;
  margin-bottom:1.05em;
}
section.section > .container > div[style*="max-width"] .lead{
  font-size:1.12rem;
  color:var(--text);
}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:0}
.grid-3.gap{gap:28px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.grid-4.gap{gap:24px}

/* ─── HEADER ─────────────────────────────────────── */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:var(--navy-dark);
  height:var(--header-h);
  display:flex;align-items:center;
  border-bottom:1px solid rgba(200,151,42,0.25);
  box-shadow:none;
}
.header-inner,.hdr{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;max-width:var(--max-w);margin:0 auto;padding:0 28px;
}
.logo{display:flex;align-items:center;gap:14px}
.logo-icon{
  width:38px;height:38px;
  background:transparent;
  border:1px solid var(--gold);
  border-radius:0;
  display:flex;align-items:center;justify-content:center;
  font-size:1.05rem;
  color:var(--gold);
  filter:grayscale(1) sepia(0.7) brightness(0.95);
}
.logo-text{color:var(--white)}
.logo-text .name{
  font-family:var(--font-display);
  font-size:1.1rem;font-weight:600;
  display:block;letter-spacing:0.04em;
  color:var(--gold-soft);
}
.logo-text .tagline,.logo-text .tag{
  font-family:var(--font-ui);
  font-size:0.62rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  opacity:0.65;display:block;
  color:rgba(245,233,200,0.7);
  white-space:nowrap;
}

.main-nav{display:flex;align-items:center;gap:2px}
.main-nav a{
  color:rgba(245,233,200,0.75);
  padding:10px 14px;
  border-radius:0;
  font-family:var(--font-ui);
  font-size:0.78rem;
  font-weight:500;
  letter-spacing:0.14em;
  text-transform:uppercase;
  transition:color var(--tr);
}
.main-nav a:hover{color:var(--gold-light);background:transparent}
.main-nav .active{color:var(--gold-light)}
.main-nav .nav-emergency{
  color:var(--gold);
  position:relative;
}
.main-nav .nav-emergency::before{
  content:'';
  display:inline-block;
  width:6px;height:6px;border-radius:50%;
  background:#c93a3a;
  margin-inline-end:8px;
  vertical-align:middle;
}
.main-nav .nav-emergency:hover{color:var(--gold-light)}

.header-cta,.hdr-cta{display:flex;align-items:center;gap:12px}
.btn-lang{
  color:var(--gold);
  border:1px solid var(--gold);
  padding:6px 14px;
  border-radius:0;
  font-family:var(--font-ui);
  font-size:0.7rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  background:transparent;
  transition:all var(--tr);
}
.btn-lang:hover{background:var(--gold);color:var(--navy-dark)}

/* Mobile nav toggle */
.nav-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:transparent;border:none}
.nav-toggle span{display:block;width:24px;height:1px;background:var(--gold);transition:all var(--tr)}

/* ─── WHATSAPP FLOAT ─────────────────────────────── */
.whatsapp-float,.wa-float{
  position:fixed;bottom:28px;
  z-index:999;
  width:54px;height:54px;
  background:#25d366;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 24px rgba(0,0,0,0.18);
  border:2px solid var(--white);
  transition:transform var(--tr);
}
.whatsapp-float{left:28px}
.wa-float{right:28px}
body[dir="rtl"] .wa-float{right:auto;left:28px}
.whatsapp-float:hover,.wa-float:hover{transform:scale(1.06)}
.whatsapp-float svg,.wa-float svg{width:26px;height:26px;fill:white}

/* ─── HERO ───────────────────────────────────────── */
.hero{
  background:var(--navy-dark);
  color:var(--white);
  padding:120px 0 100px;
  position:relative;
  overflow:hidden;
  text-align:center;
  border-bottom:1px solid rgba(200,151,42,0.2);
}
.hero::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at center, rgba(200,151,42,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;left:50%;bottom:0;
  width:1px;height:48px;
  background:linear-gradient(to bottom,transparent,var(--gold));
  transform:translateX(-50%);
}
.hero-inner{
  position:relative;
  max-width:780px;
  margin:0 auto;
  text-align:center;
}
.hero-badge{
  display:inline-block;
  background:transparent;
  border:none;
  color:var(--gold);
  padding:0 0 18px;
  border-radius:0;
  font-family:var(--font-ui);
  font-size:0.72rem;
  font-weight:500;
  letter-spacing:0.32em;
  text-transform:uppercase;
  margin-bottom:0;
  position:relative;
}
.hero-badge::after{
  content:'';
  display:block;
  width:60px;height:1px;
  background:var(--gold);
  margin:14px auto 0;
}
.hero h1{
  color:var(--gold-soft);
  margin:8px 0 22px;
  font-family:var(--font-display);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-0.01em;
}
.hero h1 em{color:var(--gold);font-style:italic;font-weight:500}
.hero .lead{
  color:rgba(245,233,200,0.78);
  margin:0 auto 42px;
  max-width:580px;
  font-size:1.05rem;
  line-height:1.85;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}

/* Trust bar — divided, centered, serif numerals */
.trust-bar{
  margin-top:64px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  padding-top:36px;
  border-top:1px solid rgba(200,151,42,0.25);
  max-width:760px;
  margin-left:auto;margin-right:auto;
}
.trust-item{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;
  padding:0 12px;
  border-right:1px solid rgba(200,151,42,0.18);
}
.trust-item:last-child{border-right:none}
body[dir="rtl"] .trust-item{border-right:none;border-left:1px solid rgba(200,151,42,0.18)}
body[dir="rtl"] .trust-item:last-child{border-left:none}
.trust-item .num{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:700;
  color:var(--gold);
  line-height:1;
  margin-bottom:8px;
}
.trust-item .label,.trust-item .lbl{
  font-family:var(--font-ui);
  font-size:0.66rem;
  color:rgba(245,233,200,0.6);
  letter-spacing:0.16em;
  text-transform:uppercase;
  line-height:1.45;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 30px;
  border-radius:0;
  font-family:var(--font-ui);
  font-size:0.74rem;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  cursor:pointer;
  border:1px solid transparent;
  transition:all var(--tr);
  white-space:nowrap;
  text-decoration:none;
}
.btn-primary{
  background:var(--gold);
  color:var(--navy-dark);
  border-color:var(--gold);
}
.btn-primary:hover{
  background:var(--gold-light);
  border-color:var(--gold-light);
  color:var(--navy-dark);
}
.btn-secondary{
  background:transparent;
  color:var(--gold);
  border:1px solid var(--gold);
}
.btn-secondary:hover{
  background:var(--gold);
  color:var(--navy-dark);
}
.btn-outline{
  background:transparent;
  color:var(--navy);
  border:1px solid var(--navy);
}
.btn-outline:hover{
  background:var(--navy);
  color:var(--gold);
}
.btn-whatsapp,.btn-wa{
  background:var(--gold);
  color:var(--navy-dark);
  border:1px solid var(--gold);
  position:relative;
}
.btn-whatsapp::before,.btn-wa::before{
  content:'';
  display:inline-block;
  width:8px;height:8px;border-radius:50%;
  background:#25d366;
  margin-inline-end:4px;
}
.btn-whatsapp:hover,.btn-wa:hover{
  background:var(--gold-light);
  color:var(--navy-dark);
  border-color:var(--gold-light);
}

/* ─── CARDS ──────────────────────────────────────── */
.card{
  background:var(--white);
  border-radius:0;
  padding:32px 28px;
  border:1px solid var(--border);
  box-shadow:none;
  transition:border-color var(--tr);
  text-align:center;
}
.card:hover{border-color:var(--gold);transform:none;box-shadow:none}
.card-icon{
  font-size:1.8rem;
  margin-bottom:18px;
  display:block;
  filter:grayscale(1) sepia(0.5) brightness(0.9);
  opacity:0.75;
}
.card h3{
  margin-bottom:12px;
  font-size:1.05rem;
  font-family:var(--font-display);
}
.card p{font-size:0.9rem;margin:0;line-height:1.75}
.card-link{
  display:inline-block;
  color:var(--gold);
  font-family:var(--font-ui);
  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  margin-top:20px;
  padding-bottom:3px;
  border-bottom:1px solid var(--gold);
}

/* Service pillar card — uses bordered grid pattern */
.service-card,.svc-card{
  background:var(--white);
  border-radius:0;
  padding:36px 28px 30px;
  border:1px solid var(--border);
  box-shadow:none;
  transition:all var(--tr);
  position:relative;
  display:flex;flex-direction:column;
  text-align:center;
  margin:-1px 0 0 -1px;  /* collapse adjacent borders */
}
.service-card::before,.svc-card::before{
  content:'';
  position:absolute;top:0;left:0;right:0;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform var(--tr);
}
.service-card:hover,.svc-card:hover{
  background:var(--cream);
  transform:none;
  box-shadow:none;
  z-index:2;
}
.service-card:hover::before,.svc-card:hover::before{transform:scaleX(1)}
.service-card .icon,.svc-card .icon{
  font-size:1.6rem;
  margin-bottom:18px;
  color:var(--gold);
  display:inline-block;
  padding-bottom:14px;
  border-bottom:1px solid var(--rule-gold);
  width:auto;
  margin-left:auto;margin-right:auto;
  filter:grayscale(1) sepia(0.5) hue-rotate(2deg) brightness(0.9);
  opacity:0.75;
}
.service-card h3,.svc-card h3{
  font-size:1.08rem;
  margin-bottom:12px;
  font-family:var(--font-display);
  font-weight:600;
  color:var(--navy);
}
.service-card p,.svc-card p{
  font-size:0.88rem;
  flex:1;
  line-height:1.7;
  color:var(--text-muted);
}
.service-card .learn-more,.svc-card .lm{
  display:inline-block;
  color:var(--gold);
  font-family:var(--font-ui);
  font-size:0.68rem;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  margin-top:20px;
  padding-bottom:3px;
  border-bottom:1px solid var(--gold);
  align-self:center;
}

/* When grid wrapper has no gap, draw the bordered-grid effect cleanly */
.grid-3 > .service-card, .grid-3 > .svc-card,
.grid-4 > .service-card, .grid-4 > .svc-card{}

/* ─── SECTION TITLES ─────────────────────────────── */
.section-title,.sec-title{
  text-align:center;
  margin-bottom:64px;
  position:relative;
}
.section-title::after,.sec-title::after{
  content:'';
  display:block;
  width:48px;height:1px;
  background:var(--gold);
  margin:24px auto 0;
}
.section-title h2,.sec-title h2{
  margin-bottom:18px;
  font-family:var(--font-display);
  font-weight:600;
}
.section-title p,.sec-title p{max-width:600px;margin:0 auto;color:var(--text-muted)}

.title-line{
  display:flex;align-items:center;gap:18px;
  margin-bottom:40px;
  text-align:center;justify-content:center;
}
.title-line::before,.title-line::after{
  content:'';flex:1;height:1px;
  background:var(--border);
  max-width:160px;
}
.title-line h3{
  font-family:var(--font-display);
  font-size:1.4rem;
  margin:0;
  white-space:nowrap;
}

/* ─── BREADCRUMB ─────────────────────────────────── */
.breadcrumb{
  background:var(--cream);
  border-bottom:1px solid var(--border);
  padding:14px 0;
}
.breadcrumb-inner{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-ui);
  font-size:0.72rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-soft);
  max-width:var(--max-w);
  margin:0 auto;padding:0 28px;
}
.breadcrumb a{color:var(--text-soft)}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb .sep{opacity:0.5}
.breadcrumb .current{color:var(--navy);font-weight:600}

/* ─── PAGE HERO ──────────────────────────────────── */
.page-hero,.city-hero{
  background:var(--navy-dark);
  color:var(--white);
  padding:88px 0 76px;
  text-align:center;
  border-bottom:1px solid rgba(200,151,42,0.2);
  position:relative;
}
.page-hero .container,.city-hero .container{
  display:flex;flex-direction:column;align-items:center;text-align:center;
}
.page-hero .container > *,.city-hero .container > *{max-width:760px}
.page-hero::after,.city-hero::after{
  content:'';
  position:absolute;left:50%;bottom:0;
  width:1px;height:36px;
  background:linear-gradient(to bottom,transparent,var(--gold));
  transform:translateX(-50%);
}
.page-hero h1,.city-hero h1{
  color:var(--gold-soft);
  margin-bottom:16px;
  font-family:var(--font-display);
}
.page-hero p,.city-hero p{
  color:rgba(245,233,200,0.78);
  max-width:640px;
  margin:0 auto;
}
.city-hero .hero-ctas{justify-content:center;margin-top:28px}

/* ─── FAQ ────────────────────────────────────────── */
.faq-section{background:var(--cream)}
.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:0;
  margin-bottom:0;
  overflow:hidden;
  margin-top:-1px;
}
.faq-item:first-child{margin-top:0}
.faq-question,.faq-q{
  padding:22px 26px;
  display:flex;align-items:center;justify-content:space-between;
  cursor:pointer;
  font-family:var(--font-display);
  font-weight:600;
  font-size:1rem;
  color:var(--navy);
  transition:background var(--tr);
  gap:18px;
}
.faq-question:hover,.faq-q:hover{background:var(--cream)}
.faq-question .arrow,.faq-q .arr{
  width:28px;height:28px;
  border-radius:0;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:0.7rem;
  transition:transform var(--tr);
  flex-shrink:0;
}
.faq-item.open .arrow,.faq-item.open .arr{transform:rotate(180deg)}
.faq-answer,.faq-a{
  padding:0 26px;
  max-height:0;overflow:hidden;
  transition:max-height 0.35s ease,padding 0.25s ease;
  font-size:0.92rem;
  color:var(--text-muted);
  line-height:1.85;
}
.faq-item.open .faq-answer,.faq-item.open .faq-a{
  max-height:600px;
  padding:0 26px 22px;
}

/* ─── CTA BAND ───────────────────────────────────── */
.cta-band{
  background:var(--navy-dark);
  color:var(--white);
  padding:88px 0;
  text-align:center;
  border-top:1px solid rgba(200,151,42,0.25);
  border-bottom:1px solid rgba(200,151,42,0.25);
  position:relative;
}
.cta-band::before{
  content:'';
  display:block;
  width:60px;height:1px;
  background:var(--gold);
  margin:0 auto 28px;
}
.cta-band h2{
  color:var(--gold-soft);
  margin-bottom:18px;
  font-family:var(--font-display);
}
.cta-band p{
  color:rgba(245,233,200,0.75);
  margin-bottom:36px;
  max-width:520px;
  margin-left:auto;margin-right:auto;
}
.cta-band .ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer{
  background:var(--navy-dark);
  color:rgba(245,233,200,0.65);
  padding:80px 0 28px;
  border-top:1px solid rgba(200,151,42,0.25);
}
.footer-grid,.foot-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:56px;
  margin-bottom:56px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(200,151,42,0.18);
}
.footer-col h4,.foot-col h4{
  color:var(--gold);
  font-family:var(--font-ui);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.24em;
  text-transform:uppercase;
  margin-bottom:22px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(200,151,42,0.2);
}
.footer-col p,.foot-col p{
  font-size:0.88rem;
  line-height:1.85;
  margin:0;
  color:rgba(245,233,200,0.6);
}
.footer-col ul,.foot-col ul{list-style:none}
.footer-col ul li,.foot-col ul li{margin-bottom:12px}
.footer-col ul li a,.foot-col ul li a{
  color:rgba(245,233,200,0.55);
  font-family:var(--font-body);
  font-size:0.88rem;
  transition:color var(--tr);
}
.footer-col ul li a:hover,.foot-col ul li a:hover{color:var(--gold)}

.footer-bottom,.foot-bottom{
  padding-top:24px;
  display:flex;align-items:center;justify-content:space-between;
  font-family:var(--font-ui);
  font-size:0.7rem;
  letter-spacing:0.12em;
  color:rgba(245,233,200,0.4);
  flex-wrap:wrap;gap:14px;
}
.footer-brand,.foot-brand{display:flex;align-items:center;gap:14px;margin-bottom:20px}
.footer-logo-icon,.foot-logo-icon{
  width:38px;height:38px;
  background:transparent;
  border:1px solid var(--gold);
  border-radius:0;
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
  color:var(--gold);
  filter:grayscale(1) sepia(0.7) brightness(0.95);
}
.footer-brand-name,.foot-brand-name{
  color:var(--gold-soft);
  font-family:var(--font-display);
  font-size:1.05rem;font-weight:600;
  letter-spacing:0.04em;
}

/* ─── CITY PAGE SPECIFIC ─────────────────────────── */
.city-meta{
  display:flex;align-items:center;justify-content:center;gap:28px;
  margin-bottom:22px;flex-wrap:wrap;
}
.city-badge{
  display:inline-block;
  background:transparent;
  border:none;
  color:var(--gold);
  padding:0;
  border-radius:0;
  font-family:var(--font-ui);
  font-size:0.72rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.city-badge::after{
  content:'';
  display:block;
  width:48px;height:1px;
  background:var(--gold);
  margin:12px auto 0;
}
.city-services-list,.city-svcs{
  display:grid;grid-template-columns:repeat(2,1fr);gap:0;
  margin:40px 0;
  max-width:760px;margin-left:auto;margin-right:auto;
}
.city-service-item,.city-svc{
  display:flex;align-items:center;gap:12px;
  background:var(--white);border:1px solid var(--border);
  border-radius:0;
  padding:16px 20px;
  font-size:0.92rem;color:var(--navy);
  margin:-1px 0 0 -1px;
  transition:background var(--tr);
}
.city-service-item:hover,.city-svc:hover{background:var(--cream)}
.city-service-item::before,.city-svc::before{
  content:'✦';color:var(--gold);font-weight:400;flex-shrink:0;font-size:0.9rem;
}

/* ─── BLOG ───────────────────────────────────────── */
.blog-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:0;overflow:hidden;
  transition:border-color var(--tr);
  margin-top:-1px;margin-left:-1px;
}
.blog-card:hover{transform:none;box-shadow:none;border-color:var(--gold)}
.blog-card-body{padding:28px}
.blog-card-cat,.blog-cat{
  display:inline-block;
  background:transparent;
  color:var(--gold);
  font-family:var(--font-ui);
  font-size:0.66rem;font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  padding:0 0 12px;
  border-radius:0;
  margin-bottom:14px;
  border-bottom:1px solid var(--rule-gold);
}
.blog-card h3{
  font-size:1.1rem;margin-bottom:12px;
  font-family:var(--font-display);
  line-height:1.35;
}
.blog-card p{font-size:0.92rem;line-height:1.75}

/* Long-form article */
.blog-article{max-width:760px;margin:0 auto}
.blog-article h2{
  margin:48px 0 18px;
  font-family:var(--font-display);
  font-size:1.7rem;
  padding-bottom:14px;
  border-bottom:1px solid var(--border);
}
.blog-article h3{margin:32px 0 14px;font-family:var(--font-display);font-size:1.3rem}
.blog-article p{font-size:1.05rem;line-height:1.9;margin-bottom:20px;color:var(--text)}
.blog-article ul,.blog-article ol{padding-right:30px;margin-bottom:22px}
body.en-page .blog-article ul,body.en-page .blog-article ol,html[lang="en"] .blog-article ul,html[lang="en"] .blog-article ol{padding-left:30px;padding-right:0}
.blog-article li{margin-bottom:10px;font-size:1rem;color:var(--text);line-height:1.85}
.article-meta{
  display:flex;align-items:center;gap:24px;
  padding:24px 0 36px;
  border-bottom:1px solid var(--border);
  margin-bottom:42px;
  font-family:var(--font-ui);
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--text-soft);
}
.article-box{
  background:var(--navy-dark);
  color:var(--white);
  border-radius:0;
  border-top:2px solid var(--gold);
  padding:32px 36px;margin:36px 0;
}
.article-box h4{
  color:var(--gold);
  margin-bottom:14px;
  font-family:var(--font-display);
  font-size:1.1rem;
}
.article-box p{color:rgba(245,233,200,0.78);margin:0;font-size:0.96rem;line-height:1.85}

/* ─── TOOLS ──────────────────────────────────────── */
.tool-container,.tool-wrap{
  background:var(--white);
  border:1px solid var(--border);
  border-top:3px solid var(--gold);
  border-radius:0;
  padding:48px 44px;
  max-width:720px;margin:0 auto;
  box-shadow:none;
}
.form-group,.form-grp{margin-bottom:24px}
.form-group label,.form-grp label{
  display:block;
  font-family:var(--font-ui);
  font-weight:600;
  font-size:0.74rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  margin-bottom:10px;
  color:var(--navy);
}
.form-group select,.form-group input,.form-grp select,.form-grp input{
  width:100%;
  padding:13px 16px;
  border:1px solid var(--border);
  border-radius:0;
  font-family:var(--font-body);
  font-size:0.96rem;
  background:var(--cream);
  color:var(--text);
  transition:border-color var(--tr);
  direction:rtl;
}
body.en-page .form-group select,body.en-page .form-group input,html[lang="en"] .form-grp select,html[lang="en"] .form-grp input{direction:ltr}
.form-group select:focus,.form-group input:focus,
.form-grp select:focus,.form-grp input:focus{outline:none;border-color:var(--gold);background:var(--white)}
.result-box{
  background:var(--cream);
  border:1px solid var(--border);
  border-top:2px solid var(--gold);
  border-radius:0;
  padding:28px;margin-top:28px;
  display:none;
}
.result-box.show{display:block}
.result-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 0;border-bottom:1px solid var(--border);
  font-size:0.94rem;
}
.result-row:last-child{border:0;font-weight:700;color:var(--navy)}
.result-label{color:var(--text-muted);font-family:var(--font-ui);font-size:0.84rem}
.result-value{font-family:var(--font-display);font-weight:600;color:var(--navy);font-size:1.05rem}

/* ─── LEGAL EDUCATION PAGE ───────────────────────── */
.edu-article{max-width:820px;margin:0 auto}
.edu-toc{
  background:var(--cream);
  border:1px solid var(--border);
  border-top:2px solid var(--gold);
  border-radius:0;
  padding:28px 32px;
  margin-bottom:44px;
}
.edu-toc h4{
  color:var(--navy);
  margin-bottom:16px;
  font-family:var(--font-ui);
  font-size:0.74rem;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  padding-bottom:12px;
  border-bottom:1px solid var(--rule-gold);
}
.edu-toc ol{padding-right:22px}
body.en-page .edu-toc ol,html[lang="en"] .edu-toc ol{padding-left:22px;padding-right:0}
.edu-toc li{margin-bottom:10px}
.edu-toc a{color:var(--navy);font-size:0.92rem}
.edu-toc a:hover{color:var(--gold)}
.law-box{
  border-right:3px solid var(--gold);
  background:var(--cream);
  border-radius:0;
  padding:22px 26px;margin:32px 0;
  font-size:0.96rem;color:var(--text);
  line-height:1.85;
  font-style:italic;
}
body.en-page .law-box,html[lang="en"] .law-box{border-right:none;border-left:3px solid var(--gold)}

/* ─── TAGS / KEYWORDS ────────────────────────────── */
.tag-list{display:flex;flex-wrap:wrap;gap:0;margin-top:18px;justify-content:center}
.tag{
  background:transparent;
  color:var(--navy);
  border:1px solid var(--border);
  border-radius:0;
  padding:8px 18px;
  font-family:var(--font-ui);
  font-size:0.74rem;
  letter-spacing:0.1em;
  margin:-1px 0 0 -1px;
  transition:all var(--tr);
}
.tag:hover{background:var(--navy);color:var(--gold);border-color:var(--navy)}

/* ─── INTERNAL LINKS BOX ─────────────────────────── */
.related-links,.rel-links{
  background:var(--cream);
  border:1px solid var(--border);
  border-top:2px solid var(--gold);
  border-radius:0;
  padding:32px;margin:48px 0;
}
.related-links h4,.rel-links h4{
  margin-bottom:20px;
  font-family:var(--font-ui);
  font-size:0.74rem;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--navy);
}
.related-links ul,.rel-links ul{list-style:none;display:flex;flex-wrap:wrap;gap:0}
.related-links ul li a,.rel-links ul li a{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--white);
  border:1px solid var(--border);
  padding:10px 16px;
  border-radius:0;
  font-size:0.88rem;
  color:var(--navy);
  margin:-1px 0 0 -1px;
  transition:all var(--tr);
}
.related-links ul li a:hover,.rel-links ul li a:hover{background:var(--navy);color:var(--gold);border-color:var(--navy)}

/* ─── STATS ROW ──────────────────────────────────── */
.stats-row{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  background:var(--navy-dark);
  border-radius:0;
  border-top:2px solid var(--gold);
  border-bottom:2px solid var(--gold);
  padding:48px 0;margin:56px 0;
}
.stat-item{
  text-align:center;
  border-right:1px solid rgba(200,151,42,0.2);
  padding:0 16px;
}
.stat-item:last-child{border-right:none}
body[dir="rtl"] .stat-item{border-right:none;border-left:1px solid rgba(200,151,42,0.2)}
body[dir="rtl"] .stat-item:last-child{border-left:none}
.stat-item .num{
  font-family:var(--font-display);
  font-size:2.4rem;font-weight:700;
  color:var(--gold);display:block;
  line-height:1;
}
.stat-item .lbl{
  font-family:var(--font-ui);
  font-size:0.68rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:rgba(245,233,200,0.6);
  margin-top:10px;display:block;
}

/* ─── SERVICES BG ────────────────────────────────── */
.services-section{background:var(--cream)}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-2{grid-template-columns:1fr;gap:40px}
  .grid-2 .card[style*="sticky"]{position:static !important}
  .footer-grid,.foot-grid{grid-template-columns:1fr 1fr;gap:40px}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .stat-item:nth-child(2){border-right:none}
  body[dir="rtl"] .stat-item:nth-child(2){border-left:none}
  .stat-item:nth-child(1),.stat-item:nth-child(2){border-bottom:1px solid rgba(200,151,42,0.2);padding-bottom:32px;margin-bottom:16px}
}
@media (max-width:768px){
  .section{padding:64px 0}
  .container{padding:0 22px}
  .grid-2,.grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .main-nav{display:none;position:absolute;top:var(--header-h);right:0;left:0;background:var(--navy-dark);padding:18px;flex-direction:column;align-items:stretch;border-top:1px solid rgba(200,151,42,0.2)}
  .main-nav.open{display:flex}
  .nav-toggle{display:flex}
  .hero{padding:80px 0 64px}
  .hero h1{font-size:2rem}
  .trust-bar{grid-template-columns:repeat(2,1fr);gap:24px 0;margin-top:48px;padding-top:28px}
  .trust-item{padding:16px 8px;border-right:none;border-bottom:1px solid rgba(200,151,42,0.15)}
  body[dir="rtl"] .trust-item{border-left:none;border-bottom:1px solid rgba(200,151,42,0.15)}
  .trust-item:nth-last-child(-n+2){border-bottom:none}
  .hero-ctas{flex-direction:column;width:100%}
  .hero-ctas .btn{width:100%}
  .footer-grid,.foot-grid{grid-template-columns:1fr;gap:32px;padding-bottom:32px}
  .footer-bottom,.foot-bottom{flex-direction:column;text-align:center;font-size:0.66rem}
  .city-services-list,.city-svcs{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr;padding:32px 0}
  .stat-item{border-right:none!important;border-left:none!important;border-bottom:1px solid rgba(200,151,42,0.2);padding:20px 16px}
  .stat-item:last-child{border-bottom:none}
  .tool-container,.tool-wrap{padding:32px 24px}
  .whatsapp-float,.wa-float{bottom:20px;width:50px;height:50px}
  .whatsapp-float{left:20px}
  .wa-float{right:20px}
  body[dir="rtl"] .wa-float{left:20px;right:auto}
  .title-line::before,.title-line::after{max-width:60px}
}
@media (max-width:480px){
  h1{font-size:1.7rem}
  .hero-badge{font-size:0.66rem;letter-spacing:0.24em}
  .trust-item .num{font-size:1.6rem}
  .btn{font-size:0.68rem;padding:12px 22px}
}

/* ─── PRINT ──────────────────────────────────────── */
@media print{
  .site-header,.whatsapp-float,.wa-float,.cta-band{display:none}
}
