/* ============================================================
   WALAILAK LAW FIRM — English Site
   Palette: Midnight & Champagne Gold
   Font: Inter (body) + Georgia (display accents)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:            #0C0E13;
  --surface:       #14171F;
  --card:          #1A1E2A;
  --card-hover:    #1F2435;
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --gold-dim:      #7A6228;
  --gold-bg:       rgba(201,168,76,0.07);
  --gold-border:   rgba(201,168,76,0.22);
  --text:          #EAE6DA;
  --text-muted:    #9896A4;
  --text-dim:      #5C5A68;
  --border:        #252A38;
  --danger:        #E05252;
  --success:       #4CAF82;
  --font:          'Inter', sans-serif;
  --font-display:  Georgia, 'Times New Roman', serif;

  /* Scale */
  --xs:   0.75rem;
  --sm:   0.875rem;
  --base: 1rem;
  --lg:   1.125rem;
  --xl:   1.25rem;
  --2xl:  1.5rem;
  --3xl:  1.875rem;
  --4xl:  2.25rem;
  --5xl:  3rem;
  --6xl:  3.75rem;

  /* Space */
  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;
  --s4: 1rem;     --s5: 1.25rem;  --s6: 1.5rem;
  --s8: 2rem;     --s10: 2.5rem;  --s12: 3rem;
  --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  --max: 1200px;
  --r:   6px;
  --rl:  12px;
  --rx:  16px;
  --pill: 999px;
  --ease: 0.2s ease;
  --ease-slow: 0.35s ease;

  --shadow:      0 2px 24px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 28px rgba(201,168,76,0.12);
  --shadow-nav:  0 4px 32px rgba(0,0,0,0.65);
}

/* ── Reset ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family:var(--font); font-size:var(--base); font-weight:400; line-height:1.7; color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased; }
img,video { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { font-family:var(--font); cursor:pointer; border:none; background:none; }
input,textarea,select { font-family:var(--font); font-size:var(--base); }

/* ── Accessibility ───────────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
:focus-visible { outline:2px solid var(--gold); outline-offset:3px; border-radius:var(--r); }
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important;}html{scroll-behavior:auto;}}

/* ── Layout ──────────────────────────────────────────────── */
.container { width:100%; max-width:var(--max); margin-inline:auto; padding-inline:var(--s6); }
.section    { padding-block:var(--s20); }
.section-sm { padding-block:var(--s12); }

/* ── Typography ──────────────────────────────────────────── */
.eyebrow {
  display:inline-block;
  font-size:var(--xs);
  font-weight:700;
  letter-spacing:0.13em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:var(--s3);
}

.section-title {
  font-size:var(--4xl);
  font-weight:700;
  line-height:1.15;
  color:var(--text);
  margin-bottom:var(--s4);
}

.section-subtitle {
  font-size:var(--lg);
  color:var(--text-muted);
  max-width:600px;
  line-height:1.75;
}

.section-header { margin-bottom:var(--s12); }
.section-header.centered { text-align:center; }
.section-header.centered .section-subtitle { margin-inline:auto; }

.gold { color:var(--gold); }

