/* =============================================================================
   SANDTON PLUMBING — MAIN STYLESHEET
   Premium plumbing theme for Sandton, Johannesburg
   ============================================================================= */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --primary:         #0a5c6b;
  --primary-dark:    #084a56;
  --primary-light:   #0e7a8f;
  --primary-glow:    rgba(10, 92, 107, 0.15);
  --secondary:       #c9922a;
  --secondary-dark:  #a97820;
  --secondary-light: #e8b84b;
  --secondary-glow:  rgba(201, 146, 42, 0.18);
  --dark:            #0d1b2a;
  --dark-alt:        #162437;
  --dark-card:       #1a2e40;
  --light:           #f4f7f8;
  --light-alt:       #e8edf0;
  --white:           #ffffff;
  --emergency:       #dc2626;
  --emergency-dark:  #b91c1c;
  --wa-green:        #25d366;
  --wa-dark:         #1fad54;

  /* Text */
  --text-primary:    #0d1b2a;
  --text-secondary:  #4a5568;
  --text-muted:      #718096;
  --text-light:      #a0aec0;
  --text-on-dark:    rgba(255,255,255,0.88);
  --text-on-dark-muted: rgba(255,255,255,0.6);

  /* Borders */
  --border:          #e2e8f0;
  --border-dark:     rgba(255,255,255,0.1);
  --border-teal:     rgba(10, 92, 107, 0.3);

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.08);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.1);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.13);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.22);
  --shadow-teal: 0 4px 20px rgba(10, 92, 107, 0.35);
  --shadow-gold: 0 4px 20px rgba(201, 146, 42, 0.35);

  /* Border radius */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Section padding */
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --transition:      0.25s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --max-width:    1280px;
  --header-h:     72px;
  --ebar-h:       0px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--ebar-h));
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
video    { max-width: 100%; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary-dark); }
a:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea, button { font-family: inherit; }

