/* ============================================================
   Quick Lock & Key Service — Homepage Stylesheet
   Modern Redesign | Mobile-First | Dark Blue / White / Gold
   ============================================================ */

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

/* ─── Custom Properties ─── */
:root {
  --bg:       #e8eef5;
  --surface:  #f0f4f8;
  --surface2: #dce8f0;
  --darkest:  #dce8f0;
  --accent:   #2563eb;
  --accent-h: #1d4ed8;
  --gold:     #f5a623;
  --gold-h:   #d9891a;
  --white:    #ffffff;
  --text:     #2d2d2d;
  --muted:    #4a5568;
  --border:   rgba(0,0,0,.10);

  --fh: 'Montserrat', sans-serif;
  --fb: 'Inter', sans-serif;

  --r:   14px;
  --r-lg: 22px;

  --max: 1200px;
  --gap: clamp(4.5rem, 9vw, 8rem);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 68px; }
body { font-family: var(--fb); font-size: 1rem; line-height: 1.7; color: var(--text); background: var(--bg); overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ─── Utility ─── */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.tc   { text-align: center; }
.cg   { color: var(--gold); }
.ca   { color: var(--accent); }

/* ─── Section labels ─── */
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.28);
  border-radius: 99px;
  padding: .3rem 1rem;
  margin-bottom: 1.1rem;
}

/* ─── Section headings ─── */
.sh {
  font-family: var(--fh);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #1a1a2a;
  line-height: 1.12;
  margin-bottom: .85rem;
}
.sd {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 600px;
}
.sd.center { margin: 0 auto; }
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2.1rem;
  border-radius: 9px;
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all .22s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-gold    { background: var(--gold);    color: #0f172a; }
.btn-gold:hover { background: var(--gold-h); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,158,11,.35); }
.btn-blue    { background: var(--accent);  color: var(--white); }
.btn-blue:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,99,235,.4); }
.btn-ghost   { background: transparent; color: #1a1a2a; border: 2px solid rgba(0,0,0,.3); }
.btn-ghost:hover { border-color: #1a1a2a; background: rgba(0,0,0,.05); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }


/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #3a4a5c;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;        /* nav bar height */
  min-height: 68px;
  max-height: 68px;
  gap: 2rem;
  overflow: hidden;    /* prevent any child from expanding the bar */
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
  background: none;
  overflow: hidden;
}
.nav-logo-img {
  height: 56px;
  max-height: 56px;
  width: auto;
  display: block;
}

/* Desktop links — centered between logo and right side */
.nav-links { display: flex; align-items: center; gap: 1.5rem; flex: 1; justify-content: center; }
.nav-links a { font-size: 1.06rem; font-weight: 600; color: #ffffff; transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #ffd700; }

/* Right side */
.nav-right { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.nav-phone  {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25;
}
.nav-phone-lbl { font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.nav-phone-num { font-size: .95rem; font-weight: 700; color: #ffd700; white-space: nowrap; }
.nav-call {
  padding: .55rem 1.25rem;
  background: #ffd700;
  color: #0f172a;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 8px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-call:hover { background: var(--gold-h); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 20px; cursor: pointer; background: none; border: none;
}
.hamburger span {
  display: block; height: 2.5px; background: #ffffff; border-radius: 3px;
  transition: all .28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ── Right slide-out menu overlay ── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1998;
  opacity: 0;
  transition: opacity .3s ease;
}
.menu-overlay.open {
  display: block;
  opacity: 1;
}

/* ── Slide-out panel ── */
.menu-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  background: #f0f4f8;
  border-left: 1px solid rgba(0,0,0,.10);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.menu-panel.open { transform: translateX(0); }

/* Panel header */
.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.10);
  flex-shrink: 0;
}
.menu-panel-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Close button */
.menu-close {
  position: relative;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.menu-close:hover { background: rgba(0,0,0,.12); }
.menu-close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 2px;
  background: #1a1a2a;
  border-radius: 2px;
  display: block;
}
.menu-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.menu-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }

/* Panel links */
.menu-panel-nav {
  display: flex;
  flex-direction: column;
  padding: .75rem 0;
  flex: 1;
}
.menu-panel-link {
  display: flex;
  align-items: center;
  padding: .9rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: color .2s, background .2s, padding-left .2s;
}
.menu-panel-link:hover,
.menu-panel-link.active {
  color: #1a1a2a;
  background: rgba(0,0,0,.04);
  padding-left: 1.9rem;
}
.menu-panel-link.active { color: var(--gold); }

/* Panel footer */
.menu-panel-footer {
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,.10);
  flex-shrink: 0;
}
.menu-panel-cta {
  display: block;
  padding: .9rem 1rem;
  background: var(--gold);
  color: #0f172a;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 10px;
  text-align: center;
  transition: background .2s;
}
.menu-panel-cta:hover { background: var(--gold-h); }
.menu-panel-tagline {
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: .04em;
}


/* ════════════════════════════════════════
   HERO — SPLIT LAYOUT (text left / visual right)
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: #2d3748;
  overflow: hidden;
}
/* Subtle ambient glow on dark bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(37,99,235,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 35%, rgba(245,166,35,.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Text column ── */
.hero-text { position: relative; z-index: 2; }

/* ── Right: photo panel — blended into dark bg ── */
.hero-visual {
  position: relative;
  height: clamp(400px, 50vw, 580px);
  background: rgba(255,255,255,.03);      /* nearly transparent — bg shows through */
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 24px 64px rgba(0,0,0,.5);
}
/* Dashed frame placeholder */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(245,158,11,.2);
  border-radius: 18px;
  z-index: 0;
  pointer-events: none;
}
/* Filename label placeholder */
.hero-visual::after {
  content: attr(data-img);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: .72rem;
  font-family: monospace;
  color: rgba(245,158,11,.35);
  letter-spacing: .04em;
  text-align: center;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
/* The actual photo */
.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 2;
}
/* Edge-blend overlay — fades photo into dark navy background at all edges */
.hv-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 72% 76% at 50% 48%,
    transparent 18%,
    rgba(45,55,72,.30) 46%,
    rgba(45,55,72,.72) 68%,
    #2d3748 86%
  );
  z-index: 3;
  pointer-events: none;
}