.rule {
  width:44px; height:3px;
  background:linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top:var(--s4);
  border-radius:var(--pill);
}
.section-header.centered .rule { margin-inline:auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:var(--s2);
  padding:.8rem 1.75rem;
  font-family:var(--font);
  font-size:var(--base);
  font-weight:600;
  border-radius:var(--r);
  transition:all var(--ease);
  white-space:nowrap;
  line-height:1;
  cursor:pointer;
}
.btn-primary  { background:var(--gold); color:#0C0E13; border:2px solid var(--gold); }
.btn-primary:hover { background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-1px); box-shadow:var(--shadow-gold); }
.btn-secondary { background:transparent; color:var(--text); border:2px solid var(--border); }
.btn-secondary:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-1px); }
.btn-outline { background:transparent; color:var(--gold); border:1.5px solid var(--gold-border); }
.btn-outline:hover { background:var(--gold-bg); border-color:var(--gold); }
.btn-dark { background:#0C0E13; color:var(--gold); border:2px solid #0C0E13; font-weight:700; }
.btn-dark:hover { background:#14171F; transform:translateY(-1px); }
.btn-ghost-dark { background:transparent; color:#0C0E13; border:2px solid rgba(13,14,19,.3); font-weight:600; }
.btn-ghost-dark:hover { background:rgba(13,14,19,.1); border-color:#0C0E13; }
.btn-sm { padding:.55rem 1.2rem; font-size:var(--sm); }
.btn-lg { padding:1rem 2.25rem; font-size:var(--lg); }

/* ── Emergency Button ────────────────────────────────────── */
.btn-emergency {
  display:inline-flex;
  align-items:center;
  gap:var(--s2);
  padding:.7rem 1.4rem;
  background:#CC2C2C;
  color:#fff;
  border:none;
  border-radius:var(--pill);
  font-size:var(--sm);
  font-weight:700;
  letter-spacing:0.02em;
  animation:pulse-red 2.5s ease-in-out infinite;
}
.btn-emergency:hover { background:#b52424; transform:scale(1.03); }
@keyframes pulse-red {
  0%,100% { box-shadow:0 0 0 0 rgba(204,44,44,.5); }
  50% { box-shadow:0 0 0 8px rgba(204,44,44,0); }
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  height:72px;
  display:flex;
  align-items:center;
  background:rgba(12,14,19,.88);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid transparent;
  transition:border-color var(--ease), box-shadow var(--ease);
}
.nav.scrolled { border-bottom-color:var(--border); box-shadow:var(--shadow-nav); }

.nav-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  max-width:var(--max);
  margin-inline:auto;
  padding-inline:var(--s6);
}

/* Logo */
.nav-logo { display:flex; align-items:center; gap:var(--s3); }
.nav-logo img { height:38px; width:auto; }
.nav-logo-text { display:flex; flex-direction:column; line-height:1.1; }
.nav-logo-name { font-size:var(--base); font-weight:700; color:var(--text); letter-spacing:.01em; }
.nav-logo-sub  { font-size:10px; font-weight:600; color:var(--gold); letter-spacing:.09em; text-transform:uppercase; }

/* Links */
.nav-links { display:flex; align-items:center; gap:var(--s1); }

.nav-link {
  padding:var(--s2) var(--s3);
  font-size:var(--sm);
  font-weight:500;
  color:var(--text-muted);
  border-radius:var(--r);
  transition:color var(--ease), background var(--ease);
}
.nav-link:hover, .nav-link.active { color:var(--text); background:rgba(255,255,255,.05); }

/* Dropdown */
.nav-dropdown { position:relative; }
.nav-dropdown-toggle {
  display:flex;
  align-items:center;
  gap:4px;
  padding:var(--s2) var(--s3);
  font-size:var(--sm);
  font-weight:500;
  color:var(--text-muted);
  border-radius:var(--r);
  transition:color var(--ease), background var(--ease);
  cursor:pointer;
}
.nav-dropdown-toggle:hover { color:var(--text); background:rgba(255,255,255,.05); }
.nav-dropdown-toggle svg { width:13px; height:13px; transition:transform var(--ease); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform:rotate(180deg); }

.nav-dropdown-menu {
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%) translateY(-6px);
  min-width:230px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--rl);
  padding:var(--s2);
  opacity:0;
  visibility:hidden;
  transition:opacity var(--ease), visibility var(--ease), transform var(--ease);
  box-shadow:var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }

.nav-dropdown-item {
  display:block;
  padding:var(--s3) var(--s4);
  font-size:var(--sm);
  color:var(--text-muted);
  border-radius:var(--r);
  transition:color var(--ease), background var(--ease);
}
.nav-dropdown-item:hover { color:var(--gold); background:var(--gold-bg); }

/* Nav right */
.nav-right { display:flex; align-items:center; gap:var(--s3); }

/* Hamburger */
.nav-toggle {
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px; height:40px;
  padding:var(--s2);
  border-radius:var(--r);
}
.nav-toggle span { display:block; height:2px; background:var(--text); border-radius:var(--pill); transition:all var(--ease); }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display:none;
  position:fixed;
  inset:72px 0 0;
  background:var(--bg);
  z-index:999;
  overflow-y:auto;
  padding:var(--s6);
  border-top:1px solid var(--border);
}
.nav-mobile.open { display:block; }
.nav-mobile-links { display:flex; flex-direction:column; gap:var(--s1); margin-bottom:var(--s6); }
.nav-mobile-link { display:block; padding:var(--s3) var(--s4); font-size:var(--lg); font-weight:500; color:var(--text-muted); border-radius:var(--r); transition:color var(--ease),background var(--ease); }
.nav-mobile-link:hover { color:var(--text); background:var(--surface); }
.nav-mobile-section { font-size:var(--xs); font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); padding:var(--s4) var(--s4) var(--s2); }
.nav-mobile-cta { display:flex; flex-direction:column; gap:var(--s3); padding-top:var(--s6); border-top:1px solid var(--border); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:72px;
  overflow:hidden;
}

