/* ═══════════════════════════════════════════════════════════════════
   AL-Doha Law Firm — Multi-Language CMS
   Design benchmark: Linklaters · Al Tamimi · Clyde & Co
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --ink:        #101820;
  --ink-soft:   #1b2733;
  --gold:       #c5a15a;
  --gold-light: #e1c37c;
  --ivory:      #f6f0e6;
  --paper:      #fffaf2;
  --mist:       #f0ece4;
  --white:      #ffffff;
  --muted:      #6f6a61;
  --line:       rgba(16,24,32,.1);
  --shadow:     0 16px 48px rgba(16,24,32,.12);
  --radius:     3px;
  --max-w:      1240px;
  --pad-x:      max(24px, calc((100vw - var(--max-w)) / 2));
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Page transition ─────────────────────────────────────────────── */
@keyframes pageFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
main { animation: pageFade 0.36s ease both; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink); background: #fff; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.01em;
}
h1 { font-size: clamp(38px, 5vw, 68px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.4vw, 50px); font-weight: 600; }
h3 { font-size: clamp(19px, 2vw, 26px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }

/* Arabic font override — applied automatically for .rtl body */
body.rtl, body.rtl p, body.rtl span, body.rtl a, body.rtl li, body.rtl button, body.rtl input, body.rtl textarea, body.rtl select {
  font-family: 'Cairo', 'Segoe UI', system-ui, sans-serif;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 {
  font-family: 'Cairo', Georgia, serif;
  letter-spacing: 0;
}

/* ── Site Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(16,24,32,.08); }
.site-header-inner {
  width: min(var(--max-w), 92vw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo-white { display: none; }
.main-nav { display: flex; align-items: center; gap: 2px; font-size: 13px; font-weight: 600; }
.main-nav a {
  padding: 8px 11px; color: var(--ink); border-radius: var(--radius);
  letter-spacing: .01em; transition: color .15s, background .15s; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 18px; margin-left: 8px;
  background: var(--ink); color: var(--white) !important;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--radius); transition: background .2s;
}
.nav-cta:hover { background: var(--gold); }
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; padding: 0 12px; margin-left: 6px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em; color: var(--ink);
  transition: .15s; white-space: nowrap;
}
.lang-switch:hover { border-color: var(--gold); color: var(--gold); }
.menu-toggle {
  display: none; background: var(--white); border: 1px solid var(--line);
  padding: 8px 10px; border-radius: var(--radius); cursor: pointer; flex-direction: column; gap: 5px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 46px; padding: 0 24px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.btn.primary   { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn.primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }
.btn.secondary { background: transparent; border-color: rgba(255,255,255,.65); color: var(--white); }
.btn.secondary:hover { background: rgba(255,255,255,.12); }
.btn.outline   { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn.outline:hover { background: var(--ink); color: var(--white); }
.btn.light     { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn.light:hover { border-color: var(--gold); color: var(--gold); }
.btn.dark      { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn.dark:hover { background: var(--gold); border-color: var(--gold); }
.btn.sm { height: 36px; padding: 0 14px; font-size: 11.5px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Hero Slider ─────────────────────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  display: none; min-height: 600px; align-items: center;
  padding: 110px var(--pad-x) 70px; color: var(--white);
  background:
    linear-gradient(105deg,
      rgba(16,24,32,calc(var(--hero-overlay,0.6)*1.8)),
      rgba(16,24,32,calc(var(--hero-overlay,0.6)*1.1)),
      rgba(16,24,32,calc(var(--hero-overlay,0.6)*0.3))),
    var(--hero-image) center/cover;
}
.hero-slide.active { display: grid; }
.hero-inner { max-width: 780px; }
.hero-badge {
  display: inline-block; padding: 4px 14px; margin-bottom: 20px;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; border-radius: 2px;
}
.hero-slide h1 { text-shadow: 0 2px 14px rgba(0,0,0,.25); margin-bottom: 16px; }
.hero-slide p  { font-size: clamp(15px, 1.7vw, 19px); color: rgba(255,255,255,.84); max-width: 640px; }
.slider-dots { position: absolute; bottom: 22px; left: var(--pad-x); display: flex; gap: 8px; z-index: 5; }
.slider-dot { width: 28px; height: 3px; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: .2s; border-radius: 2px; }
.slider-dot.active { background: var(--gold); width: 44px; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.22);
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
  backdrop-filter: blur(4px);
}
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,.2); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ── Eyebrow / Overline ──────────────────────────────────────────── */
.eyebrow {
  display: block; margin: 0 0 14px;
  color: var(--gold); text-transform: uppercase;
  font-size: 10.5px; font-weight: 800; letter-spacing: .16em;
}

/* ── Section ─────────────────────────────────────────────────────── */
.section { padding: 88px var(--pad-x); }
.section.alt  { background: var(--ivory); }
.section.dark { background: var(--ink);  color: var(--white); }
.section.light-bg { background: var(--mist); }
.section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.section-head > div { flex: 1; }
.dark .muted, .dark p { color: rgba(255,255,255,.72); }

/* ── Card Grid ───────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.two   { grid-template-columns: repeat(2, minmax(0,1fr)); }

.card {
  border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius); padding: 28px;
  box-shadow: 0 1px 3px rgba(16,24,32,.04);
  transition: box-shadow .25s, transform .2s;
}
.card:hover { box-shadow: 0 12px 40px rgba(16,24,32,.09); transform: translateY(-2px); }
.card .num {
  color: var(--gold); font-weight: 900; font-size: 26px; margin-bottom: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: 14.5px; margin-bottom: 0; }
.dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.dark .card h3 { color: var(--white); }
.dark .card p  { color: rgba(255,255,255,.68); }
.card.service-card { border-top: 3px solid var(--gold); }

/* ── Service Image Card ──────────────────────────────────────────── */
.service-img-card { display: flex; flex-direction: column; padding: 0 !important; overflow: hidden; }
.service-img-card .svc-img { aspect-ratio: 1/1; height: auto; width: 100%; background: var(--mist) center/cover no-repeat; flex-shrink: 0; }
.service-img-card .svc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-img-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-img-card p  { color: var(--muted); font-size: 14px; flex: 1; }
.service-img-card ul { color: var(--muted); font-size: 13.5px; padding-left: 1.2em; margin: 10px 0 0; }
.service-img-card ul li { margin-bottom: 4px; }

/* ── Team Cards ──────────────────────────────────────────────────── */
.team-card { padding: 0 !important; overflow: hidden; display:flex; flex-direction:column; }
.team-photo { aspect-ratio: 1/1; height: auto; width: 100%; background: var(--mist) center/cover no-repeat; flex-shrink:0; }
.team-card > h3 { margin: 20px 22px 4px; font-size: 20px; }
.team-card > p  { padding: 0 22px 22px; margin: 0; }
.team-bio-excerpt { padding: 0 22px; font-size:14px; color:var(--muted); line-height:1.65; flex:1; }
.team-read-more { display:inline-flex;align-items:center;gap:6px;margin:14px 22px 22px;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--gold);border:1.5px solid var(--gold);border-radius:var(--radius);padding:7px 16px;cursor:pointer;background:none;transition:.15s;align-self:flex-start; }
.team-read-more:hover { background:var(--gold);color:#fff; }

/* ── Team Modal (single shared) ──────────────────────────────────── */
#team-modal { position:fixed;inset:0;background:rgba(16,24,32,.75);z-index:9000;display:flex;align-items:center;justify-content:center;padding:16px;opacity:0;pointer-events:none;transition:opacity .25s ease; }
#team-modal.open { opacity:1;pointer-events:auto; }
#team-modal .modal-box { background:#fff;border-radius:var(--radius);width:min(680px,100%);max-height:92vh;overflow-y:auto;position:relative;transform:translateY(24px);transition:transform .28s ease;box-shadow:0 40px 100px rgba(16,24,32,.3); }
#team-modal.open .modal-box { transform:none; }
.modal-header { display:grid;grid-template-columns:200px 1fr; }
.modal-photo { aspect-ratio:1/1;background:var(--mist) center/cover no-repeat; }
.modal-intro { padding:24px 24px 18px;display:flex;flex-direction:column;justify-content:flex-end;background:var(--ink); }
.modal-intro h3 { color:#fff;margin:0 0 8px;font-size:clamp(16px,3vw,22px);line-height:1.2; }
.modal-intro p  { color:var(--gold);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;margin:0; }
.modal-body { padding:24px;color:var(--muted);line-height:1.85;font-size:15px; }
.modal-close { position:absolute;top:10px;right:12px;background:rgba(16,24,32,.55);border:none;width:34px;height:34px;border-radius:50%;cursor:pointer;font-size:20px;color:#fff;display:flex;align-items:center;justify-content:center;transition:.15s;z-index:10; }
.modal-close:hover { background:var(--ink); }
@media(max-width:540px){
  #team-modal { padding:0; }
  #team-modal .modal-box { border-radius:0;max-height:100dvh;width:100%; }
  .modal-header { grid-template-columns:1fr; }
  .modal-photo { aspect-ratio:auto;height:220px; }
  .modal-close { top:8px;right:10px; }
}

/* ── Blog Cards ──────────────────────────────────────────────────── */
.blog-card { display: flex; flex-direction: column; padding: 0 !important; overflow: hidden; }
.blog-card-img { height: 200px; background: var(--mist) center/cover no-repeat; flex-shrink: 0; }
.blog-cat { display: inline-block; background: rgba(197,161,90,.12); color: var(--gold); font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; margin: 20px 24px 0; }
.blog-card h3 { font-size: 19px; padding: 8px 24px 0; margin: 0; }
.blog-card p  { padding: 6px 24px 0; color: var(--muted); font-size: 14px; margin: 0; }
.blog-card .blog-meta { padding: 10px 24px 16px; font-size: 12px; color: var(--muted); }
.blog-card .read-more { padding: 0 24px 20px; font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; }

/* ── Blog Post ───────────────────────────────────────────────────── */
.blog-post-hero { position: relative; height: 460px; overflow: hidden; background: var(--ink) center/cover; display: flex; align-items: flex-end; }
.blog-post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,24,32,.9) 0%, rgba(16,24,32,.4) 60%, rgba(16,24,32,.15) 100%); }
.blog-post-hero-content { position: relative; z-index: 2; width: min(var(--max-w), 92vw); margin: 0 auto; padding-bottom: 40px; }
.blog-post-hero-title { color: #fff; font-size: clamp(26px, 3.5vw, 46px); max-width: 820px; line-height: 1.1; }
.blog-post-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,.7); font-size: 13px; margin-top: 12px; }
.blog-post-body { font-size: 17px; line-height: 1.85; color: var(--ink-soft); }
.blog-post-body h2 { margin: 2em 0 .6em; }
.blog-post-body p  { margin: 0 0 1.4em; }
.blog-post-body blockquote { border-left: 4px solid var(--gold); margin: 2em 0; padding: 16px 24px; background: var(--paper); font-style: italic; color: var(--muted); }
.blog-post-footer { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 2px solid var(--line); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── Band / Split ────────────────────────────────────────────────── */
.band { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; width: min(var(--max-w), 92vw); margin: 0 auto; }
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.stat { padding: 22px; background: rgba(255,255,255,.05); border-left: 3px solid var(--gold); }
.stat strong { display: block; font-size: 36px; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; line-height: 1; margin-bottom: 4px; color: var(--white); }
.stat span    { font-size: 11.5px; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .07em; }

/* ── Page Hero (inner pages) ─────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 360px; display: grid; align-items: flex-end;
  padding-bottom: 56px; background: var(--ink); color: var(--white);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(105deg, rgba(16,24,32,.94), rgba(16,24,32,.68) 50%, rgba(16,24,32,.22)),
    var(--page-header-image);
  background-size: cover; background-position: center; transform: scale(1.02);
}
.page-hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 50%;
  background: linear-gradient(transparent, rgba(16,24,32,.78));
}
.page-hero > div { position: relative; z-index: 2; width: 100%; padding: 0 var(--pad-x); }
.page-hero p { color: rgba(255,255,255,.78); font-size: 17px; max-width: 680px; margin-top: 10px; }

/* ── Expertise Strip ─────────────────────────────────────────────── */
.expertise-strip { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expertise-item { flex: 1; padding: 28px 20px; border-right: 1px solid var(--line); text-align: center; }
.expertise-item:last-child { border-right: none; }
.expertise-item strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 38px; font-weight: 700; color: var(--ink); }
.expertise-item span { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; font-weight: 700; }

/* ── Gold accent line ────────────────────────────────────────────── */
.gold-line { display: block; width: 48px; height: 3px; background: var(--gold); margin: 18px 0; }

/* ── CTA Band ────────────────────────────────────────────────────── */
.cta-band { background: var(--ink-soft); color: var(--white); padding: 80px var(--pad-x); }
.cta-band-inner { width: 100%; max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin: 0; max-width: 600px; }

/* ── Forms ───────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
label { display: grid; gap: 5px; font-weight: 700; font-size: 13px; color: var(--ink); }
input, select, textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; font: inherit; background: var(--white); color: var(--ink);
  transition: border .15s, box-shadow .15s; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,161,90,.14); }
textarea { min-height: 140px; resize: vertical; }
.notice       { padding: 14px 18px; background: #edf7f2; border: 1px solid #b0d9be; border-radius: var(--radius); margin-bottom: 18px; color: #1a6b3a; font-size: 14px; }
.error-notice { padding: 14px 18px; background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); margin-bottom: 18px; color: #b91c1c; font-size: 14px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: #0a1118; color: rgba(255,255,255,.7); padding: 72px var(--pad-x) 36px; }
.footer-inner { width: min(var(--max-w), 92vw); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.7; margin: 10px 0 18px; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.footer-contact-quick a, .footer-contact-quick span { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; }
.footer-contact-quick a:hover { color: var(--gold-light); }
.footer-contact-quick i { color: var(--gold); font-size: 12px; width: 14px; }
.footer-col h4 { color: var(--white); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: rgba(255,255,255,.62); font-size: 13px; transition: .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ── Content page ────────────────────────────────────────────────── */
.content { padding: 0; }
.content p { font-size: 17px; color: var(--ink-soft); line-height: 1.85; }
.content h2, .content h3 { margin-top: 1.6em; }

/* ── Cookie Consent Popup ────────────────────────────────────────── */
.cookie-popup {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 60px));
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  z-index: 9500;
  width: min(460px, calc(100vw - 32px));
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: 0 20px 70px rgba(16,24,32,.22), 0 2px 8px rgba(16,24,32,.1);
  padding: 28px 28px 24px;
}
.cookie-popup.show { transform: translateX(-50%) translateY(0); }
.cookie-popup-icon { font-size: 30px; margin-bottom: 12px; display: block; line-height: 1; }
.cookie-popup h3 { margin: 0 0 10px; font-size: 20px; color: var(--ink); }
.cookie-popup p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; }
.cookie-popup-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
  margin-bottom: 22px;
}
.cookie-popup-actions { display: flex; gap: 10px; }
.cookie-popup-actions .btn { flex: 1; justify-content: center; }
@media(max-width:500px){
  .cookie-popup { left: 0; right: 0; bottom: 0; width: 100%; border-radius: var(--radius) var(--radius) 0 0; transform: translateY(100%); }
  .cookie-popup.show { transform: translateY(0); }
}

/* ── WhatsApp Float ──────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; background: #25d366; color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.rtl .wa-float { right: auto; left: 28px; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid, .grid.four { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ── Partner / Managing Partner grid ────────────────────────────── */
.partner-grid-v2 { grid-template-columns: clamp(240px,28%,340px) 1fr; }
@media (max-width: 760px) {
  .partner-grid-v2 { grid-template-columns: 1fr !important; }
  .partner-grid-v2 > div:first-child { max-width: 340px; }
}
@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    padding: 16px 20px; background: var(--white);
    border-bottom: 2px solid var(--line); box-shadow: 0 8px 32px rgba(16,24,32,.1);
    flex-direction: column; align-items: stretch; gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 14px; }
  .nav-cta, .lang-switch { margin-left: 0; margin-top: 6px; }
  .band { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .section-head { display: block; }
  .section-head > div { margin-bottom: 16px; }
  .expertise-strip { flex-wrap: wrap; }
  .expertise-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  :root { --pad-x: 18px; }
  h1 { font-size: 34px; }
  .hero-slide { min-height: 480px; padding-top: 90px; }
  .page-hero { min-height: 280px; }
  .section { padding: 60px var(--pad-x); }
  .grid.three, .grid.two { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-post-hero { height: 320px; }
}
