/* =====================================================
   BALLWIN PLUMBING PROS — Main Stylesheet
   Design System: Dark Navy + Electric Blue + White
   ===================================================== */

/* ── Google Fonts are loaded in head.php ── */

/* =====================================================
   1. CSS Custom Properties (Design Tokens)
   ===================================================== */
:root {
  /* Colors */
  --color-primary:        #00A8E8;
  --color-primary-light:  #33B9ED;
  --color-primary-dark:   #0073A3;
  --color-accent:         #FF6B35;
  --color-accent-light:   #FFA17A;
  --color-emergency:      #FF6B35;
  --color-emergency-light:#FFA17A;
  --color-success:        #2E7D32;

  --color-navy:           #1A365D;
  --color-navy-mid:       #254B7C;
  --color-navy-light:     #2A4D7C;

  --color-white:          #FFFFFF;
  --color-off-white:      #F8FAFF;
  --color-gray-50:        #F1F5F9;
  --color-gray-100:       #E2E8F0;
  --color-gray-200:       #CBD5E1;
  --color-gray-400:       #94A3B8;
  --color-gray-600:       #475569;
  --color-gray-700:       #334155;
  --color-gray-800:       #1A365D;
  --color-gray-900:       #122542;

  --color-text:           #1A365D;
  --color-text-muted:     #64748B;
  --color-text-light:     #94A3B8;

  /* Typography */
  --font-base:  'Inter', system-ui, -apple-system, sans-serif;
  --font-head:  'Plus Jakarta Sans', 'Inter', sans-serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;

  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  --fw-normal:  400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-extra:   800;
  --fw-black:   900;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Borders */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.16), 0 8px 16px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 32px rgba(21,101,192,.25);
  --shadow-glow: 0 0 40px rgba(30,136,229,.3);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  clamp(1rem, 5vw, 2rem);

  /* Header heights */
  --header-top-h:   40px;
  --header-main-h:  76px;
  --header-total-h: 116px;
}

/* =====================================================
   2. Reset & Base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* =====================================================
   3. Layout Utilities
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--space-20); }
.section-sm { padding-block: var(--space-12); }
.section-lg { padding-block: var(--space-32); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* =====================================================
   4. Typography
   ===================================================== */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: rgba(30,136,229,.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-extra);
  line-height: var(--leading-tight);
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.section-title span { color: var(--color-primary-light); }

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  max-width: 640px;
}

.section-header { margin-bottom: var(--space-12); }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* Prose (service page body copy) */
.prose h2 {
  font-family: var(--font-head);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 3px solid var(--color-primary-light);
}

.prose h3 {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: var(--fw-bold);
  color: var(--color-gray-800);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose p { margin-bottom: var(--space-4); line-height: var(--leading-loose); color: var(--color-gray-700); }
.prose ul { margin-bottom: var(--space-4); padding-left: var(--space-5); list-style: disc; }
.prose ul li { margin-bottom: var(--space-2); color: var(--color-gray-700); line-height: var(--leading-loose); }
.prose strong { color: var(--color-gray-900); font-weight: var(--fw-semi); }

/* =====================================================
   5. Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  line-height: 1;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(21,101,192,.35);
  color: var(--color-white);
}

.btn-phone {
  background: linear-gradient(135deg, var(--color-emergency), #E04B14);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(211,47,47,.3);
}
.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,47,47,.4);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: var(--color-gray-50);
  transform: translateY(-2px);
  color: var(--color-primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}
.btn-outline:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), #E04B14);
  color: var(--color-white);
}
.btn-accent:hover { transform: translateY(-2px); color: var(--color-white); }

.btn-lg { padding: 1rem 2.25rem; font-size: var(--text-lg); border-radius: var(--radius-lg); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--text-sm); }
.btn-block { width: 100%; }
.btn svg { flex-shrink: 0; }

/* =====================================================
   6. Emergency Banner
   ===================================================== */
.emergency-banner {
  background: linear-gradient(90deg, var(--color-emergency), #E04B14);
  color: var(--color-white);
  padding: 0.6rem 0;
  position: relative;
  z-index: 1000;
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.emergency-icon { font-size: 1.1rem; animation: pulse 1.5s ease infinite; }
.emergency-text { font-size: var(--text-sm); font-weight: var(--fw-medium); }
.emergency-phone {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-decoration: underline;
  letter-spacing: .02em;
}
.emergency-phone:hover { color: var(--color-accent-light); }
.emergency-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  font-size: 1.25rem;
  line-height: 1;
  transition: color var(--transition-fast);
}
.emergency-close:hover { color: var(--color-white); }

@keyframes pulse { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.15); } }