.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center top; filter:brightness(.22); }
.hero-bg-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(12,14,19,.96) 0%, rgba(12,14,19,.72) 55%, rgba(12,14,19,.88) 100%);
}
/* Gold line left accent */
.hero-bg::after {
  content:'';
  position:absolute;
  left:0; top:0; bottom:0;
  width:3px;
  background:linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index:2;
}

.hero-content { position:relative; z-index:1; padding-block:var(--s20); max-width:820px; }

.hero-label {
  display:inline-flex;
  align-items:center;
  gap:var(--s2);
  padding:var(--s2) var(--s4);
  background:var(--gold-bg);
  border:1px solid var(--gold-border);
  border-radius:var(--pill);
  font-size:var(--sm);
  font-weight:600;
  color:var(--gold);
  margin-bottom:var(--s5);
  letter-spacing:.03em;
}
.hero-label-dot { width:6px; height:6px; background:var(--gold); border-radius:50%; }

.hero h1 {
  font-size:clamp(var(--4xl), 5vw, var(--6xl));
  font-weight:700;
  line-height:1.1;
  color:var(--text);
  margin-bottom:var(--s4);
}
.hero h1 .line-gold {
  display:block;
  color:var(--gold);
  font-family:var(--font-display);
  font-style:italic;
  font-weight:400;
}

.hero-sub {
  font-size:var(--sm);
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--text-dim);
  margin-bottom:var(--s6);
}

.hero-desc {
  font-size:var(--lg);
  color:var(--text-muted);
  line-height:1.8;
  max-width:600px;
  margin-bottom:var(--s8);
}

.hero-actions { display:flex; flex-wrap:wrap; gap:var(--s4); align-items:center; margin-bottom:var(--s10); }

.hero-divider {
  width:100%;
  height:1px;
  background:linear-gradient(90deg, var(--gold-border), transparent);
  margin-block:var(--s8);
}

.hero-stats { display:flex; flex-wrap:wrap; gap:var(--s10); }
.stat-value { font-size:var(--3xl); font-weight:800; color:var(--gold); line-height:1; margin-bottom:2px; }
.stat-label { font-size:var(--sm); color:var(--text-dim); }

/* Scroll cue */
.hero-scroll {
  position:absolute;
  bottom:var(--s8);
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:var(--s2);
  color:var(--text-dim);
  font-size:var(--xs);
  letter-spacing:.1em;
  text-transform:uppercase;
  z-index:1;
  animation:float 3s ease-in-out infinite;
}
.hero-scroll svg { width:18px; height:18px; }
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ── Ticker / trust bar ──────────────────────────────────── */
.trust-bar {
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding-block:var(--s4);
}
.trust-bar-inner { display:flex; flex-wrap:wrap; justify-content:center; gap:var(--s8); align-items:center; }
.trust-item { display:flex; align-items:center; gap:var(--s3); font-size:var(--sm); font-weight:500; color:var(--text-muted); }
.trust-item svg { width:16px; height:16px; color:var(--gold); flex-shrink:0; }

