/* ============================================================
   LOCKSMITH ALLIANCE LTD — SHARED STYLESHEET
   All pages link to this single file.
   Do NOT copy CSS into individual pages.
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --navy:        #1D4ED8;   /* brand royal blue — icon chips / decoration ONLY, never body text */
  --navy-light:  #2F63ED;
  --ember:       #F59E0B;
  --ember-light: #FBBF24;
  --ink:         #232535;
  --paper:       #F7F5F1;
  --steel:       #9CA3AC;
  --steel-light: #E4E6E9;
  --white:       #FFFFFF;

  /* ---- Colour system (single source of truth) ---- */
  --brand-navy:     #0F1B2D;              /* deep near-black navy */
  --dusty-blue:     #7B93B8;              /* section accent background */
  --warm-base:      #F5F3EE;              /* warm off-white page base */
  --text-primary:   #0F1B2D;             /* headings + main body */
  --text-secondary: #4A5568;             /* muted slate supporting text */
  --text-on-dark:   rgba(255,255,255,0.92); /* text on navy / dusty-blue / ink */
  --accent-orange:  #E8590C;             /* CTAs, emphasis, icons, numbers ONLY */
  --badge-yellow:   #FFD666;
  --badge-lavender: #C4B5F7;
  --badge-peach:    #FFC094;

  /* ---- 8px spacing scale ---- */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px;

  --display:     'Archivo Black', sans-serif;
  --body:        'Inter', sans-serif;
}
picture { display: contents; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: #F5F3EE;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; }
h2 { font-size: 36px; color: #0B1B3A; letter-spacing: -0.3px; margin-bottom: 14px; }
h3 { font-size: 20px; color: #0B1B3A; }

/* ===== EYEBROW ===== */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5D2B00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-rule {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 14px;
}
.eyebrow-rule span {
  display: block;
  width: 3px;
  background: var(--ember);
  border-radius: 1px;
}
.eyebrow-rule span:nth-child(1) { height: 14px; }
.eyebrow-rule span:nth-child(2) { height: 8px; }
.eyebrow-rule span:nth-child(3) { height: 12px; }
.eyebrow-rule span:nth-child(4) { height: 6px; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--ember);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--body);
}
.btn-primary:hover { background: var(--ember-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--steel-light);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  font-family: var(--body);
}
.btn-outline:hover { border-color: var(--text-primary); background: #F0EDE8; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 16px 3vw 0;
}
.header-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-size: 20px;
  color: var(--navy);
  white-space: nowrap;
}
.logo .accent { color: var(--ember); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: #3A3F47;
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ember); }
.nav-cta {
  background: var(--ember);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--ember-light); }

/* ===== MOBILE NAV HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 24px 28px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-menu-links a {
  font-size: 22px;
  font-family: var(--display);
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid #F0EDE8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-cta {
  background: var(--ember);
  color: var(--white) !important;
  text-align: center;
  justify-content: center !important;
  border-radius: 10px;
  margin-top: 24px;
  border-bottom: none !important;
  font-size: 18px !important;
  padding: 18px 0 !important;
}

/* ===== HERO ===== */
.hero {
  background: #F5F3EE;
  padding-bottom: 0;
  position: relative;
}
.hero-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  width: 660px;
  height: 660px;
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
  background: #7B93B8;
  top: 70px;
  right: -170px;
  filter: blur(1px);
}
.hero > .wrap { position: relative; z-index: 1; }
.stat-count { display: inline; }
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "text photo"
    "ctas photo";
  column-gap: 56px;
  row-gap: 28px;
  align-items: center;
  padding: 36px 0 80px;
  position: relative;
  z-index: 1;
}
.hero-left { grid-area: text; align-self: end; }
.hero-ctas { grid-area: ctas; align-self: start; }
.hero-right { grid-area: photo; align-self: center; }
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.hero-avail-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 62px);
  line-height: 1.06;
  color: #0F1B2D;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.hero-h1 .accent { color: #E8590C; }