/* =====================================================
   7. Header
   ===================================================== */
.header-top {
  background: var(--color-navy);
  height: var(--header-top-h);
  display: flex;
  align-items: center;
}
.header-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-info { display: flex; gap: var(--space-6); }
.header-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}
.header-info-item svg { opacity: .7; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-rating { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); color: var(--color-gray-400); }
.header-rating .stars { color: #FF8F5E; font-size: var(--text-sm); }

.site-header { position: sticky; top: 0; z-index: 999; }

.header-main {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-md);
  height: var(--header-main-h);
  display: flex;
  align-items: center;
}
.header-main-content {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-brand { font-family: var(--font-head); font-size: var(--text-lg); font-weight: var(--fw-extra); color: var(--color-navy); line-height: 1; }
.logo-tagline { font-size: 10px; color: var(--color-text-muted); letter-spacing: .03em; }
.logo:hover .logo-brand { color: var(--color-primary); }

/* Nav */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: var(--space-1); }
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a { color: var(--color-primary); background: rgba(30,136,229,.07); }
.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown > a svg { transition: transform var(--transition-fast); }
.nav-item.has-dropdown:hover > a svg { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-100);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
}
.nav-item.has-dropdown:hover .mega-dropdown,
.nav-item.has-dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mega-dropdown-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: var(--space-6); }
.mega-col { padding: 0 var(--space-4); }
.mega-col:not(:last-child) { border-right: 1px solid var(--color-gray-100); }
.mega-heading { font-size: var(--text-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .08em; color: var(--color-primary-light); margin-bottom: var(--space-3); }
.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.mega-col ul li a:hover,
.mega-col ul li a.active { color: var(--color-primary); background: rgba(30,136,229,.07); }
.service-icon { font-size: .9rem; }

.header-cta { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); border-radius: var(--radius-md); }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--color-gray-700); border-radius: 2px; transition: all var(--transition-base); }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10,22,40,.5);
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-content {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(85vw, 380px);
  background: var(--color-white);
  overflow-y: auto;
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  animation: slideIn var(--transition-base) ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-6); }
.mobile-nav-header .logo-brand { font-family: var(--font-head); font-size: var(--text-xl); font-weight: var(--fw-extra); color: var(--color-navy); }
.mobile-nav-close { font-size: 1.75rem; color: var(--color-gray-600); transition: color var(--transition-fast); line-height:1; }
.mobile-nav-close:hover { color: var(--color-gray-900); }
.mobile-nav-list li { border-bottom: 1px solid var(--color-gray-100); }
.mobile-nav-list li a, .mobile-nav-group-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) 0;
  font-size: var(--text-base); color: var(--color-gray-800); font-weight: var(--fw-medium);
  width: 100%; text-align: left;
}
.mobile-nav-group-toggle svg { transition: transform var(--transition-fast); }
.mobile-nav-group.open .mobile-nav-group-toggle svg { transform: rotate(180deg); }
.mobile-nav-sub { display: none; padding-left: var(--space-4); }
.mobile-nav-group.open .mobile-nav-sub { display: block; }
.mobile-nav-sub li a { font-size: var(--text-sm); padding: var(--space-2) 0; color: var(--color-gray-600); border-bottom: none; }
.mobile-nav-cta { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }

