/* ============================================================
   247 WATER DAMAGE RESTORATION — DESIGN SYSTEM
   Fonts: Barlow Condensed (display) + Plus Jakarta Sans (body)
   ============================================================ */

/* 01. DESIGN TOKENS */
:root {
  /* Brand Colors */
  --navy:        #091D38;
  --navy-mid:    #142B50;
  --navy-light:  #1E3F6E;
  --blue:        #1566C0;
  --blue-bright: #1A78D6;
  --blue-pale:   #EBF3FF;
  --orange:      #E85A20;
  --orange-hover:#D44D16;
  --orange-pale: #FFF2EC;
  --green:       #0DAB6D;
  --frost:       #F0F6FF;
  --white:       #FFFFFF;

  /* Neutral Scale */
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(9,29,56,0.08);
  --shadow-md:  0 4px 16px rgba(9,29,56,0.10);
  --shadow-lg:  0 8px 32px rgba(9,29,56,0.14);
  --shadow-xl:  0 20px 60px rgba(9,29,56,0.18);
  --shadow-blue: 0 8px 32px rgba(21,102,192,0.25);

  /* Radii */
  --r-sm:   6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Transitions */
  --t:      0.25s ease;
  --t-fast: 0.15s ease;
  --t-slow: 0.4s ease;

  /* Layout */
  --max-w:       1240px;
  --pad-x:       clamp(1.25rem, 5vw, 2.5rem);
  --section-py:  clamp(3.5rem, 8vw, 6rem);
  --header-h:    76px;
}

/* 02. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* 03. TYPOGRAPHY */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 52ch;
  line-height: 1.7;
}

/* 04. LAYOUT */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1440px; }

.section {
  padding-block: var(--section-py);
}
.section--frost   { background: var(--frost); }
.section--navy    { background: var(--navy); }
.section--navy-mid{ background: var(--navy-mid); }
.section--blue    { background: var(--blue); }
.section--white   { background: var(--white); }

/* Tide mark background effect (signature element) */
.tide-mark {
  position: relative;
}
.tide-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 50% at 85% 70%, rgba(21,102,192,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 80%  60% at 15% 85%, rgba(21,102,192,0.04)  0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.tide-mark > * { position: relative; z-index: 1; }

/* 05. UTILITIES */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-gray   { color: var(--gray-500); }

.flex   { display: flex; }
.grid   { display: grid; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

.items-center   { align-items: center; }
.justify-center { justify-content: center; }
.text-center    { text-align: center; }

/* 06. KEYFRAMES */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes waveFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal base class */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 07. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--t-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,90,32,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,90,32,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* Call button with pulse */
.btn-call {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-full);
  position: relative;
}
.btn-call::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-full);
  background: var(--orange);
  animation: pulse-ring 1.8s ease-out infinite;
  z-index: -1;
}
.btn-call:hover { background: var(--orange-hover); }

