:root {
  --green: #0d6b3f;
  --green-dark: #0a5330;
  --green-light: #e8f3ec;
  --gold: #c8a04a;
  --ink: #17241d;
  --body: #35443c;
  --muted: #6b7a72;
  --line: #e2e8e4;
  --bg: #ffffff;
  --bg-alt: #f6f9f7;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 107, 63, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.8); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: .55rem 1.1rem; font-size: .95rem; }

/* Top bar */
.topbar { background: var(--green-dark); color: #d9ecdf; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: .5rem 24px; }
.topbar a { color: #fff; }
.lang-switch { display: inline-flex; gap: .3rem; }
.lang-btn { background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff; border-radius: 999px; padding: .15rem .7rem; font-size: .8rem; cursor: pointer; font-family: inherit; transition: background .15s; }
.lang-btn:hover { background: rgba(255,255,255,.15); }
.lang-btn.is-active { background: #fff; color: var(--green-dark); font-weight: 600; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .8rem 24px; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-logo { display: block; width: 320px; height: auto; flex: 0 0 auto; }
.brand-text strong { display: block; font-size: 1.05rem; color: var(--ink); }
.brand-text small { color: var(--muted); font-size: .78rem; }
.nav { display: flex; align-items: center; gap: .65rem; }
.nav a { color: var(--body); font-weight: 500; font-size: .92rem; white-space: nowrap; }
.nav a:hover { color: var(--green); text-decoration: none; }
.nav-cta { color: #fff !important; }
.btn-login { color: var(--green-dark) !important; border-color: rgba(13,107,63,.35); background: #fff; }
.btn-login:hover { background: var(--green-light); border-color: var(--green); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* Hero */
.hero { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; background: url("images/margalla-hills.jpg") center/cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,45,26,.92) 0%, rgba(10,83,48,.82) 45%, rgba(10,83,48,.45) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; direction: ltr; }
.hero-copy { max-width: 46rem; }

/* Lawyer + advisor figures */
.hero-figure { position: relative; margin: 0; display: flex; justify-content: center; align-items: flex-end; min-height: 440px; direction: ltr; }
.hero-person { width: 50%; max-width: 290px; height: auto; filter: drop-shadow(0 22px 45px rgba(0,0,0,.45)); }
.person-man { z-index: 1; margin-right: -5%; }
.person-woman { z-index: 2; margin-left: -5%; }
.talk-bubble {
  position: absolute;
  z-index: 4;
  max-width: 190px;
  background: rgba(255,255,255,.96);
  color: var(--green-dark);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  padding: .75rem .95rem;
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.25;
  animation: bubbleFloat 4.8s ease-in-out infinite;
}
.talk-bubble::after {
  content: "";
  position: absolute;
  width: .95rem;
  height: .95rem;
  background: inherit;
  transform: rotate(45deg);
}
.talk-bubble-man { left: -10%; top: 20%; }
.talk-bubble-man::after {
  right: -.5rem;
  top: 50%;
  margin-top: -.48rem;
  border-top: 1px solid rgba(255,255,255,.72);
  border-right: 1px solid rgba(255,255,255,.72);
}
.talk-bubble-woman { right: -12%; top: 19%; animation-delay: 1.3s; }
.talk-bubble-woman::after {
  left: -.5rem;
  top: 50%;
  margin-top: -.48rem;
  border-left: 1px solid rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.72);
}
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); opacity: .94; }
  50% { transform: translateY(-9px); opacity: 1; }
}

/* Hero "type your legal needs" box */
.hero-ask { display: flex; gap: .5rem; background: #fff; border-radius: 999px; padding: .35rem .35rem .35rem 1.1rem; box-shadow: var(--shadow); max-width: 34rem; margin: 0 0 1.6rem; }
.hero-ask input { flex: 1; border: none; background: transparent; font: inherit; font-size: 1rem; color: var(--ink); min-width: 0; }
.hero-ask input:focus { outline: none; }
.hero-ask-btn { display: inline-flex; align-items: center; gap: .35rem; border: none; cursor: pointer; background: var(--green); color: #fff; font: inherit; font-weight: 700; border-radius: 999px; padding: .7rem 1.3rem; white-space: nowrap; transition: background .15s; }
.hero-ask-btn:hover { background: var(--green-dark); }
.pill { display: inline-block; background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: .35rem 1rem; font-size: .82rem; font-weight: 600; margin-bottom: 1.2rem; backdrop-filter: blur(4px); }
.hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.lead { font-size: 1.18rem; color: #eaf5ee; max-width: 40rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 2rem; }
.hero-trust { display: flex; gap: 2.4rem; border-top: 1px solid rgba(255,255,255,.25); padding-top: 1.4rem; margin-top: .5rem; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.6rem; color: #fff; }
.hero-trust span { font-size: .85rem; color: #cfe3d6; }

/* Sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
section[id] { scroll-margin-top: 88px; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.narrow { max-width: 760px; }

/* Cards grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: transform .15s, box-shadow .15s, border-color .15s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-light); }
.card-icon { font-size: 1.9rem; display: block; margin-bottom: .7rem; }
.card p { margin: 0; color: var(--muted); }

/* Fight Corruption section */
.section-corruption { background: linear-gradient(160deg, #0a5330 0%, #082d1a 100%); color: #eaf5ee; }
.section-corruption .section-head h2 { color: #fff; }
.section-corruption .section-head p { color: #cfe3d6; }
.card-dark { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }
.card-dark h3 { color: #fff; }
.card-dark p { color: #cfe3d6; }
.card-dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); transform: translateY(-3px); }
.corruption-cta { margin-top: 2rem; background: rgba(200,160,74,.14); border: 1px solid var(--gold); border-radius: var(--radius); padding: 1.3rem 1.6rem; }
.corruption-cta p { margin: 0; color: #fbefd4; font-weight: 500; }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: #082d1a; }
.photo { position: relative; margin: 0; height: 300px; overflow: hidden; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.photo:hover img { transform: scale(1.06); }
.photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem .9rem; color: #fff; font-weight: 600; font-size: .95rem; background: linear-gradient(transparent, rgba(0,0,0,.75)); }

/* People gallery */
.people-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.person { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.person img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.person:hover img { transform: scale(1.05); }
.person figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .8rem; color: #fff; font-weight: 600; font-size: .9rem; background: linear-gradient(transparent, rgba(0,0,0,.8)); }

/* UK Immigration section */
.section-immigration { background: linear-gradient(160deg, #eef4fb 0%, #fff 70%); }
.flag-badge { display: inline-block; font-size: 1.6rem; letter-spacing: .2rem; margin-bottom: .6rem; }
.immigration-note { margin-top: 2rem; background: #fff; border: 1px solid #cddaf0; border-left: 4px solid #1d4e8f; border-radius: var(--radius); padding: 1.2rem 1.5rem; font-size: .95rem; color: #33455c; box-shadow: var(--shadow); }
.immigration-note strong { color: #1d4e8f; }

/* Weekly newsfeed */
.section-news { background: #10231d; color: #d7e9e1; }
.news-head { display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr); gap: 2rem; align-items: end; margin-bottom: 1.2rem; }
.news-kicker { display: inline-block; color: #f4d27d; border: 1px solid rgba(244,210,125,.55); border-radius: 999px; padding: .32rem .9rem; font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1rem; }
.section-news h2 { color: #fff; margin-bottom: 0; }
.news-head p { margin: 0; color: #b9d1c7; font-size: 1.02rem; }
.news-date { display: inline-flex; margin-bottom: 1.2rem; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; padding: .55rem .8rem; font-weight: 700; }
.news-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.news-card { display: flex; flex-direction: column; gap: .7rem; min-height: 285px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.25rem; }
.news-card-featured { grid-column: span 2; background: #fff; border-color: #fff; color: var(--body); box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.news-label { align-self: flex-start; color: #f4d27d; background: rgba(244,210,125,.12); border-radius: 999px; padding: .25rem .65rem; font-size: .78rem; font-weight: 800; }
.news-card-featured .news-label { color: var(--green-dark); background: var(--green-light); }
.news-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 0; }
.news-card-featured h3 { color: var(--ink); font-size: 1.35rem; }
.news-card p { color: #c8ddd4; margin: 0; font-size: .94rem; }
.news-card-featured p { color: var(--body); }
.news-source { margin-top: auto; color: #fff; font-weight: 800; font-size: .9rem; text-decoration: underline; text-decoration-color: rgba(244,210,125,.65); text-underline-offset: 4px; }
.news-card-featured .news-source { color: var(--green); }

/* Immigration topics list */
.immigration-topics { margin-top: 2rem; background: #fff; border: 1px solid #cddaf0; border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.immigration-topics h3 { color: #1d4e8f; margin-bottom: 1rem; }
.topic-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 2.5rem; }
.topic-list li { break-inside: avoid; padding: .4rem 0 .4rem 1.7rem; position: relative; color: var(--body); }
.topic-list li::before { content: "✓"; position: absolute; left: 0; top: .4rem; color: #1d4e8f; font-weight: 800; }

/* Volunteer attorneys standing by */
.pulse-dot { display: inline-block; width: .7rem; height: .7rem; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 0 rgba(37,211,102,.7); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 .6rem rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot, .talk-bubble { animation: none; } }
.hero-standing-by { display: flex; align-items: center; gap: .6rem; font-size: .95rem; font-weight: 600; color: #eaf5ee; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: .5rem 1rem; margin: 0 0 1.6rem; width: fit-content; max-width: 100%; }
.standing-by { display: flex; align-items: center; gap: .6rem; margin: 0 0 .6rem; color: var(--green-dark); }
.standing-by strong { color: var(--green-dark); }

/* AI Legal Assistant */
.section-ai { background: linear-gradient(160deg, var(--green-light) 0%, #fff 65%); }
.ai-badge { display: inline-block; background: #fff; color: var(--green); border: 1px solid var(--green); border-radius: 999px; padding: .3rem .95rem; font-size: .82rem; font-weight: 700; margin-bottom: 1rem; }
.ai-form { display: flex; flex-direction: column; gap: 1rem; }
.ai-form textarea { width: 100%; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 12px; font: inherit; color: var(--ink); background: #fff; resize: vertical; transition: border-color .15s, box-shadow .15s; }
.ai-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }
.ai-form .btn { align-self: flex-start; }
.ai-response { margin-top: 1.4rem; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: var(--radius); padding: 1.4rem 1.6rem; white-space: pre-wrap; line-height: 1.7; color: var(--body); box-shadow: var(--shadow); }
.ai-response.loading { color: var(--muted); font-style: italic; border-left-color: var(--gold); }
.ai-response.err { border-left-color: #c0392b; color: #7d271d; background: #fdecea; }
.ai-disclaimer { margin-top: 1.2rem; font-size: .88rem; color: var(--muted); background: var(--bg-alt); border-left: 3px solid var(--gold); padding: .9rem 1.1rem; border-radius: 0 8px 8px 0; }
html[dir="rtl"] .ai-response { border-left: none; border-right: 4px solid var(--green); }
html[dir="rtl"] .ai-response.err { border-right-color: #c0392b; }
html[dir="rtl"] .ai-response.loading { border-right-color: var(--gold); }
html[dir="rtl"] .ai-disclaimer { border-left: none; border-right: 3px solid var(--gold); border-radius: 8px 0 0 8px; text-align: right; }
html[dir="rtl"] .ai-form textarea, html[dir="rtl"] .ai-form .btn { text-align: right; align-self: flex-end; }

/* WhatsApp button */
.btn-whatsapp { background: #25d366; color: #073b1e; box-shadow: var(--shadow); }
.btn-whatsapp:hover { background: #1ebe5a; color: #062e18; }
.wa-icon { font-size: 1.15rem; }

/* Brand name dot */
.brand-dot { color: var(--green); }

/* Hero motto + domains */
.hero-motto { font-weight: 700; color: #fff; font-size: 1.05rem; margin: .2rem 0 1.4rem; letter-spacing: .01em; }
.hero-domains { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0 .4rem; }
.domain-chip { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.5); color: #fff; font-weight: 700; border-radius: 999px; padding: .35rem 1rem; backdrop-filter: blur(4px); }
.domain-sep { color: rgba(255,255,255,.6); }

/* Brand banner (closing) */
.brand-banner { background: linear-gradient(160deg, #0a5330 0%, #082d1a 100%); color: #fff; text-align: center; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.banner-eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; font-weight: 700; color: var(--gold); margin: 0 0 1.6rem; }
.banner-domains { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.banner-domain { display: flex; flex-direction: column; align-items: center; gap: .25rem; min-width: 240px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 1.4rem 1.8rem; color: #fff; transition: background .15s, transform .15s; }
.banner-domain:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); text-decoration: none; }
.banner-flag { font-size: 1.8rem; }
.banner-name { font-size: 1.5rem; font-weight: 800; }
.banner-sub { font-size: .9rem; color: #cfe3d6; }
.banner-emergency { font-size: 1.05rem; font-weight: 600; color: #eaf5ee; margin: 0 auto 1.6rem; max-width: 40rem; }
.banner-cta { font-size: 1.05rem; }

/* Footer extras */
.footer-domains { font-weight: 700; color: #fff; margin: .5rem 0 .3rem; font-size: .95rem; }
.footer-24-7 { font-size: .88rem; color: #cfe3d6; margin: 0; }
.topbar-hours { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.step { text-align: center; padding: 1rem; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.step p { color: var(--muted); margin: 0; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.check-list, .callout ul, .contact-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; background: var(--green-light); width: 1.4rem; height: 1.4rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; }
.muted { color: var(--muted); }

.callout { background: var(--green-light); border-radius: var(--radius); padding: 1.8rem; border: 1px solid #cfe6d7; }
.callout ul li { padding-left: 1.4rem; position: relative; margin-bottom: .6rem; }
.callout ul li::before { content: "•"; color: var(--green); position: absolute; left: .3rem; }
.callout-note { font-size: .9rem; color: var(--green-dark); margin: 1rem 0 0; font-weight: 500; }

/* Form */
.form .field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; color: var(--ink); }
.form input, .form select, .form textarea {
  width: 100%; padding: .75rem .85rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }
.form-status { font-size: .92rem; margin: 1rem 0 0; }
.form-status.ok { color: var(--green); font-weight: 600; }
.form-status.err { color: #c0392b; font-weight: 600; }

/* Contact info */
.contact-info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.contact-list li { display: flex; gap: .9rem; margin-bottom: 1.1rem; }
.contact-list span { font-size: 1.3rem; }
.emergency { background: #fdecea; border: 1px solid #f5c6c0; border-radius: 10px; padding: 1rem; font-size: .92rem; color: #7d271d; margin-top: 1rem; }
.emergency a { color: #c0392b; font-weight: 700; }

.disclaimer { font-size: .9rem; color: var(--muted); background: var(--bg-alt); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; }

/* Footer */
.site-footer { background: var(--green-dark); color: #cfe3d6; padding: 3rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.footer-logo { display: block; width: 380px; max-width: 100%; height: auto; background: #fff; border-radius: 12px; padding: .35rem .65rem; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.site-footer p { margin: .6rem 0 0; font-size: .92rem; }
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { color: #cfe3d6; }
.footer-nav a:hover { color: #fff; }
.footer-copy { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.4rem; font-size: .85rem; margin-top: 1rem; }

/* Responsive */
@media (max-width: 860px) {
  section[id] { scroll-margin-top: 84px; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 300px); flex-direction: column; align-items: flex-start; background: #fff; padding: 5rem 1.6rem; box-shadow: -10px 0 40px rgba(0,0,0,.12); transform: translateX(100%); transition: transform .25s; gap: 1.2rem; }
  .nav.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 60; }
  .hero-inner, .two-col, .footer-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; min-height: 310px; }
  .hero-person { max-width: 150px; }
  .talk-bubble { max-width: 118px; padding: .52rem .58rem; border-radius: 14px; font-size: .7rem; }
  .talk-bubble-man { left: -4%; top: 32%; }
  .talk-bubble-woman { right: -5%; top: 30%; }
  .hero-ask { max-width: 100%; }
  .grid, .steps { grid-template-columns: 1fr; }
  .news-head { grid-template-columns: 1fr; gap: .8rem; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: span 2; }
  .hero-trust { flex-wrap: wrap; gap: 1.2rem; }
}
@media (max-width: 600px) {
  .brand-logo { width: 250px; }
  .brand-text small { font-size: .72rem; }
  .field-row { grid-template-columns: 1fr; }
  .grid, .grid-2 { grid-template-columns: 1fr; }
  .topbar-inner { font-size: .78rem; }
  .topbar-hours { max-width: 62vw; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo { height: 220px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card, .news-card-featured { grid-column: auto; min-height: 0; }
  .people-gallery { grid-template-columns: 1fr 1fr; }
  .topic-list { columns: 1; }
  .banner-domains { flex-direction: column; align-items: stretch; }
  .banner-domain { min-width: 0; }
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .people-gallery { grid-template-columns: 1fr 1fr; }
}

/* ===== Urdu / RTL ===== */
html[lang="ur"] body { font-family: "Noto Nastaliq Urdu", "Amiri", serif; line-height: 2; }
html[lang="ur"] h1, html[lang="ur"] h2, html[lang="ur"] h3 { line-height: 1.7; }
/* Keep layout LTR-anchored but flip text alignment for readability */
html[dir="rtl"] .lead, html[dir="rtl"] .section-head, html[dir="rtl"] .card p,
html[dir="rtl"] .step p, html[dir="rtl"] .hero-copy { text-align: right; }
html[dir="rtl"] .hero-copy { direction: rtl; }
html[dir="rtl"] .section-head { text-align: center; }
html[dir="rtl"] .check-list li { padding-left: 0; padding-right: 1.9rem; }
html[dir="rtl"] .check-list li::before { left: auto; right: 0; }
html[dir="rtl"] .form label { text-align: right; }
html[dir="rtl"] .contact-list li { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .hero-actions, html[dir="rtl"] .hero-trust { flex-direction: row-reverse; }
html[dir="rtl"] .nav { direction: rtl; }
/* Numerals and Latin phone numbers stay LTR inside RTL text */
html[dir="rtl"] a[href^="tel"], html[dir="rtl"] a[href^="mailto"] { direction: ltr; display: inline-block; unicode-bidi: embed; }