/* ─── SCREEN READER ONLY ─────────────────────────────────────────────────────── */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── CONTAINER ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn--secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn--emergency {
  background: var(--emergency);
  color: var(--white);
  border-color: var(--emergency);
}
.btn--emergency:hover {
  background: var(--emergency-dark);
  border-color: var(--emergency-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn--emergency-sm {
  background: var(--emergency);
  color: var(--white);
  border-color: var(--emergency);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all var(--transition);
}
.btn--emergency-sm:hover {
  background: var(--emergency-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn--wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn--lg {
  padding: 0.9375rem 2rem;
  font-size: 1rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ─── SECTION HEADERS ────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.875rem;
}

.section-header__eyebrow--gold {
  color: var(--secondary);
  background: var(--secondary-glow);
}

.section-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
}

.section-header--light .section-header__title {
  color: var(--white);
}

.section-header__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-header--light .section-header__subtitle {
  color: var(--text-on-dark-muted);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(28px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ─── EMERGENCY BAR ──────────────────────────────────────────────────────────── */
.emergency-bar {
  background: var(--primary);
  color: var(--white);
  height: var(--ebar-h);
  display: flex;
  align-items: center;
  z-index: 200;
  position: relative;
}

.emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.emergency-bar__text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.emergency-bar__text .sep {
  opacity: 0.4;
}

.emergency-bar__text i {
  color: var(--secondary-light);
  font-size: 0.875rem;
}

.emergency-bar__phone {
  color: var(--secondary-light);
  font-weight: 700;
  text-decoration: none;
}
.emergency-bar__phone:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ─── STICKY HEADER ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

/* Logo */
.site-header__logo-text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.site-header__logo-text:hover .logo-icon {
  background: var(--primary-dark);
}

.logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.logo-name__main {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-name__sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Navigation */
.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-menu > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu > li.menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a {
  color: var(--primary);
  background: var(--primary-glow);
}

.nav-menu > li.menu-item-has-children:hover > a::after,
.nav-menu > li.menu-item-has-children:focus-within > a::after,
.nav-menu > li.is-expanded > a::after {
  color: var(--primary);
  transform: rotate(180deg);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  transform: translateX(-50%) translateY(8px);
  z-index: 50;
  list-style: none;
  padding: 0.5rem;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu a {
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-submenu-icon {
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

/* Main nav item icons */
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-menu-icon {
  font-size: 0.8rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: color var(--transition);
}

.nav-menu > li > a:hover .nav-menu-icon,
.nav-menu > li.current-page-ancestor > a .nav-menu-icon {
  color: var(--primary-light);
}

/* Areas dropdown — 2-column grid (desktop only) */
@media (min-width: 769px) {
  .nav-menu .sub-menu--areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: 320px;
    gap: 0.125rem;
  }
  .nav-menu .sub-menu--areas a {
    white-space: nowrap;
    font-size: 0.8125rem;
  }
}

/* Header actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.header-phone:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
}

.header-phone__icon {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.header-phone__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-phone__number {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
}

.header-emergency-btn {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--light);
  cursor: pointer;
  transition: background var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--light-alt);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO SECTION ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 50%, #071219 100%);
  overflow: hidden;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

/* Subtle luxury grid overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 70% at 15% 50%, rgba(10,92,107,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 10%, rgba(201,146,42,0.1) 0%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}

/* Floating ambient particles */
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__particles span {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--secondary-light);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s infinite;
}
.hero__particles span:nth-child(1) { left: 15%; top: 30%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { left: 40%; top: 60%; animation-delay: 2s; }
.hero__particles span:nth-child(3) { left: 70%; top: 20%; animation-delay: 4s; }
.hero__particles span:nth-child(4) { left: 85%; top: 70%; animation-delay: 1s; }
.hero__particles span:nth-child(5) { left: 55%; top: 85%; animation-delay: 3s; }

@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-60px); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* ── Live badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(201,146,42,0.12);
  border: 1px solid rgba(201,146,42,0.3);
  color: var(--secondary-light);
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero__badge-pulse {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ── H1 Typography ── */
.hero__title {
  margin-bottom: 1.375rem;
  line-height: 1;
}

.hero__title-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero__title-main {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}

.hero__title-cta {
  display: none;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Subtitle ── */
.hero__subtitle {
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* ── CTA Buttons ── */
.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.btn--hero-call {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.375rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn--hero-call:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,146,42,0.45);
}

.btn-hero-call__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-hero-call__text {
  display: flex;
  flex-direction: column;
}

.btn-hero-call__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.btn-hero-call__number {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ── Trust row ── */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
}

.trust-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(201,146,42,0.15);
  border-radius: var(--radius-xs);
  color: var(--secondary-light);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Quote Form Card ── */
.hero__form-wrap { position: relative; }

.quote-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.625rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}

.quote-form-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--light);
}

.quote-form-card__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.quote-form-card__title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.quote-form-card__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* 2-column form row */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.form-textarea--compact { min-height: 60px; resize: none; }

/* Submit button — gold, full width */
.btn--hero-submit {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(201,146,42,0.3);
  margin-bottom: 0.75rem;
}

.btn--hero-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,146,42,0.45);
}

.quote-form-card__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.quote-form-card__note i { font-size: 0.65rem; color: #22c55e; }

/* Form fields */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
  font-family: var(--font-heading);
}

.required { color: var(--emergency); }

.form-input-wrap {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
  pointer-events: none;
  z-index: 1;
}

.form-input {
  display: block;
  width: 100%;
  padding: 0.6875rem 0.875rem 0.6875rem 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-input::placeholder { color: var(--text-light); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23718096' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.form-textarea {
  padding-top: 0.75rem;
  resize: vertical;
  min-height: 80px;
}

.form-input-wrap:has(.form-textarea) .form-input-icon {
  top: 0.875rem;
  transform: none;
}

/* Form feedback */
.form-feedback {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-feedback.is-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-feedback.is-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.btn--form-submit {
  position: relative;
}

.quote-form-card__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.quote-form-card__note i { font-size: 0.75rem; }

/* ─── STATS BAR ──────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-item:last-child::after { display: none; }

.stat-item__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--secondary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__number--rating i {
  font-size: 0.55em;
  vertical-align: middle;
  margin-left: 0.2em;
}

.stat-item__label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── SERVICES SECTION ───────────────────────────────────────────────────────── */
.services-section {
  padding: var(--section-py) 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow-xs);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--primary-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: inset 0 0 0 1px rgba(10,92,107,0.06);
}

.service-card:hover .service-card__icon-wrap {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-card__icon {
  font-size: 1.375rem;
  color: var(--primary);
  transition: color var(--transition);
}

.service-card:hover .service-card__icon { color: var(--white); }

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(10,92,107,0.08);
  border: 1px solid rgba(10,92,107,0.12);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.service-card__title {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  transition: color var(--transition), transform var(--transition);
  margin-top: auto;
}

.service-card__link:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
}

.service-card__link-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,92,107,0.08);
  border: 1px solid rgba(10,92,107,0.12);
  color: var(--primary);
  transition: all var(--transition);
}

.service-card__link:hover .service-card__link-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Location page — 2-col service grid */
.services-grid--2col {
  grid-template-columns: repeat(2, 1fr) !important;
}

.service-card--enhanced {
  border-top: 3px solid var(--primary);
  background: linear-gradient(160deg, #ffffff 0%, #f5fafc 100%);
}

.service-card--enhanced:hover {
  border-top-color: var(--secondary);
}

.service-card--enhanced .service-card__icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: var(--shadow-teal);
}

.service-card--enhanced .service-card__icon-wrap i {
  color: var(--white);
}

.service-card--enhanced .service-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .services-grid--2col {
    grid-template-columns: 1fr !important;
  }
}

.services-section__cta {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--border);
}

.services-section__cta p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

/* ─── WHY CHOOSE US ──────────────────────────────────────────────────────────── */
.why-us {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(10,92,107,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.why-us .container { position: relative; z-index: 1; }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition-slow);
}

.why-item:hover {
  background: rgba(10,92,107,0.2);
  border-color: rgba(10,92,107,0.4);
  transform: translateY(-4px);
}

.why-item__icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.why-item__icon {
  font-size: 1.125rem;
  color: var(--white);
}

.why-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.why-item__desc {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

/* ─── AREAS SECTION ──────────────────────────────────────────────────────────── */
.areas-section {
  padding: var(--section-py) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 30px
  );
  pointer-events: none;
}

.areas-section .container { position: relative; z-index: 1; }

.areas-section .section-header__title { color: var(--white); }
.areas-section .section-header__subtitle { color: rgba(255,255,255,0.7); }
.areas-section .section-header__eyebrow {
  background: rgba(255,255,255,0.12);
  color: var(--secondary-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.375rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-slow);
}

.area-card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: var(--white);
}