/* ── Service Cards ───────────────────────────────────────── */
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(270px,1fr));
  gap:var(--s5);
}

.service-card {
  display:block;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rl);
  padding:var(--s8);
  transition:all var(--ease-slow);
  position:relative;
  overflow:hidden;
}
.service-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, var(--gold), var(--gold-light));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--ease-slow);
}
.service-card:hover { background:var(--card-hover); border-color:var(--gold-border); transform:translateY(-3px); box-shadow:var(--shadow); }
.service-card:hover::before { transform:scaleX(1); }

.service-icon {
  width:50px; height:50px;
  background:var(--gold-bg);
  border:1px solid var(--gold-border);
  border-radius:var(--rl);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:var(--s5);
  color:var(--gold);
  transition:background var(--ease);
}
.service-card:hover .service-icon { background:rgba(201,168,76,.14); }
.service-icon svg { width:22px; height:22px; }
.service-icon img { width:24px; height:24px; filter:brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(400%) hue-rotate(10deg); }

.service-title { font-size:var(--xl); font-weight:700; color:var(--text); margin-bottom:var(--s3); line-height:1.3; }
.service-desc  { font-size:var(--sm); color:var(--text-muted); line-height:1.75; margin-bottom:var(--s5); }
.service-link  { display:inline-flex; align-items:center; gap:var(--s2); font-size:var(--sm); font-weight:600; color:var(--gold); transition:gap var(--ease); }
.service-card:hover .service-link { gap:var(--s3); }
.service-link svg { width:14px; height:14px; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top:calc(72px + var(--s16));
  padding-bottom:var(--s16);
  background:var(--surface);
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:brightness(.12);
  z-index:0;
}
.page-hero > .container { position:relative; z-index:1; }

.breadcrumb { display:flex; align-items:center; gap:var(--s2); margin-bottom:var(--s5); }
.breadcrumb a { font-size:var(--sm); color:var(--text-dim); transition:color var(--ease); }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { font-size:var(--sm); color:var(--text-dim); }
.breadcrumb-sep { color:var(--text-dim); }

.page-hero h1 { font-size:clamp(var(--3xl), 4vw, var(--5xl)); font-weight:800; line-height:1.15; margin-bottom:var(--s4); }
.page-hero-desc { font-size:var(--lg); color:var(--text-muted); max-width:660px; line-height:1.75; }

/* Gold strip under page heroes */
.hero-gold-strip {
  background:var(--gold);
  padding:var(--s5) var(--s6);
  text-align:center;
}
.hero-gold-strip h2 { font-size:var(--2xl); font-weight:800; color:#0C0E13; line-height:1.3; }

/* ── Why Us / Split layout ───────────────────────────────── */
.split { display:grid; grid-template-columns:1fr 1fr; gap:var(--s16); align-items:center; }
.split.reverse > :first-child { order:2; }

.split-image { position:relative; border-radius:var(--rx); overflow:hidden; }
.split-image img { width:100%; height:500px; object-fit:cover; border-radius:var(--rx); }
.split-badge {
  position:absolute;
  bottom:var(--s6); left:var(--s6);
  background:rgba(12,14,19,.92);
  border:1px solid var(--gold-border);
  border-radius:var(--rl);
  padding:var(--s4) var(--s5);
  display:flex;
  align-items:center;
  gap:var(--s3);
  backdrop-filter:blur(10px);
}
.split-badge-icon { width:38px; height:38px; background:var(--gold-bg); border-radius:var(--r); display:flex; align-items:center; justify-content:center; color:var(--gold); }
.split-badge-icon svg { width:18px; height:18px; }
.split-badge strong { display:block; font-size:var(--xl); font-weight:800; color:var(--gold); line-height:1; }
.split-badge span { font-size:var(--xs); color:var(--text-muted); }

.point-list { display:flex; flex-direction:column; gap:var(--s6); margin-top:var(--s8); }
.point { display:flex; gap:var(--s4); align-items:flex-start; }
.point-icon { width:42px; height:42px; background:var(--gold-bg); border:1px solid var(--gold-border); border-radius:var(--r); display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; margin-top:2px; }
.point-icon svg { width:18px; height:18px; }
.point-title { font-size:var(--base); font-weight:700; color:var(--text); margin-bottom:2px; }
.point-desc  { font-size:var(--sm); color:var(--text-muted); line-height:1.75; }

/* ── Team / Team Grid ────────────────────────────────────── */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--s4); }
.team-photo { border-radius:var(--rl); overflow:hidden; }
.team-photo img { width:100%; height:220px; object-fit:cover; object-position:top; transition:transform .4s ease; }
.team-photo:hover img { transform:scale(1.04); }