/* =====================================================
   8. Hero Section
   ===================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 50%, #1A365D 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(21,101,192,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(30,136,229,.15) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(30,136,229,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(30,136,229,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
  padding-block: var(--space-20);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(30,136,229,.15);
  border: 1px solid rgba(30,136,229,.3);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: #8AD9FC;
  margin-bottom: var(--space-5);
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--color-accent); border-radius: 50%; animation: pulse 1.5s ease infinite; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: var(--fw-black);
  line-height: var(--leading-tight);
  color: var(--color-white);
  margin-bottom: var(--space-5);
}
.hero-title span { color: #5DCDFA; display: block; }

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.72);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-8); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
}
.hero-trust-item svg { color: #5DCDFA; flex-shrink: 0; }

/* Hero Right Panel */
.hero-panel {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
}
.hero-panel-title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  text-align: center;
}
.hero-panel-title span { color: #5DCDFA; }

.hero-form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-size: var(--text-sm); font-weight: var(--fw-medium); color: rgba(255,255,255,.85); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-white);
  transition: border-color var(--transition-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #5DCDFA; background: rgba(255,255,255,.15); }
.form-group select option { background: var(--color-navy); color: var(--color-white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-trust { text-align: center; font-size: var(--text-xs); color: rgba(255,255,255,.5); margin-top: var(--space-2); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,.4);
  font-size: var(--text-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* =====================================================
   9. Trust Badges Bar
   ===================================================== */
.trust-bar {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-100);
  padding-block: var(--space-5);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-gray-700);
}
.trust-bar-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.trust-bar-text-top { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: var(--fw-normal); }
.trust-bar-text-bot { font-weight: var(--fw-bold); color: var(--color-gray-800); font-size: var(--text-sm); }
.trust-bar-divider { width: 1px; height: 40px; background: var(--color-gray-200); }

/* =====================================================
   10. Why Us / Features Section
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary-dark));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(30,136,229,.2); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(30,136,229,.1), rgba(21,101,192,.05));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-5);
  transition: transform var(--transition-base);
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-title {
  font-size: var(--text-lg); font-weight: var(--fw-bold);
  color: var(--color-gray-800); margin-bottom: var(--space-3);
}
.feature-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-loose); }

/* =====================================================
   11. Services Grid
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,136,229,.25);
  color: inherit;
}
.service-card-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-base);
}
.service-card:hover .service-card-icon { background: rgba(30,136,229,.1); }
.service-card-name { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--color-gray-800); }
.service-card-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-snug); flex: 1; }
.service-card-link {
  font-size: var(--text-sm); font-weight: var(--fw-semi);
  color: var(--color-primary-light);
  display: flex; align-items: center; gap: 4px;
  transition: gap var(--transition-fast);
}
.service-card:hover .service-card-link { gap: 8px; }

/* Emergency service card */
.service-card.emergency { border-color: rgba(211,47,47,.2); }
.service-card.emergency .service-card-icon { background: rgba(211,47,47,.08); }
.service-card.emergency .service-card-name { color: var(--color-emergency); }

/* =====================================================
   12. Stats / Numbers Bar
   ===================================================== */
.stats-bar { background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid)); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: rgba(255,255,255,.1);
}
.stat-item {
  padding: var(--space-10) var(--space-6);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-number span { color: var(--color-accent-light); }
.stat-label { font-size: var(--text-sm); color: rgba(255,255,255,.55); }

/* =====================================================
   13. Process Section
   ===================================================== */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-6); position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary-dark));
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.process-step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: var(--text-xl); font-weight: var(--fw-black);
  color: white;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-blue);
  position: relative;
}
.process-step-title { font-size: var(--text-sm); font-weight: var(--fw-bold); color: var(--color-gray-800); margin-bottom: var(--space-2); }
.process-step-desc { font-size: var(--text-xs); color: var(--color-text-muted); line-height: var(--leading-normal); }

/* =====================================================
   14. Reviews Section
   ===================================================== */
.reviews-bg { background: var(--color-gray-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: transform var(--transition-base);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-stars { color: #FF8F5E; font-size: var(--text-lg); letter-spacing: 2px; }
.review-text { font-size: var(--text-sm); color: var(--color-gray-700); line-height: var(--leading-loose); flex: 1; font-style: italic; }
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }
.review-author { display: flex; align-items: center; gap: var(--space-3); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold); color: white; font-size: var(--text-lg);
  flex-shrink: 0;
}
.review-name { font-weight: var(--fw-bold); font-size: var(--text-sm); color: var(--color-gray-800); }
.review-location { font-size: var(--text-xs); color: var(--color-text-muted); }
.review-google { display: flex; align-items: center; gap: 4px; font-size: var(--text-xs); color: var(--color-text-muted); margin-top: auto; }

/* =====================================================
   15. Problems Section (Dark)
   ===================================================== */
.problems-section { background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid)); }
.problems-section .section-title { color: var(--color-white); }
.problems-section .section-label { color: #8AD9FC; background: rgba(30,136,229,.15); }
.problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.problem-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}
.problem-card:hover { background: rgba(30,136,229,.12); border-color: rgba(30,136,229,.3); transform: translateY(-3px); }
.problem-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.problem-title { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--color-white); margin-bottom: var(--space-2); }
.problem-desc { font-size: var(--text-sm); color: rgba(255,255,255,.6); line-height: var(--leading-normal); }