/* Floating glassmorphism stat badges */
.hv-badge {
  position: absolute;
  background: rgba(5,12,24,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: .85rem 1.2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 110px;
}
.hv-b1 { top:    1.6rem; left:  1.6rem; }
.hv-b2 { top:    1.6rem; right: 1.6rem; }
.hv-b3 { bottom: 1.6rem; left:  1.6rem; }
.hv-b4 { bottom: 1.6rem; right: 1.6rem; }
.hv-b-num {
  font-family: var(--fh);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hv-b-icon { font-size: 1.3rem; line-height: 1; }
.hv-b-lbl {
  font-size: .67rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

.hero-eye {
  font-size: clamp(1rem, 1.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hero-eye::before {
  content: '';
  display: inline-block;
  width: 34px; height: 3px;
  background: #ffd700;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--fh);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

/* Hero checklist — 2-col grid on dark bg */
.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .9rem;
  margin-bottom: 2.4rem;
  list-style: none;
  padding: 0;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.35;
}
.hero-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.45);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}

/* Legacy trust pills — kept for backward compat */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .95rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

/* CTA buttons */
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }


/* ════════════════════════════════════════
   STATS BAR — icon + title + desc strip
   ════════════════════════════════════════ */
.stats {
  background: rgba(0,0,0,.35);
  background: #1a2535;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
/* Legacy number/label — hidden in new layout */
.stat-num { display: none; }
.stat-lbl { display: none; }

/* New stat item layout */
.stat-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  opacity: .9;
}
.stat-body { display: flex; flex-direction: column; gap: .12rem; }
.stat-title {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.stat-desc {
  font-size: .73rem;
  font-weight: 500;
  color: rgba(255,255,255,.58);
  line-height: 1.3;
}


/* ════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════ */
.trust-bar {
  background: #dce8f0;
  border-top: 1px solid rgba(0,0,0,.09);
  border-bottom: 1px solid rgba(0,0,0,.09);
  height: 72px;
  display: flex;
  align-items: center;
}
.trust-bar-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.tb-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  font-weight: 600;
  color: #1a1a2a;
  white-space: nowrap;
  padding: 0 1.5rem;
  line-height: 1;
}
.tb-check {
  display: inline-block;
  font-size: .9rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1;
  font-style: normal;
}
.tb-sep {
  display: inline-block;
  color: rgba(0,0,0,.2);
  font-size: .8rem;
  font-weight: 300;
  flex-shrink: 0;
}

/* Mobile: 2 × 2 grid */
@media (max-width: 640px) {
  .trust-bar { height: auto; }
  .trust-bar-inner {
    flex-wrap: wrap;
    padding: 0;
    justify-content: flex-start;
  }
  .tb-sep { display: none; }
  .tb-item {
    width: 50%;
    padding: .85rem 1rem;
    font-size: .8rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-sizing: border-box;
  }
  .tb-item:nth-child(odd)  { border-right: 1px solid rgba(0,0,0,.08); }
  .tb-item:nth-last-child(-n+2) { border-bottom: none; }
}


/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services { background: var(--bg); padding: clamp(5rem, 10vw, 9rem) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.9rem 1.5rem;            /* column-gap matches .wrap's 1.5rem side padding */
  padding: 2.5rem 0;             /* vertical only — horizontal handled by .wrap */
}
/* 5th card — center in last row */
.services-grid .svc-card:nth-child(4) { grid-column: 1; }
.services-grid .svc-card:nth-child(5) { grid-column: 2; }

/* ── Service card photo placeholder ── */
.svc-card-photo {
  position: relative;
  width: 100%;
  height: 140px;
  background: #dce8f0;                    /* light placeholder while image loads */
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
/* Dashed frame — disappears once real photo loads */
.svc-card-photo::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(245,158,11,.2);
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
}
/* Filename label — disappears once real photo loads */
.svc-card-photo::after {
  content: attr(data-img);
  position: absolute;
  bottom: .7rem;
  left: 0; right: 0;
  text-align: center;
  font-size: .64rem;
  font-family: monospace;
  color: rgba(245,158,11,.45);
  letter-spacing: .04em;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}
/* The actual photo */
.svc-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform .35s ease;
}
.svc-card:hover .svc-card-photo img { transform: scale(1.05); }

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;                  /* photo flush to card edge */
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  overflow: hidden;
}
/* Stagger: odd cards up, even cards down */
.services-grid .svc-card:nth-child(odd)  { transform: translateY(-35px); }
.services-grid .svc-card:nth-child(even) { transform: translateY(35px); }