/* ── Credentials ─────────────────────────────────────────── */
.credentials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--s5); }
.credential-card {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--rl);
  padding:var(--s6);
}
.credential-title { font-size:var(--base); font-weight:700; color:var(--gold); margin-bottom:var(--s4); display:flex; align-items:center; gap:var(--s2); }
.credential-title svg { width:18px; height:18px; }

/* ── Offices ─────────────────────────────────────────────── */
.offices-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--s6); }
.office-card { background:var(--card); border:1px solid var(--border); border-radius:var(--rx); overflow:hidden; transition:border-color var(--ease), box-shadow var(--ease); }
.office-card:hover { border-color:var(--gold-border); box-shadow:var(--shadow-gold); }
.office-card-img { width:100%; height:210px; object-fit:cover; }
.office-card-body { padding:var(--s6); }
.office-name { font-size:var(--xl); font-weight:700; color:var(--text); margin-bottom:var(--s4); }
.office-detail { display:flex; gap:var(--s3); align-items:flex-start; margin-bottom:var(--s3); }
.office-detail svg { width:15px; height:15px; color:var(--gold); flex-shrink:0; margin-top:3px; }
.office-detail p { font-size:var(--sm); color:var(--text-muted); line-height:1.65; }
.office-actions { display:flex; gap:var(--s3); margin-top:var(--s5); padding-top:var(--s5); border-top:1px solid var(--border); }