/* =====================================================
   16. Service Area Section
   ===================================================== */
.service-area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.service-area-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 400px;
  background: var(--color-gray-100);
}
.service-area-map iframe { width: 100%; height: 100%; border: none; }
.neighborhood-tags { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.neighborhood-tag {
  background: rgba(30,136,229,.08);
  border: 1px solid rgba(30,136,229,.2);
  color: var(--color-primary);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  transition: all var(--transition-fast);
}
.neighborhood-tag:hover { background: var(--color-primary-light); color: white; }

/* =====================================================
   17. FAQ Section
   ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: var(--space-4); max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { border-color: rgba(30,136,229,.3); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: var(--color-gray-800);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.faq-item.open .faq-question { color: var(--color-primary); }
.faq-chevron {
  width: 24px; height: 24px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.faq-item.open .faq-chevron { background: var(--color-primary-light); color: white; transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: var(--leading-loose);
}
.faq-item.open .faq-answer { display: block; }

/* =====================================================
   18. Final CTA Section
   ===================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0073A3 100%);
  padding-block: var(--space-20);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(255,255,255,.05) 0%, transparent 70%);
}
.final-cta-content { position: relative; text-align: center; }
.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--fw-black);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
.final-cta p { font-size: var(--text-lg); color: rgba(255,255,255,.78); margin-bottom: var(--space-8); max-width: 640px; margin-inline: auto; margin-bottom: var(--space-8); }
.final-cta-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-6); }
.final-cta-hours { font-size: var(--text-sm); color: rgba(255,255,255,.55); }

/* =====================================================
   19. Site Footer
   ===================================================== */
.site-footer { background: var(--color-navy); color: rgba(255,255,255,.7); padding-top: var(--space-16); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-12); padding-bottom: var(--space-12); }

.footer-logo { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-5); }
.footer-logo span { font-family: var(--font-head); font-size: var(--text-lg); font-weight: var(--fw-extra); color: var(--color-white); }
.footer-brand p { font-size: var(--text-sm); line-height: var(--leading-loose); margin-bottom: var(--space-4); }
.footer-trust-badges { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.trust-badge { font-size: var(--text-sm); color: rgba(255,255,255,.8); }
.footer-rating { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); }
.footer-rating .stars { color: #FF8F5E; }

.footer-col h4 { font-family: var(--font-head); font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--color-white); margin-bottom: var(--space-5); }
.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col ul li a { font-size: var(--text-sm); color: rgba(255,255,255,.6); transition: color var(--transition-fast); }
.footer-col ul li a:hover { color: #5DCDFA; }

.footer-contact-list li { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); font-size: var(--text-sm); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: .7; }
.footer-contact-list a { color: rgba(255,255,255,.7); }
.footer-contact-list a:hover { color: #5DCDFA; }
.footer-links { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid rgba(255,255,255,.08); }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,.5); }
.footer-links a:hover { color: #5DCDFA; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: var(--space-6);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,.4); margin-bottom: var(--space-2); }
.footer-service-area { font-size: 11px !important; }

/* =====================================================
   20. Sticky Mobile CTA Bar
   ===================================================== */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-cta-call,
.sticky-cta-schedule {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-align: center;
  transition: filter var(--transition-fast);
}
.sticky-cta-call { background: var(--color-emergency); color: white; }
.sticky-cta-schedule { background: var(--color-primary); color: white; }
.sticky-cta-call:hover, .sticky-cta-schedule:hover { filter: brightness(1.1); color: white; }

/* =====================================================
   21. Breadcrumb
   ===================================================== */
.breadcrumb {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-100);
  padding-block: var(--space-3);
}
.breadcrumb-list { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); }
.breadcrumb-list li::after { content: '/'; color: var(--color-gray-400); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li a { color: var(--color-primary-light); font-weight: var(--fw-medium); }
.breadcrumb-list li:last-child span { color: var(--color-gray-600); }

/* =====================================================
   22. Inner Page Hero (Service Pages)
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding-block: var(--space-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(30,136,229,.2) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; }
.page-hero-badge { display: inline-flex; align-items: center; gap: var(--space-2); background: rgba(211,47,47,.2); border: 1px solid rgba(211,47,47,.4); border-radius: var(--radius-full); padding: var(--space-1) var(--space-4); font-size: var(--text-sm); font-weight: var(--fw-semi); color: #FFA17A; margin-bottom: var(--space-4); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); font-weight: var(--fw-black); color: var(--color-white); line-height: var(--leading-tight); margin-bottom: var(--space-5); }
.page-hero p { font-size: var(--text-lg); color: rgba(255,255,255,.72); line-height: var(--leading-loose); margin-bottom: var(--space-8); max-width: 640px; }
.page-hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-8); }
.page-hero-trust { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.page-hero-trust span { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: rgba(255,255,255,.65); }

/* =====================================================
   23. Service Page Layout (Two-Column)
   ===================================================== */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-12); align-items: start; padding-block: var(--space-16); }