.services-grid .svc-card:nth-child(odd):hover  {
  transform: translateY(calc(-35px - 6px));
  border-color: rgba(37,99,235,.4);
  box-shadow: 0 12px 35px rgba(0,0,0,.14);
}
.services-grid .svc-card:nth-child(even):hover {
  transform: translateY(calc(35px - 6px));
  border-color: rgba(37,99,235,.4);
  box-shadow: 0 12px 35px rgba(0,0,0,.14);
}
.svc-card-body {
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: .3rem;
  flex-shrink: 0;
}
/* Different icon tints per service */
.svc-icon.blue   { background: rgba(37,99,235,.18);  border: 1px solid rgba(37,99,235,.3);  }
.svc-icon.gold   { background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.28);}
.svc-icon.teal   { background: rgba(20,184,166,.15); border: 1px solid rgba(20,184,166,.28);}
.svc-icon.violet { background: rgba(139,92,246,.15); border: 1px solid rgba(139,92,246,.28);}
.svc-icon.green  { background: rgba(34,197,94,.15);  border: 1px solid rgba(34,197,94,.28); }

.svc-card h3 {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 900;
  color: #1a1a2a;
}
.svc-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; flex: 1; }
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  gap: .75rem;
}
.svc-link { font-size: .85rem; font-weight: 600; color: var(--accent); transition: color .2s; }
.svc-link:hover { color: #93c5fd; }
.svc-call {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem 1.1rem;
  background: var(--gold);
  color: #0f172a;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.svc-call:hover { background: var(--gold-h); transform: scale(1.04); }




/* Residential Locksmith uses the shared .ck-section / .ck-grid / .ck-img-wrap system */


/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.how {
  background: var(--bg);
  padding: var(--gap) 0;
  scroll-margin-top: 68px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: flex; align-items: flex-start; gap: 1.4rem;
  padding: 1.75rem 0;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px; top: 70px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(37,99,235,.6), rgba(37,99,235,.05));
}
.how-num {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--accent), #1e40af);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 1.15rem; font-weight: 900;
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(37,99,235,.18), 0 6px 20px rgba(37,99,235,.3);
  z-index: 1; flex-shrink: 0;
}
.how-step-text h4 {
  font-family: var(--fh);
  font-size: 1.05rem; font-weight: 700;
  color: #1a1a2a; margin-bottom: .4rem;
}
.how-step-text p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

.how-visual {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.10);
}
.how-visual-title {
  font-family: var(--fh);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.equip-items { display: flex; flex-direction: column; gap: 1rem; }
.equip-item {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.equip-item-icon { font-size: 1.6rem; flex-shrink: 0; }
.equip-item-name { font-size: .88rem; font-weight: 700; color: #1a1a2a; }
.equip-item-desc { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.how-cta-box {
  background: linear-gradient(135deg, rgba(37,99,235,.2) 0%, rgba(245,158,11,.1) 100%);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--r);
  padding: 1.4rem 1.6rem;
  text-align: center;
}
.how-cta-box p { font-size: .9rem; color: var(--text); margin-bottom: 1rem; }


/* ════════════════════════════════════════
   SERVICE AREAS
   ════════════════════════════════════════ */
.areas {
  background: var(--surface2);
  padding: var(--gap) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.areas-chips {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.3rem;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 99px;
  font-size: .9rem; font-weight: 600;
  color: #1a1a2a;
  transition: border-color .2s, background .2s, transform .2s;
}
.chip:hover {
  border-color: var(--gold);
  background: rgba(245,158,11,.08);
  transform: translateY(-2px);
}
.chip-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.areas-note {
  max-width: 520px; margin: 0 auto;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.22);
  border-radius: var(--r);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: .95rem; color: var(--text); line-height: 1.7;
}
.areas-note a { color: var(--gold); font-weight: 700; }
.areas-note a:hover { color: var(--gold-h); }


/* ════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════ */
.reviews { background: var(--bg); padding: var(--gap) 0; scroll-margin-top: 190px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rev-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  position: relative;
  overflow: hidden;
}
.rev-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: Georgia, serif;
  font-size: 8rem;
  color: rgba(245,158,11,.07);
  line-height: 1;
  pointer-events: none;
}
.rev-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,158,11,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.rev-stars { font-size: 1.15rem; color: var(--gold); letter-spacing: .08em; }
.rev-text {
  font-size: .92rem; color: var(--text); line-height: 1.75;
  font-style: italic; flex: 1;
}
.rev-footer { display: flex; align-items: center; gap: .9rem; padding-top: .5rem; border-top: 1px solid var(--border); }
.rev-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), #1e40af);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: .88rem; font-weight: 900;
  color: var(--white); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
}
.rev-name  { font-size: .9rem; font-weight: 700; color: #1a1a2a; }
.rev-meta  { font-size: .75rem; color: var(--muted); margin-top: .1rem; }
.rev-check { color: #4ade80; font-weight: 600; }


/* ════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════ */
.cta {
  background:
    linear-gradient(135deg, #1e3fa0 0%, #2563eb 100%);
  border-top: 1px solid rgba(37,99,235,.3);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta .sh { margin-bottom: 1rem; }
.cta .sd { margin: 0 auto 2.5rem; color: #ffffff; font-size: 1.125rem; font-weight: 500; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.1rem; }
.cta-btns .btn { padding: 1.1rem 2.5rem; font-size: 1.05rem; }


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--darkest);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand { display: flex; flex-direction: column; gap: .9rem; }
.ft-logo { display: flex; align-items: center; gap: .7rem; }
.ft-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), #1e40af);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.ft-logo-name  { font-family: var(--fh); font-size: 1rem; font-weight: 900; color: #1a1a2a; }
.ft-logo-sub   { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.footer-desc   { font-size: .85rem; color: var(--muted); line-height: 1.7; max-width: 290px; }
.footer-contact a {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; font-weight: 700; color: var(--gold);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold-h); }

.footer-col h5 {
  font-family: var(--fh);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: #1a1a2a; margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { font-size: .86rem; color: var(--muted); transition: color .2s, padding .2s; }
.footer-col ul a:hover { color: #1a1a2a; padding-left: .3rem; }

.ft-area-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.ft-tag {
  padding: .3rem .7rem;
  background: rgba(0,0,0,.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .74rem; color: var(--muted);
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.4rem 0;
}
.footer-bottom p { font-size: .79rem; color: var(--muted); }

.footer-spacer { height: 66px; display: none; }


/* ════════════════════════════════════════
   STICKY MOBILE CALL BAR
   ════════════════════════════════════════ */
.call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--gold);
  padding: .95rem 1.5rem;
  align-items: center; justify-content: center;
  gap: .6rem;
  box-shadow: 0 -6px 28px rgba(0,0,0,.5);
}
.call-bar a {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--fh); font-size: 1.05rem; font-weight: 900;
  color: #0f172a; letter-spacing: .03em;
}


/* ════════════════════════════════════════
   CAR KEY REPLACEMENT FEATURE SECTION
   ════════════════════════════════════════ */
.ck-section {
  background: var(--bg);
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  scroll-margin-top: 68px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}

.ck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Left: text column */
.ck-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ck-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.28);
  border-radius: 99px;
  padding: .3rem 1rem;
}

.ck-title {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #1a1a2a;
  line-height: 1.1;
}

.ck-desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--text);
  line-height: 1.75;
  max-width: 480px;
}