/* ── How-to Steps ────────────────────────────────────────── */
.steps { display:flex; flex-direction:column; gap:var(--s6); max-width:680px; }
.step { display:flex; gap:var(--s5); align-items:flex-start; }
.step-num {
  width:40px; height:40px; flex-shrink:0;
  background:var(--gold-bg);
  border:1px solid var(--gold-border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:var(--sm); font-weight:800; color:var(--gold);
  margin-top:2px;
}
.step-title { font-size:var(--base); font-weight:700; color:var(--text); margin-bottom:var(--s1); }
.step-desc  { font-size:var(--sm); color:var(--text-muted); line-height:1.75; }

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip { background:var(--gold); padding-block:var(--s16); }
.cta-strip-inner { display:flex; align-items:center; justify-content:space-between; gap:var(--s8); flex-wrap:wrap; }
.cta-strip h2 { font-size:var(--3xl); font-weight:800; color:#0C0E13; margin-bottom:var(--s2); }
.cta-strip p { font-size:var(--base); color:rgba(12,14,19,.7); }
.cta-strip-actions { display:flex; gap:var(--s4); flex-wrap:wrap; }

/* ── Contact CTA buttons (WhatsApp / Line / Call) ────────── */
.contact-cta-bar {
  display:flex;
  gap:var(--s4);
  align-items:center;
  flex-wrap:wrap;
}
.cta-wa  { background:#25D366; color:#fff; }
.cta-wa:hover  { background:#1ebe5c; }
.cta-line{ background:#06C755; color:#fff; }
.cta-line:hover{ background:#04b049; }
.cta-call{ background:var(--gold); color:#0C0E13; }
.cta-call:hover{ background:var(--gold-light); }
.contact-cta-bar .btn svg { width:18px; height:18px; }

/* ── Contact form ────────────────────────────────────────── */
.form-card { background:var(--card); border:1px solid var(--border); border-radius:var(--rx); padding:var(--s8); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:var(--s4); }
.form-group { margin-bottom:var(--s5); }
.form-label { display:block; font-size:var(--sm); font-weight:600; color:var(--text-muted); margin-bottom:var(--s2); }
.form-label .req { color:var(--gold); margin-left:2px; }

.form-input, .form-textarea, .form-select {
  width:100%;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r);
  padding:.75rem var(--s4);
  font-family:var(--font);
  font-size:var(--base);
  color:var(--text);
  transition:border-color var(--ease), box-shadow var(--ease);
  appearance:none;
}
.form-input::placeholder,.form-textarea::placeholder { color:var(--text-dim); }
.form-input:focus,.form-textarea:focus,.form-select:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,.1); }
.form-textarea { resize:vertical; min-height:120px; line-height:1.6; }
.form-select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%239896A4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1rem center;
  padding-right:2.5rem;
  cursor:pointer;
}
.form-select option { background:var(--surface); color:var(--text); }
.form-honeypot { display:none; }
.form-submit { width:100%; justify-content:center; font-size:var(--lg); padding:1rem; }
.form-status { display:none; padding:var(--s4); border-radius:var(--r); font-size:var(--sm); font-weight:500; margin-top:var(--s4); text-align:center; }
.form-status.success { display:block; background:rgba(76,175,130,.1); border:1px solid rgba(76,175,130,.3); color:var(--success); }
.form-status.error   { display:block; background:rgba(224,82,82,.1); border:1px solid rgba(224,82,82,.3); color:var(--danger); }

/* Emergency banner inside form */
.emergency-bar {
  background:rgba(201,168,76,.06);
  border:1px solid var(--gold-border);
  border-radius:var(--rl);
  padding:var(--s4) var(--s5);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--s4);
  flex-wrap:wrap;
  margin-bottom:var(--s6);
}
.emergency-bar-left { display:flex; align-items:center; gap:var(--s3); }
.pulse-dot { width:9px; height:9px; background:var(--gold); border-radius:50%; flex-shrink:0; animation:pdot 2s ease-in-out infinite; }
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.4;transform:scale(.7);} }
.emergency-bar strong { font-size:var(--sm); font-weight:700; color:var(--text); }
.emergency-bar span { font-size:var(--sm); color:var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-group { margin-bottom:var(--s10); }
.faq-group-title {
  font-size:var(--xl);
  font-weight:700;
  color:var(--text);
  margin-bottom:var(--s4);
  display:flex;
  align-items:center;
  gap:var(--s3);
  padding-bottom:var(--s3);
  border-bottom:1px solid var(--border);
}
.faq-group-title span { color:var(--gold); }

.faq-item { border:1px solid var(--border); border-radius:var(--rl); margin-bottom:var(--s3); overflow:hidden; transition:border-color var(--ease); }
.faq-item.open { border-color:var(--gold-border); }
.faq-q {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--s4);
  padding:var(--s5) var(--s6);
  font-size:var(--base);
  font-weight:600;
  color:var(--text);
  cursor:pointer;
  background:var(--card);
  transition:background var(--ease), color var(--ease);
  width:100%;
  text-align:left;
  border:none;
  font-family:var(--font);
}
.faq-q:hover { background:var(--card-hover); }
.faq-item.open .faq-q { color:var(--gold); }
.faq-icon { width:22px; height:22px; flex-shrink:0; color:var(--gold); transition:transform var(--ease); }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a { display:none; padding:0 var(--s6) var(--s5); font-size:var(--base); color:var(--text-muted); line-height:1.85; background:var(--card); border-top:1px solid var(--border); }
.faq-item.open .faq-a { display:block; }