.service-content { min-width: 0; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: var(--space-6); position: sticky; top: calc(var(--header-total-h) + var(--space-6)); }
.sidebar-cta-box {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  color: white;
}
.sidebar-cta-box h3 { font-family: var(--font-head); font-size: var(--text-xl); font-weight: var(--fw-bold); margin-bottom: var(--space-3); }
.sidebar-cta-box p { font-size: var(--text-sm); opacity: .85; margin-bottom: var(--space-5); }
.sidebar-cta-phone { font-family: var(--font-head); font-size: var(--text-2xl); font-weight: var(--fw-black); margin-bottom: var(--space-5); display: block; }
.sidebar-services-box {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.sidebar-services-box h4 { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--color-gray-800); margin-bottom: var(--space-5); }
.sidebar-services-list li a {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm); color: var(--color-gray-700);
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--color-gray-50);
}
.sidebar-services-list li a:hover { background: rgba(30,136,229,.06); color: var(--color-primary); padding-left: var(--space-4); }
.sidebar-services-list li:last-child a { border-bottom: none; }

/* Guarantee box */
.sidebar-guarantee {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center; color: white;
}
.sidebar-guarantee-icon { font-size: 2.5rem; margin-bottom: var(--space-3); }
.sidebar-guarantee h4 { font-family: var(--font-head); font-size: var(--text-lg); font-weight: var(--fw-bold); margin-bottom: var(--space-2); }
.sidebar-guarantee p { font-size: var(--text-sm); opacity: .85; }

/* Coupon box */
.sidebar-coupon {
  background: var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center; color: white;
  border: 2px dashed rgba(255,255,255,.4);
}
.sidebar-coupon-badge { font-size: var(--text-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.sidebar-coupon-amount { font-family: var(--font-head); font-size: var(--text-4xl); font-weight: var(--fw-black); line-height: 1; margin-block: var(--space-2); }
.sidebar-coupon p { font-size: var(--text-sm); opacity: .9; margin-bottom: var(--space-4); }

/* =====================================================
   24. Service Sub-Cards (service page sections)
   ===================================================== */
.service-sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); margin-top: var(--space-6); }
.service-sub-card {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-base);
}
.service-sub-card:hover { background: rgba(30,136,229,.05); border-color: rgba(30,136,229,.2); }
.service-sub-card h3 { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--color-gray-800); margin-bottom: var(--space-2); }
.service-sub-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-normal); }

/* Case Studies */
.case-study-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.case-study-header { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); }
.case-study-num { width: 44px; height: 44px; background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: var(--fw-black); color: white; font-size: var(--text-lg); flex-shrink: 0; }
.case-study-title { font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--color-gray-800); }
.case-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.case-study-col h4 { font-size: var(--text-sm); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .06em; color: var(--color-primary-light); margin-bottom: var(--space-2); }
.case-study-col p { font-size: var(--text-sm); color: var(--color-gray-700); line-height: var(--leading-normal); }

/* Guarantee Cards */
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.guarantee-card {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: white; text-align: center;
}
.guarantee-card-icon { font-size: 2.5rem; margin-bottom: var(--space-3); }
.guarantee-card h3 { font-size: var(--text-base); font-weight: var(--fw-bold); margin-bottom: var(--space-2); }
.guarantee-card p { font-size: var(--text-sm); opacity: .85; line-height: var(--leading-normal); }

/* Before/After */
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-6); }
.before-after-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.before-after-img { height: 200px; background: var(--color-gray-200); position: relative; display: flex; align-items: center; justify-content: center; color: var(--color-gray-400); font-size: var(--text-sm); }
.before-after-label { position: absolute; top: var(--space-3); left: var(--space-3); background: var(--color-navy); color: white; font-size: var(--text-xs); font-weight: var(--fw-bold); padding: 2px var(--space-3); border-radius: var(--radius-full); }
.before-after-caption { background: var(--color-white); padding: var(--space-4); font-size: var(--text-sm); color: var(--color-gray-700); border: 1px solid var(--color-gray-100); border-top: none; }