.ck-features {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  list-style: none;  /* reset <ul> bullet */
  padding: 0;
  margin: 0;
}

.ck-feature {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.1rem;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: #1a1a2a;
  transition: background .2s, border-color .2s, transform .2s;
}
.ck-feature:hover {
  background: rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.3);
  transform: translateX(4px);
}

.ck-check {
  width: 24px; height: 24px; min-width: 24px;
  background: linear-gradient(135deg, var(--accent), #1e40af);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
  flex-shrink: 0;
}

.ck-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1.1rem 2.5rem;
  background: var(--gold);
  color: #0f172a;
  border-radius: 10px;
  font-family: var(--fb);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .2s, box-shadow .2s;
  align-self: flex-start;
  white-space: nowrap;
}
.ck-btn:hover {
  background: var(--gold-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,.4);
}

/* Right: image column */
.ck-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #dce8f0;
  height: clamp(380px, 52vw, 580px);
  box-shadow:
    0 16px 48px rgba(0,0,0,.14),
    0 0 0 1px rgba(0,0,0,.08);
}
/* Dashed placeholder frame — visible only when photo is missing */
.ck-img-wrap::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(245,158,11,.2);
  border-radius: 14px;
  pointer-events: none;
  z-index: 0;
}
/* Filename label — visible only when photo is missing */
.ck-img-wrap::after {
  content: attr(data-img);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: .72rem;
  font-family: monospace;
  color: rgba(245,158,11,.4);
  letter-spacing: .04em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
/* The actual photo — fills the entire container, hides placeholders */
.ck-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 2;
  transition: transform .4s ease;
}
.ck-img-wrap:hover img { transform: scale(1.02); }


/* ════════════════════════════════════════
   CAR LOCKOUT — FEATURED SECTION
   Mirrors Car Key layout with image LEFT, text RIGHT
   ════════════════════════════════════════ */
.lo-section {
  background: var(--surface);   /* #0d1829 — alternates with Car Key's #0A1E3F */
}

/* Subheadline (gold hook line between title and description) */
.ck-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--gold);
  font-weight: 600;
  line-height: 1.6;
  margin-top: -.5rem;            /* tighten gap after title */
}

/* (gradient and badge overlay CSS removed — clean image-only display) */

/* ── Service tag pills (compact list inside featured sections) ── */
.ck-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.ck-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem 1rem;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.22);
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  transition: background .18s, border-color .18s;
}
.ck-pill::before {
  content: '→';
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
}
.ck-pill:hover {
  background: rgba(245,158,11,.15);
  border-color: rgba(245,158,11,.38);
}

/* Mobile: image on top, text below */
@media (max-width: 768px) {
  .lo-section .ck-img-wrap { order: -1; }
}


/* ════════════════════════════════════════
   SERVICE PAGES — SPLIT HERO
   ════════════════════════════════════════ */