/* 08. FORMS */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--gray-800);
  font-size: 0.95rem;
  transition: var(--t);
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,102,192,0.1);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* 09. ALERT BAR */
.alert-bar {
  background: var(--navy);
  padding: 0.55rem 0;
  text-align: center;
  position: relative;
  z-index: 200;
}
.alert-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
}
.alert-bar__inner a {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.alert-bar__inner a:hover { color: #FF8C60; }
.alert-bar__pulse {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
  flex-shrink: 0;
}

/* 10. SITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  height: var(--header-h);
}
.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(9,29,56,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img, .site-logo svg {
  height: 48px;
  width: auto;
}

/* 11. NAVIGATION */
.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-link:hover, .nav-item.current-menu-item .nav-link {
  color: var(--blue);
  background: var(--blue-pale);
}
.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  transform: translateX(-50%) translateY(6px);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-dropdown a:hover { background: var(--frost); color: var(--blue); }
.nav-dropdown a .icon { width: 18px; height: 18px; color: var(--blue); }

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  margin-left: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 1.5rem var(--pad-x) 2rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-list { margin-bottom: 1.5rem; }
.mobile-nav-link {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-link:hover { color: var(--blue); }
.mobile-nav-sub { padding-left: 1rem; }
.mobile-nav-sub a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
}
.mobile-nav-sub a:hover { color: var(--blue); }
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* 12. HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Geometric water background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(21,102,192,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(21,102,192,0.15) 0%, transparent 70%),
    linear-gradient(160deg, #091D38 0%, #0D2645 50%, #091D38 100%);
  z-index: 0;
}
/* Animated water circles */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(21,102,192,0.15);
  top: -150px;
  right: -100px;
  z-index: 0;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(21,102,192,0.12);
}
.hero-circle-1 {
  width: 500px; height: 500px;
  right: -80px; top: -120px;
  animation: waveFloat 6s ease-in-out infinite;
}
.hero-circle-2 {
  width: 350px; height: 350px;
  right: 100px; top: 50px;
  border-color: rgba(232,90,32,0.08);
  animation: waveFloat 8s ease-in-out infinite 1s;
}
.hero-circle-3 {
  width: 200px; height: 200px;
  left: 10%; bottom: 20%;
  animation: waveFloat 5s ease-in-out infinite 0.5s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-block: 5rem 4rem;
}

.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,90,32,0.15);
  color: #FF8C60;
  border: 1px solid rgba(232,90,32,0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeIn 0.6s ease;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .highlight {
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 46ch;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.trust-badge svg { color: var(--green); }

/* Hero phone card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease 0.3s both;
}
.hero-phone-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
}
.hero-phone-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
}
.hero-phone-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-phone-number a { color: inherit; }
.hero-phone-number a:hover { color: var(--orange); }
.hero-phone-tag {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.hero-checklist {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.hero-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.check-icon {
  width: 18px;
  height: 18px;
  background: rgba(13,171,109,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.check-icon svg { width: 10px; height: 10px; color: var(--green); }

/* Wave bottom of hero */
.hero-wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: auto;
}
.hero-wave svg { width: 100%; }

/* 13. EMERGENCY BAR */
.emergency-bar {
  background: var(--frost);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.emergency-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--gray-200);
  transition: background var(--t-fast);
}
.emergency-item:last-child { border-right: none; }
.emergency-item:hover { background: var(--white); }
.ei-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ei-icon svg { width: 24px; height: 24px; color: var(--blue); }
.ei-icon--orange { background: var(--orange-pale); }
.ei-icon--orange svg { color: var(--orange); }
.ei-icon--green { background: rgba(13,171,109,0.1); }
.ei-icon--green svg { color: var(--green); }
.ei-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.ei-text span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* 14. SERVICES GRID */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--t);
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--blue); }
.service-card:hover .service-card__icon {
  background: var(--blue);
}
.service-card:hover .service-card__icon svg { color: var(--white); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--t-fast);
}
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.service-card__link:hover { color: var(--orange); }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* Emergency tag on card */
.service-card--emergency .service-card__icon {
  background: var(--orange-pale);
}
.service-card--emergency .service-card__icon svg { color: var(--orange); }
.service-card--emergency:hover .service-card__icon {
  background: var(--orange);
}

/* 15. WHY CHOOSE US */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-us-visual {
  position: relative;
}
.why-us-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us-image-wrap .placeholder-visual {
  width: 100%;
  height: 100%;
}
.why-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.why-card-float--bottom-left {
  bottom: -1.5rem;
  left: -1.5rem;
}
.why-card-float--top-right {
  top: -1.5rem;
  right: -1.5rem;
}
.why-card-float .wf-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.why-card-float .wf-text { line-height: 1.2; }
.why-card-float .wf-text strong { font-size: 0.875rem; color: var(--navy); }
.why-card-float .wf-text span { font-size: 0.75rem; color: var(--gray-500); display: block; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-feature {
  display: flex;
  gap: 1rem;
}
.why-feature__icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feature__icon svg { width: 22px; height: 22px; color: var(--blue); }
.why-feature__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.why-feature__text {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* 16. STATS COUNTER */
.stats-section {
  background: var(--navy);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(21,102,192,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(232,90,32,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.stat-number .suffix { color: var(--orange); }
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* 17. PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-blue);
  position: relative;
}
.process-step:last-child .process-step__num {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,90,32,0.25);
}
.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

/* 18. TESTIMONIALS */
.testimonials-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(21,102,192,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-header .section-eyebrow { color: #FF8C60; }
.testimonials-header .section-title { color: var(--white); }

.testimonials-slider {
  position: relative;
  z-index: 1;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: var(--t);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.tcard-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #F6C844;
}
.tcard-stars svg { width: 18px; height: 18px; }
.tcard-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tcard-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.tcard-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.tcard-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* 19. SERVICE AREAS */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.area-tag {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--t-fast);
  cursor: default;
}
.area-tag svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.area-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* 20. BLOG CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.blog-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  overflow: hidden;
  position: relative;
}
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__cat {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-full);
}
.blog-card__body { padding: 1.5rem; }
.blog-card__date {
  font-size: 0.775rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.25;
  transition: color var(--t-fast);
}
.blog-card:hover .blog-card__title { color: var(--blue); }
.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card__read-more svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.blog-card:hover .blog-card__read-more svg { transform: translateX(3px); }

/* 21. CTA SECTION */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #C94A10 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 0% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.cta-banner__title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}
.cta-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-banner__phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 1rem;
}
.cta-banner__phone a { color: inherit; }
.cta-banner__phone a:hover { color: rgba(255,255,255,0.8); }

/* 22. FOOTER */
.site-footer {
  background: var(--navy);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 44px; }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  max-width: 30ch;
  line-height: 1.6;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); }

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cert-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* 23. FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  transition: transform var(--t), box-shadow var(--t);
}
.floating-btn:hover { transform: scale(1.05); }
.floating-btn-call {
  background: var(--orange);
}
.floating-btn-text {
  background: var(--navy);
}
.floating-btn svg { width: 18px; height: 18px; }