.hero-lead {
  color: #3A4A5E;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta-primary {
  background: var(--ember);
  color: #0F1B2D;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.12s, box-shadow 0.2s, filter 0.12s;
  box-shadow: 0 4px 20px rgba(232,89,12,0.35);
}
.hero-cta-primary:hover {
  background: var(--ember-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,89,12,0.45);
}
.hero-cta-primary .icon-phone { fill: #0F1B2D; }
.hero-cta-ghost {
  background: var(--brand-navy);
  color: #fff;
  padding: 15px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--brand-navy);
  box-shadow: 0 4px 14px rgba(15,27,45,0.22);
  transition: background 0.2s, border-color 0.2s, transform 0.12s, filter 0.12s;
}
.hero-cta-ghost:hover {
  background: #16283f;
  border-color: #16283f;
}
.hero-cta-primary:active,
.hero-cta-ghost:active,
.btn-primary:active,
.btn-white:active,
.btn-outline:active,
.form-submit:active { transform: scale(0.98); filter: brightness(0.94); }
/* Response-time reassurance pill under primary CTAs — sibling to .hero-availability */
.cta-reassure {
  flex-basis: 100%;
  max-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.cta-reassure-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: pulse-green 2s ease-in-out infinite;
}
.hero-right {
  position: relative;
  z-index: 1;
}
.hero-photo-stage {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.hero-photo-card {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  transform: rotate(1.5deg);
}
.hero-float-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--brand-navy);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.25;
  padding: 11px 18px 11px 11px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  max-width: 210px;
}
.hfb-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0F1B2D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hfb-icon svg { flex-shrink: 0; }
.hfb-insured {
  background: rgba(255,214,102,0.94);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16), 0 0 26px rgba(255,196,60,0.6);
  top: 22px;
  left: -26px;
  animation: badge-float-a 6s ease-in-out infinite;
}
.hfb-247 {
  background: rgba(196,181,247,0.94);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16), 0 0 26px rgba(150,120,240,0.55);
  top: 54%;
  right: -24px;
  animation: badge-float-b 8s ease-in-out infinite;
}
.hfb-rated {
  background: rgba(255,192,148,0.94);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16), 0 0 28px rgba(255,150,90,0.6);
  bottom: 40px;
  left: -20px;
  animation: badge-float-pulse 5s ease-in-out infinite;
}
@keyframes badge-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes badge-float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes badge-float-c {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes badge-float-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.035); }
}
/* Decorative accents around the photo */
.hero-deco-star {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  background: #E8590C;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: -12px;
  right: 46px;
  animation: badge-float-c 7s ease-in-out infinite;
}
.hero-deco-dot { position: absolute; z-index: 3; border-radius: 50%; }
.hero-deco-dot-1 { width: 14px; height: 14px; background: #7B93B8; bottom: 74px; right: -6px; }
.hero-deco-dot-2 { width: 10px; height: 10px; background: #E8590C; top: 128px; left: -12px; }

/* Hero form */
.hero-form-wrap {
  position: relative;
  z-index: 10;
  padding: 0 3vw 52px;
}
.hero-form {
  background: var(--white);
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 36px 20px;
  box-shadow: 0 8px 40px rgba(11,30,58,0.22);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
  border-top: 3px solid var(--ember);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-field input {
  border: none;
  border-bottom: 1.5px solid var(--steel-light);
  padding: 8px 2px;
  font-size: 14.5px;
  font-family: var(--body);
  color: var(--ink);
  background: transparent;
  transition: border-color 0.2s;
}
.form-field input::placeholder { color: var(--steel); }
.form-field input:focus { outline: none; border-color: var(--ember); box-shadow: 0 6px 16px -6px rgba(245,158,11,0.55); }
.form-submit {
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--body);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.12s, filter 0.12s;
}
.form-submit:hover { background: var(--navy); }
.form-note {
  grid-column: 1 / -1;
  font-size: 11.5px;
  color: var(--steel);
  padding-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #7B93B8;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 28px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: stretch;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.06);
  border-radius: 16px;
  padding: 22px 14px;
  box-shadow: 0 1px 2px rgba(15,27,45,0.04), 0 6px 16px rgba(15,27,45,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(15,27,45,0.05), 0 16px 30px rgba(15,27,45,0.14), 0 0 0 1px rgba(232,89,12,0.14);
  border-color: rgba(232,89,12,0.28);
}
.trust-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,89,12,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item svg { color: var(--accent-orange); flex-shrink: 0; width: 22px; height: 22px; }

/* ===== SCROLL REVEAL (fade + rise, staggered) ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.trust-item.reveal:nth-child(1){transition-delay:0s}
.trust-item.reveal:nth-child(2){transition-delay:.06s}
.trust-item.reveal:nth-child(3){transition-delay:.12s}
.trust-item.reveal:nth-child(4){transition-delay:.18s}
.trust-item.reveal:nth-child(5){transition-delay:.24s}
.trust-item.reveal:nth-child(6){transition-delay:.30s}
.trust-item.reveal:nth-child(7){transition-delay:.36s}
.service-card.reveal:nth-child(2){transition-delay:.06s}
.service-card.reveal:nth-child(3){transition-delay:.12s}
.service-card.reveal:nth-child(4){transition-delay:.18s}
.service-card.reveal:nth-child(5){transition-delay:.24s}
.service-card.reveal:nth-child(6){transition-delay:.30s}

/* ===== SECTION SHARED ===== */
section { padding: 88px 0; }
.section-head { max-width: 600px; margin-bottom: 52px; }
.section-head p { color: var(--text-secondary); font-size: 16px; }
/* On dusty-blue accent sections, keep eyebrow + supporting text high-contrast (never blue-on-blue) */
.before-after .eyebrow,
.process .eyebrow { color: var(--text-primary); }
.before-after .section-head p,
.process .section-head p { color: var(--brand-navy); }

/* ===== SERVICES GRID ===== */
.services {
  background: var(--paper);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #E8E4DC;
  border-radius: 14px;
  padding: 34px 28px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(232,89,12,0.3);
  box-shadow: 0 10px 36px rgba(11,30,58,0.09);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card h3 { margin-bottom: 10px; font-size: 17px; }
.service-card p { font-size: 14px; color: #6B7080; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.service-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 9px; }
.services-view-all {
  text-align: center;
  margin-top: 44px;
}

/* ===== WHY CHOOSE US ===== */
.why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 480px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border: none;
}
.why-photo-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 0 32px;
}
.why-photo-placeholder svg { width: 48px; height: 48px; color: #B8B2AA; }
.why-photo-placeholder span { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #A8A29A; }
.why-photo-placeholder .ph-label {
  font-size: 13px;
  font-weight: 600;
  color: #8A8480;
  background: rgba(0,0,0,0.05);
  border: 1px dashed #C4BFB8;
  border-radius: 6px;
  padding: 7px 18px;
  text-transform: none;
  letter-spacing: 0;
}
.why-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #E8E4DC;
}
.why-list li:last-child { border-bottom: none; }
.why-num {
  font-family: var(--display);
  font-size: 22px;
  color: var(--accent-orange);
  width: 34px;
  flex-shrink: 0;
  padding-top: 2px;
}
.why-text h4 {
  font-family: var(--display);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.why-text p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; }

/* ===== AREAS ===== */
.areas { background: var(--paper); position: relative; overflow: hidden; }
.areas .section-head { position: relative; z-index: 2; }
.areas-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-pill {
  background: var(--white);
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-pill:hover { border-color: var(--ember); }
.area-pill svg { color: var(--ember); flex-shrink: 0; }
.area-pill.secondary { opacity: 0.65; }
.area-pill.secondary:hover { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--paper);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid #E8E4DC;
}
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 1px; }
.testimonial-card blockquote {
  font-size: 14.5px;
  color: #4A4F5A;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.testimonial-meta { font-size: 12px; color: var(--steel); margin-top: 2px; }

/* ===== PROCESS ===== */
.process {
  background: #7B93B8;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 20px;
  color: var(--ember);
  margin-bottom: 22px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: rgba(11,27,58,0.88); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--ember); padding: 56px 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h2 { color: #0F1B2D; font-size: 28px; margin-bottom: 6px; }
.cta-band p { color: rgba(15,27,45,0.82); font-size: 15px; }
.btn-white {
  background: var(--white);
  color: #0F1B2D;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-white:hover { background: #F0EDE8; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo .accent { color: var(--ember-light); }
footer p { font-size: 13.5px; color: #AEB4BF; line-height: 1.7; }
footer h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: #AEB4BF; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-nap li { font-size: 13.5px; color: #C3C8D2; line-height: 1.6; }
.footer-nap-name { font-weight: 700; color: var(--white) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8E94A0;
}

/* ===== PHONE ICON ===== */
.icon-phone { width: 15px; height: 15px; fill: currentColor; }

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(11,27,58,0.55);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(11,27,58,0.6);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #0B1B3A; }
.breadcrumb span { color: rgba(11,27,58,0.85); }
.breadcrumb-sep { color: rgba(11,27,58,0.35); font-size: 11px; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--display);
  font-size: 42px;
  color: #0B1B3A;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  max-width: 680px;
}
.page-hero .lead {
  color: rgba(11,27,58,0.92);
  font-size: 17px;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.page-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  color: #0B1B3A;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(11,27,58,0.55);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(11,27,58,0.08); border-color: #0B1B3A; }

/* ===== SERVICE DETAIL SECTION ===== */
.service-detail { background: var(--paper); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}
.service-detail-content h2 {
  font-size: 30px;
  margin-bottom: 18px;
}
.service-detail-content p {
  font-size: 15.5px;
  color: #4A4F5A;
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-detail-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.service-detail-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  border: none;
}
.service-detail-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}
.service-detail-photo-placeholder svg { width: 44px; height: 44px; color: #B8B2AA; }
.service-detail-photo-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: #A8A29A;
}
.service-detail-photo-placeholder .ph-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #8A8480;
  background: rgba(0,0,0,0.05);
  border: 1px dashed #C4BFB8;
  border-radius: 6px;
  padding: 6px 16px;
  text-transform: none;
  letter-spacing: 0;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,89,12,0.1);
  color: var(--ember);
  border: 1px solid rgba(232,89,12,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===== CHECK LIST ===== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check-dot {
  width: 22px; height: 22px;
  background: var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-dot svg { width: 11px; height: 11px; }
.check-item-text { font-size: 15px; color: #4A4F5A; line-height: 1.55; }
.check-item-text strong { color: var(--text-primary); display: block; margin-bottom: 2px; font-size: 15px; }

/* ===== BRANDS / TAGS ===== */
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.brand-tag {
  background: var(--paper);
  border: 1px solid #E8E4DC;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ===== FAQ ===== */
.faq-section { background: var(--paper); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid #E8E4DC; }
.faq-item:first-child { border-top: 1px solid #E8E4DC; }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
}
.faq-btn-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--steel-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
}
.faq-btn.open .faq-icon {
  background: var(--ember);
  transform: rotate(45deg);
}
.faq-btn.open .faq-icon svg { stroke: white; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: #4A4F5A;
  line-height: 1.7;
}

/* ===== RELATED SERVICES ===== */
.related-services { background: var(--paper); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  border: 1px solid #E8E4DC;
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  border-color: var(--ember);
  box-shadow: 0 4px 16px rgba(232,89,12,0.1);
}
.related-card .service-icon { margin-bottom: 14px; }
.related-card h4 { font-size: 16px; color: var(--text-primary); margin-bottom: 8px; }
.related-card p { font-size: 13.5px; color: #6B7080; line-height: 1.55; flex: 1; margin-bottom: 14px; }
.related-card .service-link { font-size: 13px; }

/* ===== STAT STRIP ===== */
.stat-strip {
  background: #7B93B8;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item-num {
  font-family: var(--display);
  font-size: 40px;
  color: #6E3403;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-item-label {
  font-size: 13.5px;
  color: rgba(11,27,58,0.85);
  font-weight: 600;
}

/* ===== LOCATION PAGE STYLES ===== */
.loc-services { background: var(--paper); }
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.loc-service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #E8E4DC;
  transition: border-color 0.2s;
}
.loc-service-item:hover { border-color: var(--ember); }
.loc-service-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-service-item h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.loc-service-item p { font-size: 13.5px; color: #6B7080; line-height: 1.5; }
.loc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.loc-coverage { background: var(--paper); }
.loc-coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.loc-coverage-pill {
  background: var(--paper);
  border: 1px solid #E8E4DC;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.2s, color 0.2s;
}
.loc-coverage-pill:hover { border-color: var(--ember); color: var(--ember); }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 40px;
}
.contact-form-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-field-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field-full label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}
.form-field-full input,
.form-field-full select,
.form-field-full textarea {
  border: 1.5px solid #E0DDD8;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-field-full input:focus,
.form-field-full select:focus,
.form-field-full textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.18);
}
.form-field-full textarea { min-height: 120px; resize: vertical; }
.contact-info-card { padding: 8px 0; }
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #E8E4DC;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(11,27,58,0.7);
  margin-bottom: 4px;
}
.contact-info-text a { font-size: 16px; font-weight: 600; color: #0B1B3A; transition: color 0.2s; }
.contact-info-text a:hover { color: var(--ember); }
.contact-info-text p { font-size: 15px; color: rgba(11,27,58,0.88); }
.contact-map-placeholder {
  margin-top: 28px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* ===== ABOUT PAGE ===== */
.about-intro { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 460px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border: none; }
.about-photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 0 40px;
}
.about-photo-placeholder svg { width: 48px; height: 48px; color: #B8B2AA; }
.about-photo-placeholder span { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #A8A29A; }
.about-photo-placeholder .ph-label { font-size: 12.5px; font-weight: 600; color: #8A8480; background: rgba(0,0,0,0.05); border: 1px dashed #C4BFB8; border-radius: 6px; padding: 6px 16px; text-transform: none; letter-spacing: 0; }
.about-content p { font-size: 15.5px; color: #4A4F5A; line-height: 1.75; margin-bottom: 18px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.trust-grid-item {
  background: var(--paper);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-grid-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-grid-item h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.trust-grid-item p { font-size: 13px; color: #6B7080; line-height: 1.5; }
.vision-section { background: #7B93B8; position: relative; overflow: hidden; }
.vision-section .wrap { position: relative; z-index: 2; }
.vision-section p { color: rgba(11,27,58,0.92); font-size: 16px; line-height: 1.75; max-width: 680px; margin-bottom: 18px; }

/* ===== PRIVACY / POLICY ===== */
.policy-section { background: var(--paper); }
.policy-content { max-width: 720px; }
.policy-content h2 { font-size: 22px; margin: 44px 0 12px; color: var(--text-primary); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 15px; color: #4A4F5A; line-height: 1.8; margin-bottom: 14px; }
.policy-content ul { padding-left: 22px; margin-bottom: 14px; }
.policy-content li { font-size: 15px; color: #4A4F5A; line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.policy-content a { color: var(--ember); text-decoration: underline; }

/* ===== 404 ERROR PAGE ===== */
.error-section {
  background: var(--paper);
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.error-num {
  font-family: var(--display);
  font-size: 140px;
  color: var(--text-primary);
  opacity: 0.07;
  line-height: 1;
  margin-bottom: -24px;
}
.error-section h1 { font-size: 32px; color: var(--text-primary); margin-bottom: 14px; }
.error-section p { font-size: 16px; color: rgba(11,27,58,0.88); max-width: 480px; margin: 0 auto 36px; line-height: 1.65; }
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 48px; }
  .hero-split { grid-template-columns: 1.2fr 0.8fr; column-gap: 40px; }
  .hero-photo-stage { max-width: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-photo { position: relative; height: 320px; top: auto; }
  .service-detail-photo img { position: static; display: block; width: 100%; height: 100%; object-fit: cover; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  header { margin: 12px 12px 0; }
  .header-card { padding: 10px 20px; border-radius: 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .logo { font-size: 17px; }
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "photo"
      "ctas";
    column-gap: 0;
    row-gap: 24px;
    padding: 6px 0 44px;
  }
  .hero-right { display: block; }
  .hero-blob {
    width: 460px;
    height: 460px;
    top: 340px;
    right: -130px;
  }
  .hero-photo-stage {
    width: 74%;
    max-width: 290px;
    margin: 0 auto;
    display: block;
  }
  .hero-float-badge {
    max-width: 172px;
    font-size: 12.5px;
    padding: 8px 13px 8px 8px;
    gap: 8px;
    border-radius: 16px;
  }
  .hfb-icon { width: 30px; height: 30px; }
  .hfb-icon svg { width: 15px; height: 15px; }
  .hfb-insured { top: 16px; left: -14px; }
  .hfb-247 { top: 46%; right: -14px; }
  .hfb-rated { bottom: 26px; left: -10px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-cta-primary, .hero-cta-ghost { justify-content: center; }
  .hero-h1 { font-size: 36px; letter-spacing: -0.5px; }
  .hero-form { grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px 24px 16px; }
  .form-submit { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; }
  .why-photo { height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { height: 280px; }
  .loc-services-grid { grid-template-columns: 1fr; }
  .loc-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  header { margin: 10px 10px 0; }
  .header-card { border-radius: 14px; padding: 9px 16px; }
  .logo { font-size: 15px; }
  .nav-cta { padding: 8px 14px; font-size: 12.5px; }
  .hero-split { padding: 4px 0 36px; }
  .hero-h1 { font-size: 27px; letter-spacing: -0.3px; }
  .hero-lead { font-size: 15px; }
  .hero-availability { font-size: 12px; padding: 7px 14px; }
  .hero-cta-primary, .hero-cta-ghost { padding: 13px 20px; font-size: 14px; }
  .hero-form { grid-template-columns: 1fr; padding: 20px 20px 16px; }
  .hero-form-wrap { padding: 0 10px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  h2 { font-size: 26px; }
  section { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-links li { margin-bottom: 0; }
  .footer-links a { display: block; padding: 8px 0; font-size: 15px; }
  .trust-bar { padding: 20px 16px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; }
  .trust-item { padding: 16px 10px; font-size: 12px; gap: 7px; }
  .trust-item svg { width: 20px; height: 20px; }
  .trust-item:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 5px); margin: 0 auto; width: 100%; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item-num { font-size: 32px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero { padding: 44px 0 44px; }
  .contact-form-card { padding: 24px; }
  .error-num { font-size: 100px; }
}

/* ============================================================
   SERVICES HUB PAGE
   ============================================================ */

.services-hub { background: var(--paper); }
.services-hub-intro {
  max-width: 700px;
  margin-bottom: 56px;
}
.services-hub-intro p {
  font-size: 16px;
  color: #4A4F5A;
  line-height: 1.75;
  margin-bottom: 18px;
}
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-hub-card {
  border: 1.5px solid #E4E0D8;
  border-radius: 14px;
  padding: 32px 28px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.service-hub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-hub-card:hover {
  border-color: rgba(232,89,12,0.35);
  box-shadow: 0 12px 40px rgba(11,30,58,0.1);
  transform: translateY(-3px);
}
.service-hub-card:hover::before { transform: scaleX(1); }
.service-hub-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.service-hub-card h3 {
  font-size: 19px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.service-hub-card > p {
  font-size: 14.5px;
  color: #6B7080;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.service-hub-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-hub-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #4A4F5A;
  font-weight: 500;
}
.service-hub-feature-dot {
  width: 6px; height: 6px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ember);
  margin-top: auto;
  transition: gap 0.2s;
}
.service-hub-card:hover .service-hub-cta { gap: 10px; }

/* Featured emergency service banner */
.service-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: linear-gradient(135deg, var(--navy) 0%, #14246E 100%);
  border-radius: 16px;
  padding: 38px 44px;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 520px 420px at 100% 0%, rgba(245,158,11,0.22) 0%, transparent 62%);
  pointer-events: none;
}
.service-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(29,78,216,0.28);
}
.service-featured-main { position: relative; z-index: 1; }
.service-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.service-featured h3 {
  color: var(--white);
  font-size: 25px;
  margin-bottom: 10px;
}
.service-featured-main > p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 20px;
}
.service-featured-features {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.service-featured-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.service-featured-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-featured-cta { flex-shrink: 0; position: relative; z-index: 1; }
.service-featured-cta-btn {
  background: var(--ember);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: background 0.2s;
}
.service-featured:hover .service-featured-cta-btn { background: var(--ember-light); }

/* Additional services — navy band */
.additional-services { background: #7B93B8; position: relative; overflow: hidden; }
.additional-services .wrap { position: relative; z-index: 2; }
.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.additional-service-pill {
  background: var(--white);
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.additional-service-pill:hover {
  border-color: var(--ember);
  color: var(--white);
}
.additional-service-dot {
  width: 6px; height: 6px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   AREAS HUB PAGE
   ============================================================ */

.areas-hub { background: var(--white); }
.coverage-map-block {
  height: 400px;
  border-radius: 16px;
  margin-bottom: 72px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* Primary area cards */
.areas-primary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.area-hub-card {
  border: 1.5px solid #E4E0D8;
  border-radius: 12px;
  padding: 28px 24px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.area-hub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.area-hub-card:hover {
  border-color: rgba(232,89,12,0.35);
  box-shadow: 0 10px 32px rgba(11,30,58,0.1);
  transform: translateY(-3px);
}
.area-hub-card:hover::before { transform: scaleX(1); }
.area-hub-card-name {
  font-family: var(--display);
  font-size: 21px;
  color: var(--text-primary);
  margin-bottom: 5px;
  line-height: 1.1;
}
.area-hub-card-postcode {
  font-size: 11px;
  font-weight: 700;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}
.area-hub-card > p {
  font-size: 13.5px;
  color: #6B7080;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.area-hub-card-cta {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap 0.2s;
}
.area-hub-card:hover .area-hub-card-cta { gap: 8px; }

/* Secondary area cards */
.areas-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-secondary-card {
  border: 1.5px solid #E4E0D8;
  border-radius: 10px;
  padding: 18px 18px 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.area-secondary-card:hover {
  border-color: var(--ember);
  background: #FFF9F6;
  transform: translateY(-2px);
}
.area-secondary-card-name {
  font-family: var(--display);
  font-size: 15px;
  color: var(--text-primary);
}
.area-secondary-card-postcode {
  font-size: 11px;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Other covered areas — pills */
.other-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.other-area-pill {
  background: var(--paper);
  border: 1px solid #E4E0D8;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #4A4F5A;
}

/* ===== BEFORE / AFTER ===== */
.before-after {
  padding: 80px 0;
  background: #7B93B8;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ba-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-img-after {
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}
.ba-line {
  width: 2px;
  flex: 1;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}
.ba-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
  flex-shrink: 0;
  color: var(--text-primary);
}
.ba-tag {
  position: absolute;
  top: 12px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}
.ba-tag-l { left: 12px; }
.ba-tag-r { right: 12px; }
.ba-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: var(--white);
  padding: 36px 16px 14px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .before-after { padding: 56px 0; }
}

/* ===== STICKY CALL BAR ===== */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #E8590C;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
}
.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  height: 56px;
  padding: 0 20px;
  width: 100%;
  letter-spacing: 0.1px;
}
/* sticky call bar disabled */

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 950;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out 1.2s 3;
}
.whatsapp-btn::after {
  content: "Chat on WhatsApp";
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #1a1a1a;
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--body);
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-btn:hover::after { opacity: 1; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.38); transform: scale(1); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); transform: scale(1.1); }
}
/* Mobile: lift the WhatsApp button clear above the sticky CTA bar */
@media (max-width: 1023px) {
  .whatsapp-btn { right: 16px; bottom: calc(90px + env(safe-area-inset-bottom)); }
}
/* Fade the WhatsApp button out while a form is on screen so it never sits over an input */
.whatsapp-btn { transition: opacity 0.25s ease, visibility 0.25s ease; }
.whatsapp-btn.wa-hide { opacity: 0; visibility: hidden; pointer-events: none; }

/* ===== STICKY MOBILE CTA BAR ===== */
.sticky-cta { display: none; }
@media (max-width: 1023px) {
  .sticky-cta {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(245,243,238,0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    border-top: 1px solid rgba(15,27,45,0.06);
  }
  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.12s ease, filter 0.15s ease;
  }
  .sticky-cta a:active { transform: scale(0.97); }
  .sticky-cta-call {
    background: var(--ember);
    color: var(--brand-navy);
    box-shadow: 0 6px 16px rgba(245,158,11,0.42);
  }
  .sticky-cta-callback {
    background: var(--brand-navy);
    color: #fff;
    box-shadow: 0 6px 16px rgba(15,27,45,0.28);
  }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ===== BEFORE/AFTER HINT ===== */
.ba-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: rgba(11,27,58,0.75);
  margin-top: 8px;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) { .ba-hint { display: block; } }

/* ===== FORM SUCCESS STATE ===== */
.form-success {
  display: none;
  background: var(--navy);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  color: white;
}
.form-success h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: white; }
.form-success p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; }
.form-success a { color: var(--ember); font-weight: 700; }
.form-success.visible { display: block; }

/* ===== QUICK ANSWERS (AEO) ===== */
.quick-answers { background: var(--paper); padding: 80px 0; }
.hfaq-accordion { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.hfaq-item {
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.07);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(15,27,45,0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.hfaq-item[open] { border-color: rgba(232,89,12,0.3); box-shadow: 0 8px 26px rgba(15,27,45,0.1); }
.hfaq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.hfaq-item summary::-webkit-details-marker { display: none; }
.hfaq-marker {
  position: relative;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(232,89,12,0.12);
}
.hfaq-marker::before, .hfaq-marker::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2.5px;
  background: var(--accent-orange);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.hfaq-marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.hfaq-item[open] .hfaq-marker::after { transform: translate(-50%, -50%) rotate(0deg); }
.hfaq-answer { padding: 0 22px 20px; }
.hfaq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.hfaq-item summary:focus-visible { outline: 2px solid var(--accent-orange); outline-offset: -2px; border-radius: 14px; }
@media (max-width: 600px) {
  .quick-answers { padding: 52px 0; }
  .hfaq-item summary { padding: 16px 18px; font-size: 15px; }
  .hfaq-answer { padding: 0 18px 16px; }
}

/* ===== SUB-AREAS & POSTCODES ===== */
.sub-areas-section { background: var(--paper); padding: 72px 0; }
.sub-areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.sub-areas-heading { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #0B1B3A; margin-bottom: 16px; }
.sub-areas-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sub-areas-list li { font-size: 15px; color: var(--ink); padding: 9px 0; border-bottom: 1px solid var(--steel-light); }
.postcode-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.postcode-pill { background: var(--navy); color: white; padding: 7px 18px; border-radius: 24px; font-size: 14px; font-weight: 700; letter-spacing: 0.3px; }
.sub-areas-note { font-size: 14px; color: rgba(11,27,58,0.85); line-height: 1.6; }
.sub-areas-note a { color: #0B1B3A; font-weight: 600; text-decoration: none; }
.sub-areas-note a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .sub-areas-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .sub-areas-list { grid-template-columns: 1fr; }
  .sub-areas-section { padding: 52px 0; }
}


/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 1024px) {
  .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-primary-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-secondary-grid { grid-template-columns: repeat(3, 1fr); }
  .additional-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .service-featured { flex-direction: column; align-items: flex-start; padding: 30px 28px; gap: 22px; }
  .service-featured-cta { width: 100%; }
  .service-featured-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .services-hub-grid { grid-template-columns: 1fr; }
  .areas-primary-grid { grid-template-columns: 1fr; }
  .areas-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .additional-services-grid { grid-template-columns: 1fr; }
  .coverage-map-block { height: 200px; margin-bottom: 48px; }
  .service-featured { padding: 26px 22px; }
  .service-featured h3 { font-size: 21px; }
  .service-featured-features { gap: 14px; flex-direction: column; align-items: flex-start; }
}

/* REVIEW PLATFORMS (About page) */
.review-platforms { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); }
.review-platforms-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.review-platforms-links { display: flex; flex-wrap: wrap; gap: 10px; }
.review-platform-link { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 20px; text-decoration: none; transition: background 0.2s; }
.review-platform-link:hover { background: rgba(255,255,255,0.18); color: white; }


/* ===== HEADER LOGO (white bar, transparent logo) ===== */
.header-card { padding: 8px 28px; }
.logo { display: flex; align-items: center; }
.header-card > .logo img { height: 56px; width: auto; display: block; }
@media (max-width: 900px) {
  .header-card { padding: 6px 18px; }
  .header-card > .logo img { height: 46px; }
}
@media (max-width: 600px) {
  .header-card > .logo img { height: 42px; }
}