.area-card__icon {
  font-size: 1.375rem;
  color: var(--secondary-light);
}

.area-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.area-card__subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.testimonials-scroll-hint { display: none; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--light);
}

.testimonials-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.star-row {
  display: flex;
  gap: 0.2rem;
}

.star-row i,
.testimonial-card__stars i {
  color: var(--secondary);
  font-size: 0.875rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary-glow);
  line-height: 1;
  color: rgba(10,92,107,0.12);
  font-weight: 900;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
}

.testimonial-card__stars i { font-size: 1rem; }

.testimonial-card__quote {
  flex: 1;
}

.testimonial-card__quote p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
}

.testimonial-card__location i { font-size: 0.75rem; color: var(--primary); }

.testimonial-card__badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.testimonial-card__badge i { color: #4285f4; font-size: 0.75rem; }

.testimonials-section__cta { text-align: center; }

/* ─── EMERGENCY CTA BANNER ───────────────────────────────────────────────────── */
.emergency-cta {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 60%, #071219 100%);
  position: relative;
  overflow: hidden;
}

/* subtle radial glow */
.emergency-cta::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(220,38,38,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.emergency-cta__accent { display: none; }

.emergency-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.emergency-cta .container { position: relative; z-index: 1; }

/* Desktop: 3-column grid */
.emergency-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

/* HEAD block — centered */
.emergency-cta__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.emergency-cta__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--emergency), #ef4444);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(220,38,38,0.45);
  position: relative;
}

.emergency-cta__icon i {
  font-size: 1.625rem;
  color: var(--white);
}

/* pulsing live dot on icon */
.emergency-cta__live {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--dark);
  animation: pulse-live 2s ease infinite;
}

.emergency-cta__title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.emergency-cta__subtitle {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin: 0;
}

.emergency-cta__subtitle strong { color: var(--secondary-light); }