.svc-hero {
  background: #2d3748;
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 10% 55%, rgba(37,99,235,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 30%, rgba(245,166,35,.07) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.svc-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left: text column */
.svc-hero-text { position: relative; z-index: 2; }

/* Right: photo blended into dark bg — no border/frame */
.svc-hero-visual {
  position: relative;
  height: clamp(280px, 38vw, 420px);
  background: transparent;
  border-radius: 0;
  border: none;
  overflow: hidden;
  box-shadow: none;
}
.svc-hero-visual::before { content: none; }
.svc-hero-visual::after  { content: none; }
.svc-hero-visual > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; z-index: 2;
}
/* Blend photo edges into dark hero background */
.svc-hv-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 72% 76% at 50% 48%,
    transparent 18%,
    rgba(45,55,72,.30) 46%,
    rgba(45,55,72,.72) 68%,
    #2d3748 88%
  );
  z-index: 3; pointer-events: none;
}
.svc-breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .74rem; font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
  letter-spacing: .02em;
}
.svc-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.svc-breadcrumb a:hover { color: var(--gold); }
.svc-breadcrumb .sep { color: rgba(255,255,255,.25); }
.svc-hero h1 {
  font-family: var(--fh);
  font-size: clamp(1.55rem, 3.8vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.svc-hero h1 em { color: var(--gold); font-style: normal; }
.svc-hero-sub {
  font-size: clamp(.88rem, 1.9vw, 1rem);
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-bottom: 1.15rem;
  max-width: 580px;
}
.svc-hero-btns {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin-bottom: 1.15rem;
}
.svc-hero-btns .btn { padding: .78rem 1.65rem; font-size: .93rem; }
.svc-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.svc-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .8rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  font-size: .71rem; font-weight: 700;
  color: rgba(255,255,255,.88);
}
.svc-badge::before { content: '✓'; color: var(--gold); font-weight: 900; }

/* ── Service page body sections ── */
.sp-section { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--bg); }
.sp-section.alt { background: var(--surface); }

/* ── 2-col split layout ── */
.sp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sp-split.flip > :first-child { order: 2; }
.sp-split.flip > :last-child  { order: 1; }

/* ── Image placeholder (service pages) ── */
.sp-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface2);
  height: clamp(260px, 38vw, 400px);
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  flex-shrink: 0;
}
.sp-img::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1.5px dashed rgba(245,158,11,.2);
  border-radius: 10px;
  z-index: 0; pointer-events: none;
}
.sp-img::after {
  content: attr(data-img);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: .68rem; font-family: monospace;
  color: rgba(245,158,11,.4);
  letter-spacing: .04em; text-align: center;
  pointer-events: none; z-index: 0; white-space: nowrap;
}
.sp-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
  transition: transform .4s ease;
}
.sp-img:hover img { transform: scale(1.03); }

/* ── Feature list (service pages) ── */
.sp-feat-list {
  display: flex; flex-direction: column;
  gap: .55rem; list-style: none;
  padding: 0; margin: 0;
}