/* ── Service page content layout ─────────────────────────── */
.service-layout { display:grid; grid-template-columns:1fr 340px; gap:var(--s12); align-items:start; }

.service-body h2 { font-size:var(--2xl); font-weight:700; color:var(--text); margin-bottom:var(--s4); margin-top:var(--s10); }
.service-body h2:first-child { margin-top:0; }
.service-body h3 { font-size:var(--xl); font-weight:700; color:var(--text); margin-bottom:var(--s3); margin-top:var(--s8); }
.service-body p { color:var(--text-muted); line-height:1.85; margin-bottom:var(--s4); }
.service-body ul { margin-bottom:var(--s6); }
.service-body ul li { display:flex; gap:var(--s3); align-items:flex-start; color:var(--text-muted); margin-bottom:var(--s3); font-size:var(--base); line-height:1.75; }
.service-body ul li::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; flex-shrink:0; margin-top:10px; }
.service-body strong { color:var(--text); font-weight:600; }

.service-body .step-block { background:var(--card); border:1px solid var(--border); border-radius:var(--rl); padding:var(--s6); margin-bottom:var(--s4); }
.service-body .step-block h3 { margin-top:0; font-size:var(--base); }

/* Sidebar */
.sidebar { position:sticky; top:calc(72px + var(--s8)); }
.sidebar-block { background:var(--card); border:1px solid var(--border); border-radius:var(--rx); padding:var(--s6); margin-bottom:var(--s5); }
.sidebar-title { font-size:var(--base); font-weight:700; color:var(--text); margin-bottom:var(--s5); padding-bottom:var(--s4); border-bottom:1px solid var(--border); }
.sidebar-link { display:flex; align-items:center; justify-content:space-between; padding:var(--s3) var(--s4); font-size:var(--sm); color:var(--text-muted); border-radius:var(--r); transition:all var(--ease); margin-bottom:2px; }
.sidebar-link:hover { color:var(--gold); background:var(--gold-bg); }
.sidebar-link.active { color:var(--gold); background:var(--gold-bg); font-weight:600; }
.sidebar-link svg { width:13px; height:13px; opacity:.5; }
.sidebar-cta-btn { display:flex; align-items:center; gap:var(--s3); padding:var(--s4); background:var(--surface); border:1px solid var(--border); border-radius:var(--r); font-size:var(--sm); font-weight:600; color:var(--text); transition:all var(--ease); width:100%; text-align:left; margin-bottom:var(--s3); cursor:pointer; }
.sidebar-cta-btn:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-bg); }
.sidebar-cta-btn svg { width:17px; height:17px; color:var(--gold); flex-shrink:0; }

/* ── Office pages ────────────────────────────────────────── */
.office-layout { display:grid; grid-template-columns:1fr 380px; gap:var(--s12); align-items:start; }
.office-info-item { display:flex; gap:var(--s4); align-items:flex-start; margin-bottom:var(--s5); }
.office-info-icon { width:42px; height:42px; background:var(--gold-bg); border:1px solid var(--gold-border); border-radius:var(--r); display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; }
.office-info-icon svg { width:18px; height:18px; }
.office-info-label { font-size:var(--xs); font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); margin-bottom:2px; }
.office-info-value { font-size:var(--base); color:var(--text); font-weight:500; }
.office-info-value a:hover { color:var(--gold); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background:var(--surface); border-top:1px solid var(--border); padding-top:var(--s16); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:var(--s10); margin-bottom:var(--s12); }
.footer-brand p { font-size:var(--sm); color:var(--text-dim); line-height:1.75; max-width:280px; margin-block:var(--s4); }
.footer-heading { font-size:var(--sm); font-weight:700; text-transform:uppercase; letter-spacing:.09em; color:var(--gold); margin-bottom:var(--s5); }
.footer-links { display:flex; flex-direction:column; gap:var(--s3); }
.footer-link { font-size:var(--sm); color:var(--text-dim); transition:color var(--ease); }
.footer-link:hover { color:var(--gold); }
.footer-contact-row { display:flex; gap:var(--s3); align-items:flex-start; margin-bottom:var(--s4); }
.footer-contact-row svg { width:15px; height:15px; color:var(--gold); flex-shrink:0; margin-top:3px; }
.footer-contact-row span { font-size:var(--sm); color:var(--text-dim); line-height:1.6; }
.footer-bottom { border-top:1px solid var(--border); padding-block:var(--s6); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:var(--s4); }
.footer-bottom p { font-size:var(--sm); color:var(--text-dim); }
.footer-bottom-links { display:flex; gap:var(--s5); }
.footer-bottom-links a { font-size:var(--sm); color:var(--text-dim); transition:color var(--ease); }
.footer-bottom-links a:hover { color:var(--gold); }