/* BADGES row */
.emergency-cta__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  align-self: center;
}

.ecta-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.ecta-badge i {
  color: var(--primary-light);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ACTIONS */
.emergency-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.emergency-cta__call-btn {
  text-align: center;
  justify-content: center;
  font-size: 1rem;
}

.emergency-cta__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .emergency-cta__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .emergency-cta__head { align-items: center; text-align: center; }

  .emergency-cta__badges {
    grid-template-columns: repeat(2, 1fr);
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }

  .ecta-badge { justify-content: center; font-size: 0.78rem; }

  .emergency-cta__actions { max-width: 340px; margin: 0 auto; width: 100%; }
}

/* ─── STAT ITEM ICON ─────────────────────────────────────────────────────────── */
.stat-item__icon {
  display: block;
  font-size: 1.375rem;
  color: var(--secondary-light);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* ─── SECTION HEADER LEFT VARIANT ───────────────────────────────────────────── */
.section-header--left {
  text-align: left;
  max-width: 100%;
}
.section-header--left .section-header__eyebrow { margin-left: 0; }

/* ─── HOW WE WORK / PROCESS SECTION ─────────────────────────────────────────── */
.process-section {
  padding: 3rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.process-section .section-header__title { color: var(--white); }
.process-section .section-header__subtitle { color: var(--text-on-dark-muted); }
.process-section .section-header__eyebrow {
  background: rgba(255,255,255,0.08);
  color: var(--secondary-light);
}
.process-section .section-header { margin-bottom: 2rem; }

/* connecting dashed line behind icons */
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(10,92,107,0.5) 0px,
    rgba(10,92,107,0.5) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  padding: 1.75rem 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  margin: 0 0.5rem;
  transition: background var(--transition-slow), border-color var(--transition-slow), transform var(--transition-slow);
  position: relative;
  z-index: 1;
}
.process-step:hover {
  background: rgba(10,92,107,0.22);
  border-color: rgba(10,92,107,0.45);
  transform: translateY(-3px);
}
.process-step__icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--white);
  box-shadow: var(--shadow-teal);
  position: relative;
}
.process-step__num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.process-step__body { width: 100%; }
.process-step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}
.process-step__desc {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}
.process-connector { display: none; }

/* Mobile: auto-slideshow */
@media (max-width: 768px) {
  .process-section { padding: 2.5rem 0; }
  .process-steps {
    display: block;
    overflow: hidden;
  }
  .process-steps::before { display: none; }
  .process-step {
    display: none;
    margin: 0;
    animation: slideIn 0.4s ease;
  }
  .process-step.slide-active {
    display: flex;
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  /* dots */
  .process-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .process-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
  }
  .process-dot.active {
    background: var(--secondary);
    width: 22px;
    border-radius: 4px;
  }
}