/* ── Service type cards ── */
.sp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 1.1rem;
  margin-top: 2rem;
}
.sp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.3rem 1.2rem;
  transition: border-color .2s, transform .22s, box-shadow .22s;
}
.sp-section.alt .sp-card { background: var(--surface2); }
.sp-card:hover {
  border-color: rgba(37,99,235,.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.sp-card-icon { font-size: 1.65rem; margin-bottom: .5rem; }
.sp-card h3 { font-family: var(--fh); font-size: .93rem; font-weight: 700; color: #1a1a2a; margin-bottom: .3rem; }
.sp-card p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── Vehicle brand logos grid ── */
.brands-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--border);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .65rem;
  margin-top: 1.75rem;
}
.brand-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem .6rem .85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
  cursor: default;
  min-height: 96px;
}
.brand-svg-wrap {
  width: 48px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-svg-wrap svg,
.brand-svg-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand-svg-wrap--more {
  background: rgba(37,99,235,.08);
  border-radius: 8px;
}
.brand-more-icon {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.brand-chip span {
  font-family: var(--fh);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #2c3e56;
  text-transform: uppercase;
  line-height: 1.2;
}
.brand-chip:hover {
  border-color: rgba(30,58,95,.45);
  background: rgba(30,58,95,.07);
  color: #4a6080;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0,0,0,.09);
}
.brands-note {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
}
.brands-note a { color: var(--accent); font-weight: 600; }

/* ════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════ */
#scrollTop {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 998;
  width: 46px; height: 46px;
  background: var(--accent); color: var(--white);
  border-radius: 50%; font-size: 1.1rem;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
  transition: background .2s, transform .2s;
}
#scrollTop:hover { background: var(--accent-h); transform: translateY(-2px); }
#scrollTop.show  { display: flex; }


/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .nav-links  { display: none; }
  .nav-phone  { display: none; }
  .hamburger  { display: flex; }
  .nav-logo-img { height: 48px; max-height: 48px; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); border-right: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .svc-card:nth-child(4) { grid-column: auto; }
  .services-grid .svc-card:nth-child(5) {
    grid-column: 1 / 3;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }

  .call-bar      { display: flex; }
  .footer-spacer { display: block; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Service pages ── */
  .svc-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-hero-visual { height: clamp(200px, 58vw, 280px); order: -1; }
  .sp-split { grid-template-columns: 1fr; }
  .sp-split.flip > :first-child { order: 0; }
  .sp-split.flip > :last-child  { order: 0; }
  .sp-img   { height: clamp(200px, 55vw, 280px); order: -1 !important; }
  .sp-cards { grid-template-columns: 1fr 1fr; }
  .svc-hero-btns { flex-direction: column; }
  .svc-hero-btns .btn { width: 100%; justify-content: center; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }

  /* ── Hero: stack — photo on top, text below ── */
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.25rem 3rem;
  }
  .hero-visual {
    height: clamp(240px, 65vw, 340px);
    order: -1;
    border-radius: 16px;
  }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hv-badge { padding: .45rem .7rem; min-width: 72px; }
  .hv-b-num { font-size: .9rem; }
  .hv-b-lbl { font-size: .55rem; }
  .hv-b1 { top: .65rem; left: .65rem; }
  .hv-b2 { top: .65rem; right: .65rem; }
  .hv-b3 { bottom: .65rem; left: .65rem; }
  .hv-b4 { bottom: .65rem; right: .65rem; }

  /* ── Featured service sections: stack vertically ── */
  .ck-section { padding: 3rem 0; }
  .ck-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  /* Image always on top on mobile */
  .ck-img-wrap {
    order: -1 !important;
    height: 280px;
    border-radius: 16px;
  }
  .ck-title { font-size: clamp(1.8rem, 7vw, 2rem); }
  .ck-sub   { font-size: .95rem; }
  .ck-desc  { max-width: 100%; font-size: .93rem; }
  .ck-btn   { width: 100%; justify-content: center; text-align: center; }
  .ck-text  { gap: 1.25rem; }

  /* ── How It Works ── */
  .how-grid  { grid-template-columns: 1fr; }
  .how-visual { display: none; }

  /* ── Cards & grids ── */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .svc-card:nth-child(5) { grid-column: 1; max-width: 100%; }
  .reviews-grid  { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-desc   { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  #scrollTop { bottom: 6rem; right: 1rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL (≤ 480px)
   ════════════════════════════════════════ */
@media (max-width: 480px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: .7rem .9rem; }
  .nav-logo-img  { height: 42px; max-height: 42px; }
  .pill          { font-size: .74rem; padding: .38rem .8rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns .btn  { width: 100%; justify-content: center; }
  .sp-cards { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ════════════════════════════════════════
   NAV ENHANCEMENTS
   ════════════════════════════════════════ */

/* Shadow appears once user scrolls */
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
}

/* Animated underline on desktop nav links */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }


/* ════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════
   SERVICE IMAGE CARDS
   ════════════════════════════════════════ */
.svc-grid-section {
  background: var(--darkest);
  padding: clamp(5rem, 10vw, 9rem) 0;
  scroll-margin-top: 68px;
}

/* 2 × 2 grid */
.img-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;                     /* matches .wrap's 1.5rem side padding */
  margin-top: 2rem;
  max-width: 100%;                 /* fill the wrap — equal side spacing */
  padding: 2.5rem 0;               /* vertical only — horizontal handled by .wrap */
}

/* Individual card */
.img-card {
  position: relative;
  display: block;
  height: clamp(183px, 23vw, 285px);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background: #dce8f0;           /* light placeholder while image loads */
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  transition: box-shadow .35s ease, transform .35s ease;
}
/* Stagger: odd cards up, even cards down */
.img-cards .img-card:nth-child(odd)  { transform: translateY(-35px); }
.img-cards .img-card:nth-child(even) { transform: translateY(35px); }

.img-cards .img-card:nth-child(odd):hover  { transform: translateY(calc(-35px - 5px)); box-shadow: 0 24px 60px rgba(0,0,0,.7); }
.img-cards .img-card:nth-child(even):hover { transform: translateY(calc(35px  - 5px)); box-shadow: 0 24px 60px rgba(0,0,0,.7); }

/* Full-bleed background image */
.img-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.img-card:hover .img-card-bg { transform: scale(1.07); }

/* Dark gradient overlay — stronger at bottom where text lives */
.img-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(5,10,20,.97)  0%,
      rgba(5,10,20,.82)  30%,
      rgba(5,10,20,.35)  60%,
      rgba(5,10,20,.08) 100%
    );
  transition: background .35s ease;
}
.img-card:hover .img-card-overlay {
  background:
    linear-gradient(
      to top,
      rgba(5,10,20,1)    0%,
      rgba(5,10,20,.88)  30%,
      rgba(5,10,20,.45)  62%,
      rgba(5,10,20,.12) 100%
    );
}

/* Gold accent line along the bottom edge */
.img-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  z-index: 3;
  opacity: 0;
  transition: opacity .35s ease;
}
.img-card:hover::after { opacity: 1; }