/* =====================================================
   25. Blog
   ===================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--color-gray-200); position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat { position: absolute; top: var(--space-3); left: var(--space-3); background: var(--color-primary); color: white; font-size: var(--text-xs); font-weight: var(--fw-bold); padding: 2px var(--space-3); border-radius: var(--radius-full); }
.blog-card-body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; }
.blog-card-date { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-3); }
.blog-card-title { font-family: var(--font-head); font-size: var(--text-lg); font-weight: var(--fw-bold); color: var(--color-gray-900); margin-bottom: var(--space-3); line-height: var(--leading-snug); }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-loose); flex: 1; margin-bottom: var(--space-5); }
.blog-card-link { font-size: var(--text-sm); font-weight: var(--fw-semi); color: var(--color-primary-light); display: flex; align-items: center; gap: 4px; margin-top: auto; }

/* =====================================================
   26. Contact Page
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); }
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  color: var(--color-gray-800);
  width: 100%;
  transition: border-color var(--transition-fast);
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--color-primary-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30,136,229,.1);
}
.contact-form .form-group label { font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--color-gray-700); margin-bottom: var(--space-2); display: block; }
.contact-info-cards { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-info-card {
  display: flex; align-items: flex-start; gap: var(--space-5);
  background: var(--color-white); border-radius: var(--radius-xl);
  padding: var(--space-6); border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
}
.contact-info-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.contact-info-title { font-weight: var(--fw-bold); color: var(--color-gray-800); margin-bottom: var(--space-1); }
.contact-info-detail { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-normal); }
.contact-info-detail a { color: var(--color-primary); font-weight: var(--fw-medium); }

/* =====================================================
   27. About Page
   ===================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.about-img-wrapper { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.about-img-wrapper img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: var(--space-6); left: var(--space-6);
  background: var(--color-white); border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--space-4);
}
.team-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.value-card { background: var(--color-gray-50); border-radius: var(--radius-lg); padding: var(--space-5); }
.value-card h4 { font-weight: var(--fw-bold); color: var(--color-gray-800); margin-bottom: var(--space-1); font-size: var(--text-sm); }
.value-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* =====================================================
   28. Financing Page
   ===================================================== */
.financing-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.financing-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}
.financing-card:hover { border-color: var(--color-primary-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.financing-card.popular { border-color: var(--color-primary-light); box-shadow: var(--shadow-blue); }
.financing-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--color-primary-light); color: white; font-size: var(--text-xs); font-weight: var(--fw-bold); padding: 4px var(--space-4); border-radius: var(--radius-full); white-space: nowrap; }
.financing-card-icon { font-size: 2.5rem; margin-bottom: var(--space-4); }
.financing-card h3 { font-family: var(--font-head); font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--color-gray-800); margin-bottom: var(--space-2); }
.financing-card-rate { font-family: var(--font-head); font-size: var(--text-4xl); font-weight: var(--fw-black); color: var(--color-primary); margin-bottom: var(--space-4); }
.financing-card-rate span { font-size: var(--text-base); color: var(--color-text-muted); font-weight: var(--fw-normal); }
.financing-card ul { list-style: none; text-align: left; margin-bottom: var(--space-6); }
.financing-card ul li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-gray-700); padding: var(--space-2) 0; border-bottom: 1px solid var(--color-gray-50); }
.financing-card ul li::before { content: '✓'; color: var(--color-success); font-weight: bold; flex-shrink: 0; }

/* =====================================================
   29. Utility / Helper
   ===================================================== */