/* ─── WHY CHOOSE US — SPLIT LAYOUT ──────────────────────────────────────────── */
.why-us__split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.why-us__img-wrap {
  position: relative;
}
.why-us__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-xl);
}
.why-us__cert-card {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-gold);
  min-width: 205px;
  z-index: 2;
}
.why-us__cert-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-us__cert-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}
.why-us__cert-card span {
  font-size: 0.73rem;
  opacity: 0.85;
}
.why-us__exp-card {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  background: var(--dark);
  border: 2px solid rgba(10,92,107,0.45);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.why-us__exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-us__exp-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.why-us__content-col .why-us__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.why-us__content-col .why-item {
  padding: 1.125rem;
}
.why-us__content-col .why-item__title { font-size: 0.9375rem; }
.why-us__content-col .why-item__desc  { font-size: 0.8125rem; }

@media (max-width: 1024px) {
  .why-us__split { grid-template-columns: 1fr; gap: 3rem; }
  .why-us__img   { height: 400px; }
  .why-us__cert-card { right: 0.5rem; bottom: -1rem; }
  .why-us__exp-card  { left: 0.5rem; top: -1rem; }
  .process-step { flex: 1 1 200px; }
}

@media (max-width: 768px) {
  .why-us__content-col .why-us__grid { grid-template-columns: 1fr; }

  /* ── AREAS MOBILE ── */
  .areas-section { padding: 2.5rem 0; }
  .areas-section .section-header { margin-bottom: 1.5rem; }
  .areas-section .section-header__title { font-size: 1.5rem; }
  .areas-section .section-header__subtitle { font-size: 0.875rem; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
  .area-card {
    padding: 0.875rem 0.5rem;
    gap: 0.3rem;
    border-radius: var(--radius-md);
  }
  .area-card__icon   { font-size: 1rem; }
  .area-card__name   { font-size: 0.8125rem; }
  .area-card__subtitle { display: none; }

  /* ── TESTIMONIALS MOBILE — horizontal swipe ── */
  .testimonials-section { padding: 2.5rem 0; }
  .testimonials-section .section-header { margin-bottom: 1.25rem; }
  .testimonials-section .section-header__title { font-size: 1.375rem; }
  .testimonials-rating-summary { font-size: 0.8rem; flex-wrap: wrap; gap: 0.375rem; }

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.875rem;
    padding: 0.5rem 0 1.25rem;
    margin-bottom: 1rem;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    padding: 1.25rem;
    gap: 0.875rem;
    border-radius: var(--radius-lg);
  }
  .testimonial-card::before { font-size: 3rem; top: 0.75rem; right: 1rem; }
  .testimonial-card__quote p { font-size: 0.875rem; line-height: 1.65; }
  .testimonial-card__avatar  { width: 36px; height: 36px; font-size: 0.75rem; }
  .testimonial-card__name    { font-size: 0.875rem; }
  .testimonial-card__location { font-size: 0.75rem; }

  /* swipe hint dots */
  .testimonials-scroll-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
  }
  .testimonials-scroll-hint i { font-size: 0.7rem; animation: nudge 1.8s ease infinite; }
  @keyframes nudge {
    0%,100% { transform: translateX(0); }
    50%      { transform: translateX(4px); }
  }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: clamp(4rem, 7vw, 5.5rem) 0 0;
  position: relative;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.125rem;
}