/* 24. SERVICES PAGE */
.services-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding-block: clamp(3rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-title { color: var(--white); margin-bottom: 1rem; }
.page-hero-subtitle { color: rgba(255,255,255,0.65); max-width: 55ch; margin-inline: auto; }

.service-detail {
  padding-block: 4rem;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail__inner {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail__content { direction: ltr; }
.service-detail:nth-child(even) .service-detail__visual { direction: ltr; }
.service-detail__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--frost) 0%, var(--blue-pale) 100%);
  display: flex; align-items: center; justify-content: center;
}
.service-detail__icon-large {
  width: 120px; height: 120px;
  color: var(--blue);
  opacity: 0.5;
}
.service-detail__title { margin-bottom: 0.75rem; }
.service-detail__desc { color: var(--gray-500); margin-bottom: 1.5rem; }
.service-detail__features {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-feature {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--gray-600);
}
.service-feature svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* 25. ABOUT PAGE */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.value-card {
  background: var(--frost);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.value-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value-card__icon svg { width: 22px; height: 22px; color: var(--blue); }
.value-card__title { font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.value-card__text { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--t);
}
.team-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.team-name { font-weight: 700; color: var(--navy); }
.team-role { font-size: 0.85rem; color: var(--blue); font-weight: 600; }
.team-bio { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.5rem; }

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cert-card {
  background: var(--frost);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cert-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-card__icon svg { width: 28px; height: 28px; color: var(--blue); }
.cert-card__name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.cert-card__desc { font-size: 0.78rem; color: var(--gray-500); }

/* 26. CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  background: var(--frost);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-card__label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 0.25rem; }
.contact-card__value { font-weight: 700; color: var(--navy); margin-bottom: 0; }
.contact-card__value a { color: var(--navy); }
.contact-card__value a:hover { color: var(--blue); }
.contact-card--emergency { border: 2px solid var(--orange); background: var(--orange-pale); }
.contact-card--emergency .contact-card__icon { background: var(--orange); }
.contact-card--emergency .contact-card__icon svg { color: var(--white); }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-title { margin-bottom: 0.4rem; }
.contact-form-sub { color: var(--gray-500); margin-bottom: 2rem; font-size: 0.9rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* 27. SINGLE POST */
.single-hero {
  background: var(--frost);
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.post-cat { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: var(--r-full); margin-bottom: 0.9rem; }
.post-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.75rem; }
.post-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; color: var(--gray-400); }
.post-meta span { display: flex; align-items: center; gap: 0.35rem; }

.post-content {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 3rem;
}
.post-content h2, .post-content h3 { margin: 2rem 0 0.75rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.post-content li { margin-bottom: 0.4rem; }
.post-content img { border-radius: var(--r-md); margin: 1.5rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.5rem;
  background: var(--frost);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--gray-600);
  margin: 1.5rem 0;
}

/* 28. 404 PAGE */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.error-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.error-title { margin-bottom: 0.75rem; }
.error-sub { color: var(--gray-500); max-width: 45ch; margin-inline: auto; margin-bottom: 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 29. BREADCRUMBS */
.breadcrumbs {
  padding: 0.85rem 0;
  font-size: 0.825rem;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumbs a { color: var(--blue); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span { color: var(--gray-300); margin-inline: 0.4rem; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  :root { --header-h: 68px; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .emergency-grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-item:nth-child(2) { border-right: none; }
  .emergency-item:nth-child(3) { border-top: 1px solid var(--gray-200); }
  .emergency-item:nth-child(4) { border-top: 1px solid var(--gray-200); border-right: none; }

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

  .why-us-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-us-visual { order: -1; }

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

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-grid::before { display: none; }

  .testimonials-track { grid-template-columns: 1fr; }
  .testimonial-card:not(:first-child) { display: none; }

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

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

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .about-mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .service-detail__inner { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__inner { direction: ltr; }

  .contact-layout { grid-template-columns: 1fr; }

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

  /* Show hamburger, hide desktop nav */
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn-call { padding: 0.65rem 1.1rem; font-size: 0.9rem; }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  :root { --section-py: clamp(2.5rem, 6vw, 4rem); }

  .hero-title { letter-spacing: -0.01em; }
  .hero-badge { font-size: 0.72rem; }

  .emergency-grid { grid-template-columns: 1fr 1fr; }

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

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

  .process-grid { grid-template-columns: 1fr; }

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

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:not(:first-child) { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }
  .certifications-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .floating-cta { flex-direction: row; bottom: 0; left: 0; right: 0; gap: 0; border-radius: 0; }
  .floating-btn { flex: 1; justify-content: center; border-radius: 0; padding: 1rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .alert-bar__inner { font-size: 0.78rem; }
  .emergency-grid { grid-template-columns: 1fr; }
  .emergency-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .emergency-item:last-child { border-bottom: none; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .header-cta .btn-call span.call-text { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