/* Text content — anchored to bottom */
.img-card-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 0.9rem 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.img-card-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.img-card-title {
  font-family: var(--fh);
  font-size: clamp(.82rem, 1.36vw, 1.04rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

.img-card-desc {
  font-size: clamp(.82rem, 1.3vw, .9rem);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
  /* Hidden by default, slides up on hover */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height .35s ease, opacity .3s ease .05s, transform .3s ease .05s;
}
.img-card:hover .img-card-desc {
  max-height: 4rem;
  opacity: 1;
  transform: translateY(0);
}

/* Learn More button */
.img-card-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .35rem;
  padding: .6rem 1.4rem;
  background: var(--gold);
  color: #0f172a;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 8px;
  align-self: flex-start;
  transition: background .2s, transform .2s;
}
.img-card:hover .img-card-btn { background: var(--gold-h); transform: translateY(-1px); }

.ic-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.img-card:hover .ic-arrow { transform: translateX(4px); }

/* Responsive */
@media (max-width: 700px) {
  .img-cards { grid-template-columns: 1fr; gap: 1.25rem; padding: 0; }
  .img-card  { height: clamp(260px, 72vw, 340px); }
  .img-card-body { padding: 1.5rem; }
  /* Remove stagger on single-column mobile */
  .img-cards .img-card:nth-child(odd),
  .img-cards .img-card:nth-child(even) { transform: none; }
  .img-cards .img-card:nth-child(odd):hover,
  .img-cards .img-card:nth-child(even):hover { transform: translateY(-5px); }
  .img-card:hover .img-card-desc {
    max-height: 5rem;
  }
}

@media (max-width: 640px) {
  /* Remove stagger on single-column mobile */
  .services-grid .svc-card:nth-child(odd),
  .services-grid .svc-card:nth-child(even) { transform: none; }
  .services-grid .svc-card:nth-child(odd):hover,
  .services-grid .svc-card:nth-child(even):hover { transform: translateY(-6px); }
  .services-grid { padding: 0; gap: 1rem; }
}


/* ============================================================
   COMPAT — Missing classes for About & Contact pages
   ============================================================ */

/* CSS variable aliases (old names used in inline styles) */
:root {
  --color-surface:   var(--surface);
  --color-gray-400:  var(--muted);
  --color-gray-500:  #6b7280;
  --radius-md:       var(--r);
  --radius-sm:       6px;
  --color-accent-lt: #60a5fa;
  --color-white:     #ffffff;
  --color-success:   #22c55e;
  --transition:      all .22s ease;
}

/* ── Text-based nav logo ── */
.nav-logo-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
}
.nav-logo-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── Scroll-top compat (.visible = legacy, .show = current) ── */
#scrollTop.visible { display: flex; }

/* ── Call-bar when the <a> itself carries the class ── */
a.call-bar {
  display: none;
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: .03em;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 1024px) { a.call-bar { display: flex; justify-content: center; align-items: center; } }

/* ── Container alias ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Page hero (About / Contact) ── */
.page-hero {
  background: #2d3748;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: var(--fh);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: .85rem;
  margin-top: .5rem;
}
.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb { color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero .section-label {
  background: rgba(245,166,35,.15);
  border-color: rgba(245,166,35,.35);
  color: var(--gold);
}
/* Buttons on dark hero background */
.page-hero .btn-outline,
.page-hero .btn-ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,.35);
}
.page-hero .btn-outline:hover,
.page-hero .btn-ghost:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(0,0,0,.3); }

/* ── Text accent ── */
.text-accent { color: var(--gold); }

/* ── Section label (small gold tag badge) ── */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.28);
  border-radius: 99px;
  padding: .3rem 1rem;
  margin-bottom: 1rem;
}

/* ── Content sections ── */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--bg);
}
.section.bg-surface,
section.bg-surface,
.bg-surface { background: var(--surface); }
.section-sm {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  background: var(--bg);
}

/* ── Headings inside generic sections ── */
.section h2, .section-sm h2 {
  font-family: var(--fh);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #1a1a2a;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.section h3 {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2a;
  margin-bottom: .4rem;
}
.section h4 {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 700;
  color: #1a1a2a;
}

/* ── Section header (centered intro block) ── */
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header.center h2,
.section-header.center h3 { text-align: center; }
.section-header.center p  { text-align: center; }
.section-header.center .section-label { display: table; margin: 0 auto 1rem; }
.section-header p { color: var(--muted); font-size: 1rem; margin-top: .5rem; }
.center { text-align: center; }

/* ── Grid layouts ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.card h3 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2a;
  margin-bottom: .4rem;
}
.card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* ── Info box ── */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: var(--r);
}
.info-box p { font-size: .9rem; color: var(--text); line-height: 1.65; margin: 0; }
.info-box-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }

/* ── Area grid ── */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.area-badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .9rem;
  background: rgba(0,0,0,.04);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  color: #1a1a2a;
  transition: border-color .2s, background .2s;
}
.area-badge:hover { border-color: var(--gold); background: rgba(245,158,11,.08); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .22s, border-color .22s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,.3);
}
.testimonial-stars { font-size: 1.1rem; color: var(--gold); letter-spacing: .06em; }
.testimonial-text {
  font-size: .9rem; color: var(--text); line-height: 1.75;
  font-style: italic; flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: .85rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), #1e40af);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: .85rem; font-weight: 900;
  color: #ffffff; flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 700; color: #1a1a2a; }