.footer-logo__icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-logo__name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.footer-logo__name span:first-child {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo__name span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col__tagline {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.375rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
}

.footer-badge i { color: var(--secondary-light); font-size: 0.75rem; }

/* Social links */
.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social__link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social__link:hover { transform: translateY(-3px); }
.footer-social__link--wa:hover  { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); }
.footer-social__link--fb:hover  { background: #1877f2; color: var(--white); border-color: #1877f2; }
.footer-social__link--ig:hover  { background: #e1306c; color: var(--white); border-color: #e1306c; }
.footer-social__link--gm:hover  { background: #4285f4; color: var(--white); border-color: #4285f4; }

/* Footer columns */
.footer-col__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid rgba(201,146,42,0.25);
}

.footer-col__list {
  list-style: none;
}

.footer-col__list li { margin-bottom: 0.625rem; }

.footer-col__list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.footer-col__list a:hover { color: var(--white); }
.footer-col__list a i { font-size: 0.625rem; color: var(--primary-light); flex-shrink: 0; }

.footer-col__list--two-col {
  columns: 2;
  column-gap: 0.75rem;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  margin-bottom: 1.375rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.footer-contact-list li strong { color: var(--white); }

.footer-contact-list li a {
  color: var(--secondary-light);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-list li a:hover { color: var(--white); text-decoration: underline; }

.footer-contact-list li em { color: rgba(255,255,255,0.5); font-style: italic; }

.footer-contact-list__icon {
  width: 32px;
  height: 32px;
  background: rgba(10,92,107,0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
  font-size: 0.875rem;
  margin-top: 2px;
}

.footer-contact-list__icon--wa { background: rgba(37,211,102,0.2); color: var(--wa-green); }
.footer-contact-list__icon--hours { background: rgba(201,146,42,0.2); color: var(--secondary-light); }

.footer-cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* Footer bottom */
.footer-bottom {
  padding: 1.375rem 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom__copy a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom__copy a:hover { color: var(--white); }

.footer-bottom__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-bottom__nav a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom__nav a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom__nav span {
  color: rgba(255,255,255,0.2);
  font-size: 0.875rem;
}

/* ─── FAB BUTTONS ────────────────────────────────────────────────────────────── */
/* ─── FLOATING ACTION BUTTONS — styles live in footer.php <style> block ─────── */

/* ─── INDEX.PHP SPECIFIC STYLES ──────────────────────────────────────────────── */
.main-content {
  padding: var(--section-py) 0;
  min-height: 50vh;
}

.page-header {
  text-align: center;
  padding: 3rem 0 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.page-header__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-card__thumb { overflow: hidden; }

.post-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-card__img { transform: scale(1.04); }

.post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.post-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.post-card__date,
.post-card__cat {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.post-card__cat i { color: var(--primary); }

.post-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  flex: 1;
}

.post-card__title a { color: var(--dark); }
.post-card__title a:hover { color: var(--primary); }

.post-card__excerpt { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1rem; }

.post-card__cta { margin-top: auto; align-self: flex-start; font-size: 0.875rem; }

/* Pagination */
.posts-pagination {
  text-align: center;
  margin-top: 2rem;
}

.posts-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.posts-pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: var(--white);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}

.posts-pagination .page-numbers:hover,
.posts-pagination .page-numbers.current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* No results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results__icon {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.no-results__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.no-results__text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Inline CTA strip */
.inline-cta {
  background: var(--primary);
  padding: 2.5rem 0;
}

.inline-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.inline-cta__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.inline-cta__text p { color: rgba(255,255,255,0.75); font-size: 1rem; }

.inline-cta__btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ─── MOBILE RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr 380px;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__form-wrap {
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
  }

  [data-animate="fade-left"] {
    transform: translateY(28px);
  }

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

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:last-child::after   { display: none; }
  .stat-item:nth-child(3)::after { display: none; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --ebar-h: 0px;
  }

  /* Emergency bar */
  .emergency-bar__cta { display: none; }
  .emergency-bar__text .sep { display: none; }
  .emergency-bar__text {
    font-size: 0.8rem;
    gap: 0.375rem;
  }

  /* Header — hide nav and actions, show hamburger */
  .site-header__nav,
  .site-header__actions { display: none; }

  .mobile-menu-toggle { display: flex; }

  /* Mobile nav open state */
  .site-header.mobile-open .site-header__nav {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + var(--ebar-h));
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 99;
    padding: 1.25rem;
    max-height: calc(100vh - var(--header-h) - var(--ebar-h));
    overflow-y: auto;
    animation: slideDown 0.25s ease;
  }

  .site-header.mobile-open .site-header__actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    z-index: 99;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  }

  .site-header.mobile-open .header-phone { flex: 1; justify-content: center; }
  .site-header.mobile-open .header-emergency-btn { flex: 1; justify-content: center; }

  .nav-menu { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .nav-menu a { padding: 0.875rem 1rem; font-size: 1rem; border-radius: var(--radius-md); }
  .nav-menu .sub-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    margin: 0.25rem 0 0.5rem;
    display: none !important;
    min-width: unset !important;
  }

  .nav-menu li.is-expanded > .sub-menu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.125rem;
  }

  /* Services only needs 1 col (fewer items) */
  .nav-menu li.is-expanded > .sub-menu:not(.sub-menu--areas) {
    grid-template-columns: 1fr;
  }

  .nav-menu .sub-menu a {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
  }
  .nav-menu .sub-menu a:hover { background: var(--white); color: var(--primary); }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Hero */
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-us__grid { grid-template-columns: 1fr; }

  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col__list--two-col { columns: 2; column-gap: 0.5rem; }
  .footer-col__list--two-col a { font-size: 0.8rem; }

  /* FAB */

  /* Inline CTA */
  .inline-cta__inner { flex-direction: column; text-align: center; }
  .inline-cta__btns { justify-content: center; }

  /* Posts grid */
  .posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.625rem, 7vw, 2.25rem); }
  .hero__title-main {
    font-size: clamp(2.5rem, 8.8vw, 3rem);
    white-space: nowrap;
  }
  .areas-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-bar { display: none; }
  :root { scroll-padding-top: var(--header-h); }
}

/* ─── LOADING STATES ──────────────────────────────────────────────────────────── */
.btn--loading { pointer-events: none; opacity: 0.8; }

/* ─── PRINT ──────────────────────────────────────────────────────────────────── */
@media print {
  .emergency-bar, .site-header, .fab-container { display: none !important; }
  body { color: #000 !important; }
  a  { color: #000 !important; text-decoration: underline; }
}