.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; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.highlight { color: var(--color-primary-light); }
.text-white { color: var(--color-white); }
.bg-light { background: var(--color-gray-50); }
.rounded-xl { border-radius: var(--radius-xl); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.divider { height: 1px; background: var(--color-gray-100); margin-block: var(--space-12); }

/* =====================================================
   30. Responsive — Tablet (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  :root { --container-pad: 1.25rem; }
  .hero-content { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-panel { max-width: 540px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .mega-dropdown { width: 600px; }
  .mega-dropdown-inner { grid-template-columns: repeat(3, 1fr); }
  .header-info { display: none; }
  .header-top { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .financing-plans { grid-template-columns: repeat(2, 1fr); }
  .service-area-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .case-study-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   31. Responsive — Mobile (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {
  :root { --header-main-h: 64px; --header-total-h: 64px; }
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .sticky-cta-mobile { display: flex; }
  body { padding-bottom: 72px; }

  .hero { min-height: auto; padding-block: var(--space-12); }
  .hero-content { grid-template-columns: 1fr; gap: var(--space-8); padding-block: var(--space-8); }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-panel { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-scroll { display: none; }

  .trust-bar-inner { flex-direction: column; gap: var(--space-3); }
  .trust-bar-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .reviews-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .financing-plans { grid-template-columns: 1fr; }
  .service-sub-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .page-hero { padding-block: var(--space-10); }
  .service-area-grid { grid-template-columns: 1fr; }
  .team-values { grid-template-columns: 1fr; }
  .header-top { display: none; }
  .contact-form-wrapper { padding: var(--space-6); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: var(--space-3); }
}

/* =====================================================
   32. Header Menu Styling Overrides (Image Match)
   ===================================================== */
.logo-tagline {
  font-size: 8px !important;
  font-weight: 700 !important;
  color: #718096 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-top: 1px;
}
.logo-icon svg {
  stroke: var(--color-primary-light);
}
.nav-item > a {
  background: transparent !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  color: var(--color-navy) !important;
  transition: color var(--transition-fast) !important;
}
.nav-item > a:hover,
.nav-item.active > a {
  color: var(--color-primary) !important;
  background: transparent !important;
}
.header-call-block {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.header-call-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.header-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}
.header-call-link:hover .header-call-icon {
  background-color: rgba(30, 136, 229, 0.15);
}
.header-call-icon svg {
  stroke: var(--color-navy);
}
.header-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header-call-label {
  font-size: 9px;
  font-weight: 700;
  color: #718096;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.header-call-number {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-navy);
}

@media (max-width: 1024px) {
  .header-call-block { display: none; }
}

/* =====================================================
   33. Promo Modal Popup Styling
   ===================================================== */
.promo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 22, 40, 0.6); /* Glassmorphic dark navy tint */
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: var(--space-4);
}

.promo-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.promo-modal-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  padding: var(--space-8);
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.promo-modal-overlay.open .promo-modal-card {
  transform: translateY(0) scale(1);
}

.promo-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-gray-50);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-gray-600);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.promo-modal-close:hover {
  background-color: var(--color-gray-100);
  color: var(--color-gray-900);
}

.promo-badge {
  display: inline-block;
  background-color: var(--color-accent-light); /* Yellow/Orange */
  color: var(--color-navy);
  font-family: var(--font-head);
  font-weight: var(--fw-black);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.promo-heading {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-navy);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.promo-text {
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
}

.promo-text strong {
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

.promo-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.btn-promo-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem var(--space-6);
  font-family: var(--font-head);
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
  text-decoration: none;
  text-align: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.3);
}

.btn-promo-primary:hover {
  background-color: #E04B14; /* Darker orange */
  transform: translateY(-1px);
}

.promo-features {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--space-4);
}

.promo-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-gray-600);
}

.promo-feature-item svg {
  color: var(--color-success);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .promo-modal-card {
    padding: var(--space-6);
  }
  .promo-heading {
    font-size: var(--text-xl);
  }
  .promo-features {
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
  }
}

/* =====================================================
   33. Site Footer Rebranding & Matching Overrides
   ===================================================== */
.footer-hours-card {
  background: rgba(13, 27, 46, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
  text-align: left;
}
.footer-hours-card .hours-title {
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}
.footer-hours-card .hours-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
}

.footer-brand-title {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
}

.footer-brand-contact {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-loose);
}
.footer-brand-contact p {
  margin: 0 0 var(--space-2) 0;
}
.footer-brand-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-brand-contact a:hover {
  color: #5DCDFA;
}

.footer-bottom-inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  align-items: center;
  line-height: 1.5;
}
.footer-bottom-inline a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-bottom-inline a:hover {
  color: #5DCDFA;
}


/* =====================================================
   34. Popup Secondary Button + Promo Actions
   ===================================================== */
.btn-promo-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85);
  background: transparent;
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-align: center;
}
.btn-promo-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.promo-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: stretch;
  margin-bottom: var(--space-5);
}

/* =====================================================
   35. Emergency CTA Strip
   ===================================================== */