.testimonial-location { font-size: .75rem; color: var(--muted); margin-top: .1rem; }

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, #1e3fa0, #2563eb);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: .75rem;
}
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.75rem; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Button variants ── */
.btn-outline {
  background: transparent;
  color: #1a1a2a;
  border: 2px solid rgba(0,0,0,.3);
}
.btn-outline:hover { border-color: #1a1a2a; background: rgba(0,0,0,.05); }
.btn-xl { padding: 1.25rem 3rem; font-size: 1.1rem; }

/* ── Footer compat ── */
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), #1e40af);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-text .name {
  font-family: var(--fh); font-size: 1rem; font-weight: 900; color: #1a1a2a;
}
.footer-logo-text .sub {
  font-size: .65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.footer-contact-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: var(--muted); margin-top: .35rem;
}
.footer-contact-item a { color: var(--gold); font-weight: 600; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold-h); }
.footer-areas { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .5rem; }
.footer-area-tag {
  padding: .3rem .7rem;
  background: rgba(0,0,0,.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .74rem; color: var(--muted);
}
/* h4 inside footer-col (pages use h4, index.html uses h5) */
.footer-col h4 {
  font-family: var(--fh);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: #1a1a2a; margin-bottom: 1.25rem;
}

/* ── Gold banner (contact sidebar) ── */
.gold-banner {
  background: linear-gradient(135deg, rgba(245,166,35,.14), rgba(245,166,35,.07));
  border: 1px solid rgba(245,166,35,.28);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.gold-banner-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.gold-banner h4 { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: #1a1a2a; margin-bottom: .4rem; }
.gold-banner p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Contact form ── */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: .85rem; font-weight: 600; color: var(--text);
  margin-bottom: .4rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .72rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--fb);
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.form-textarea { min-height: 110px; resize: vertical; }

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--fb); font-size: .97rem; font-weight: 700;
  color: #1a1a2a; text-align: left; gap: 1rem;
  transition: color .2s;
}
.faq-q:hover,
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  font-size: 1.2rem; font-weight: 300; color: var(--accent);
  flex-shrink: 0; transition: transform .25s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { font-size: .9rem; color: var(--muted); line-height: 1.75; padding-bottom: 1.1rem; }

/* ── Image caption ── */
.img-caption { position: relative; }
.img-caption img { border-radius: var(--r); }
.img-caption-text { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .5rem; }

/* ── Big link ── */
.big-link {
  font-size: 1.1rem; font-weight: 700;
  color: var(--accent);
  display: inline-block;
  transition: color .2s;
}
.big-link:hover { color: var(--accent-h); }

/* ── Utility ── */
.w-full { width: 100%; }
.mt-12  { margin-top: 12px; }
.mt-28  { margin-top: 28px; }
.mb-32  { margin-bottom: 2rem; }
.mb-40  { margin-bottom: 2.5rem; }

/* ── Responsive compat ── */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cta-banner-btns { flex-direction: column; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
  .gold-banner { flex-direction: column; gap: .75rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   SERVICE SUB-NAVIGATION BAR
   ════════════════════════════════════════ */
.svc-subnav {
  background: #2d3748;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 68px;
  z-index: 90;
}
.svc-subnav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .55rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}
.svc-subnav-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem 1.05rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}
.svc-subnav-back {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.2);
}
.svc-subnav-back:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  transform: translateX(-2px);
}
.svc-subnav-view {
  background: #ffd700;
  color: #0f172a;
  border: 1.5px solid #ffd700;
}
.svc-subnav-view:hover {
  background: #ffe94d;
  box-shadow: 0 4px 14px rgba(255,215,0,.4);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   RELATED SERVICES SECTION
   ════════════════════════════════════════ */
.related-services {
  background: #2d3748;
  padding: 4.5rem 0 5rem;
}
.related-services .sec-head { text-align: center; margin-bottom: 2.75rem; }
.related-services .sh { color: #fff; margin-top: .35rem; }
.related-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}
.related-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.4rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
}
.related-card:hover {
  background: rgba(255,215,0,.07);
  border-color: rgba(255,215,0,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.related-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .15rem;
}
.related-card-title {
  font-family: var(--fh);
  font-size: 1.01rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.related-card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  flex: 1;
}
.related-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 700;
  color: #ffd700;
  margin-top: .5rem;
  letter-spacing: .02em;
}
.related-card:hover .related-card-cta { gap: .5rem; }

@media (max-width: 640px) {
  .related-cards { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .related-card { padding: 1.25rem 1rem; }
}
@media (max-width: 400px) {
  .related-cards { grid-template-columns: 1fr; }
}

/* ── Ignition page real-work photo grid ── */
.ignition-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.ign-photo-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}
.ign-photo-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.ign-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .ignition-photo-grid { grid-template-columns: 1fr; }
  .ign-photo-main img { height: 280px; }
  .ign-photo-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ign-photo-side img { height: 160px; }
}

/* ── Portfolio / Our Work ── */
.portfolio-section { background: #2d3748; padding: 4rem 0 5rem; }
.portfolio-section .sh { color: #ffd700; }
.portfolio-section .sd { color: rgba(255,255,255,.75); }
.portfolio-section .tag { background: rgba(255,215,0,.15); color: #ffd700; border-color: rgba(255,215,0,.3); }
.pf-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.pf-col { display: flex; flex-direction: column; gap: .65rem; }
.pf-col-head {
  display: block;
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  color: #ffd700;
  text-decoration: none;
  padding: .5rem 0 .55rem;
  border-bottom: 2px solid rgba(255,215,0,.25);
  margin-bottom: .2rem;
  letter-spacing: .01em;
  transition: color .2s;
}
.pf-col-head:hover { color: #ffe94d; }
.pf-photos { display: flex; flex-direction: column; gap: .65rem; }
.pg-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1f2937;
  height: 175px;
}
.pg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.pg-item:hover img { transform: scale(1.05); }
.pg-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .4rem .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.pf-singles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.pf-single { display: flex; flex-direction: column; gap: .65rem; }
.pf-single-photo { height: 240px; }
@media (max-width: 900px) {
  .pf-columns { grid-template-columns: 1fr; }
  .pf-singles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pf-singles { grid-template-columns: 1fr; }
  .pf-photos { flex-direction: row; flex-wrap: wrap; }
  .pg-item { height: 130px; flex: 1; min-width: 40%; }
}