/* ── Floating buttons ────────────────────────────────────── */
.float-btns { position:fixed; bottom:var(--s6); right:var(--s6); z-index:900; display:flex; flex-direction:column; gap:var(--s3); align-items:flex-end; }
.float-btn { display:flex; align-items:center; gap:var(--s2); padding:.65rem 1.1rem; border-radius:var(--pill); font-size:var(--sm); font-weight:700; box-shadow:0 4px 20px rgba(0,0,0,.45); transition:all var(--ease); white-space:nowrap; }
.float-btn:hover { transform:translateX(-3px); box-shadow:0 6px 26px rgba(0,0,0,.55); }
.float-btn svg { width:17px; height:17px; }
.float-wa   { background:#25D366; color:#fff; }
.float-line { background:#06C755; color:#fff; }
.float-call { background:var(--gold); color:#0C0E13; }

/* ── Thank you page ──────────────────────────────────────── */
.thankyou-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:var(--s8); text-align:center; }
.thankyou-card { max-width:520px; background:var(--card); border:1px solid var(--gold-border); border-radius:var(--rx); padding:var(--s12) var(--s10); }
.thankyou-icon { width:68px; height:68px; background:var(--gold-bg); border:2px solid var(--gold-border); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto var(--s6); color:var(--gold); }

/* ── Utility ─────────────────────────────────────────────── */
.text-gold { color:var(--gold); }
.text-muted { color:var(--text-muted); }
.text-center { text-align:center; }
.w-full { width:100%; }
.divider { border:none; border-top:1px solid var(--border); margin-block:var(--s8); }

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1024px){
  .split { grid-template-columns:1fr; gap:var(--s10); }
  .split.reverse > :first-child { order:0; }
  .split-image img { height:380px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:var(--s8); }
  .service-layout { grid-template-columns:1fr; }
  .sidebar { position:static; }
  .office-layout { grid-template-columns:1fr; }
  .credentials-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px){
  :root { --s20:3.5rem; --s16:3rem; --s12:2.25rem; }
  .nav-links,.nav-right > .btn,.nav-right > a:not(.btn-emergency) { display:none; }
  .nav-toggle { display:flex; }
  .nav-right { gap:var(--s2); }
  .hero h1 { font-size:var(--4xl); }
  .hero-stats { gap:var(--s6); }
  .services-grid { grid-template-columns:1fr; }
  .offices-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .cta-strip-inner { flex-direction:column; text-align:center; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .float-btn span { display:none; }
  .float-btn { padding:.85rem; border-radius:50%; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .credentials-grid { grid-template-columns:1fr; }
}

@media(max-width:480px){
  .container { padding-inline:var(--s4); }
  .section-title { font-size:var(--3xl); }
  .hero-actions { flex-direction:column; width:100%; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .contact-cta-bar { flex-direction:column; }
  .contact-cta-bar .btn { width:100%; justify-content:center; }
}