.emergency-cta-strip {
  background: linear-gradient(135deg, var(--color-accent) 0%, #e85520 100%);
  padding: var(--space-6) 0;
}
.emergency-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.emergency-cta-strip-left { display: flex; align-items: center; gap: var(--space-4); }
.emergency-cta-strip-icon { font-size: 2.5rem; line-height: 1; }
.emergency-cta-strip-text h3 {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: #fff;
  margin: 0 0 var(--space-1);
}
.emergency-cta-strip-text p { font-size: var(--text-sm); color: rgba(255,255,255,0.85); margin: 0; }
.btn-emergency-strip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: #fff;
  color: var(--color-accent);
  font-family: var(--font-head);
  font-weight: var(--fw-black);
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-emergency-strip:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* =====================================================
   36. Financing CTA Strip
   ===================================================== */
.financing-cta-strip {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0d3460 100%);
  padding: var(--space-10) 0;
}
.financing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.financing-cta-text h2 { font-family: var(--font-head); font-size: var(--text-2xl); font-weight: var(--fw-black); color: #fff; margin: 0 0 var(--space-2); }
.financing-cta-text p { font-size: var(--text-base); color: rgba(255,255,255,0.75); margin: 0; max-width: 480px; line-height: var(--leading-normal); }
.financing-cta-badges { display: flex; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.financing-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.85);
  font-weight: var(--fw-semi);
}
.financing-cta-actions { display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start; flex-shrink: 0; }

/* =====================================================
   37. Guarantee Strip
   ===================================================== */
.guarantee-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-8) 0;
}
.guarantee-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  text-align: center;
}
.guarantee-icon { font-size: 3rem; line-height: 1; }
.guarantee-text h3 { font-family: var(--font-head); font-size: var(--text-xl); font-weight: var(--fw-black); color: #fff; margin: 0 0 var(--space-1); }
.guarantee-text p { font-size: var(--text-sm); color: rgba(255,255,255,0.85); margin: 0; }

/* =====================================================
   38. Inline Review Cards Strip
   ===================================================== */
.reviews-strip { background: var(--color-off-white); border-top: 1px solid var(--color-gray-100); border-bottom: 1px solid var(--color-gray-100); padding: var(--space-10) 0; }
.reviews-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.review-card-mini {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.review-card-mini:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card-stars { color: #F59E0B; font-size: var(--text-base); margin-bottom: var(--space-3); letter-spacing: 2px; }
.review-card-text { font-size: var(--text-sm); color: var(--color-gray-700); line-height: var(--leading-normal); margin-bottom: var(--space-4); font-style: italic; }
.review-card-author { display: flex; align-items: center; gap: var(--space-3); }
.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.review-card-name { font-weight: var(--fw-bold); font-size: var(--text-sm); color: var(--color-navy); }
.review-card-location { font-size: var(--text-xs); color: var(--color-text-muted); }

/* =====================================================
   39. Enhanced Visual Process Steps
   ===================================================== */
.process-steps-enhanced {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
  margin-top: var(--space-10);
}
.process-steps-enhanced::before {
  content: \'\';
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-navy) 100%);
  opacity: 0.15;
  pointer-events: none;
}
.process-step-enhanced { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: var(--space-4);
  box-shadow: 0 8px 24px rgba(0,168,232,0.25);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  z-index: 1;
}
.process-step-enhanced:hover .process-step-circle { transform: scale(1.1) translateY(-4px); box-shadow: 0 12px 32px rgba(0,168,232,0.35); }
.process-step-enhanced h3 { font-family: var(--font-head); font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--color-navy); margin-bottom: var(--space-2); }
.process-step-enhanced p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-normal); }

@media (max-width: 768px) {
  .emergency-cta-strip .container { justify-content: center; text-align: center; }
  .emergency-cta-strip-left { flex-direction: column; gap: var(--space-2); }
  .financing-cta-inner { flex-direction: column; text-align: center; }
  .financing-cta-badges { justify-content: center; }
  .financing-cta-actions { align-items: center; width: 100%; }
  .guarantee-strip-inner { flex-direction: column; gap: var(--space-4); }
  .reviews-strip-grid { grid-template-columns: 1fr 1fr; }
  .process-steps-enhanced { grid-template-columns: repeat(3, 1fr); }
  .process-steps-enhanced::before { display: none; }
}
@media (max-width: 580px) {
  .reviews-strip-grid { grid-template-columns: 1fr; }
  .process-steps-enhanced { grid-template-columns: 1fr 1fr; }
}
