/* ============================================================
   POWELL ARBOR SOLUTIONS — Design System
   styles.css
   ============================================================ */

/* --- Google Fonts: loaded via <link> in HTML for performance --- */
/* @import removed — use <link rel="stylesheet"> in <head> instead */

/* --- Custom Properties --- */
:root {
  /* Brand Colors */
  --c-green:        #2E7D32;
  --c-green-dark:   #1B5E20;
  --c-green-light:  #43A047;
  --c-green-xlight: #E8F5E9;
  --c-charcoal:     #2B2B2B;
  --c-charcoal-mid: #3D3D3D;
  --c-orange:       #F97316;
  --c-orange-dark:  #EA6C0B;
  --c-bg:           #F9FAF7;
  --c-white:        #FFFFFF;

  /* Neutrals */
  --c-gray-100: #F3F4F6;
  --c-gray-200: #E5E7EB;
  --c-gray-300: #D1D5DB;
  --c-gray-500: #6B7280;
  --c-gray-600: #4B5563;
  --c-gray-800: #1F2937;

  /* Typography */
  --f-head:  'Montserrat', system-ui, sans-serif;
  --f-body:  'Inter', system-ui, sans-serif;

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

  /* Layout */
  --container: 1200px;
  --nav-h: 110px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);

  --transition: 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: var(--sp-xl) 0;
}
.section-lg {
  padding: var(--sp-2xl) 0;
}
.section--green {
  background: var(--c-green);
  color: var(--c-white);
}
.section--dark {
  background: var(--c-charcoal);
  color: var(--c-white);
}
.section--light {
  background: var(--c-gray-100);
}
.section--white {
  background: var(--c-white);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.125rem; }
p { max-width: 70ch; }

.section-label {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 0.6rem;
}
.section-label--light {
  color: var(--c-green-xlight);
  opacity: 0.85;
}
.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--c-gray-600);
  max-width: 580px;
  margin: 0 auto;
}
.section-header--light p {
  color: rgba(255,255,255,0.8);
}
.section-header--light h2 {
  color: var(--c-white);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { flex-shrink: 0; }

/* Orange — Primary CTA */
@keyframes ctaPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.btn-cta {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
  box-shadow: 0 10px 25px rgba(249,115,22,0.35);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.btn-cta:hover {
  background: var(--c-orange-dark);
  border-color: var(--c-orange-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(249,115,22,0.45);
  animation: none; /* stop pulse on hover so it feels responsive */
}

/* Green — Secondary CTA */
.btn-green {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}
.btn-green:hover {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outlined white — for dark backgrounds */
.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn-outline-white:hover {
  background: var(--c-white);
  color: var(--c-green);
}

/* Outlined green — for light backgrounds */
.btn-outline-green {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn-outline-green:hover {
  background: var(--c-green);
  color: var(--c-white);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--c-green-dark);
  color: var(--c-white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}
.announcement-bar a {
  color: var(--c-white);
  text-decoration: underline;
}
.announcement-bar .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 82px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-green-dark);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--c-gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--c-gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--c-green);
  background: var(--c-green-xlight);
}
/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.875rem;
  font-size: 0.875rem;
  color: var(--c-gray-800) !important;
  border-radius: var(--radius-sm);
}
.dropdown-menu a:hover {
  background: var(--c-green-xlight);
  color: var(--c-green) !important;
}
.dropdown-menu .emergency-link {
  color: #DC2626 !important;
  font-weight: 700;
}
.dropdown-menu .emergency-link:hover {
  background: #FEF2F2;
  color: #DC2626 !important;
}
.nav-cta {
  flex-shrink: 0;
}
/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--c-white);
  z-index: 160;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav-panel.open {
  transform: translateX(0);
}
.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
.mobile-nav-close button {
  font-size: 1.5rem;
  color: var(--c-gray-600);
  padding: 0.25rem;
}
.mobile-nav-links a {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--c-charcoal);
  border-bottom: 1px solid var(--c-gray-200);
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-group-label {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gray-500);
  padding: 1rem 0 0.375rem;
}
.mobile-nav-links .sub-link {
  padding-left: 1rem;
  font-size: 0.9375rem;
  color: var(--c-gray-600);
}
.mobile-nav-links .emergency-link {
  color: #DC2626 !important;
}
.mobile-nav-ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--c-green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  filter: brightness(0.85);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--c-white);
  padding: var(--sp-xl) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #A7F3A0;
  font-family: var(--f-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  color: var(--c-white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.hero h1 .highlight {
  color: #86EFAC;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.trust-item svg {
  color: #86EFAC;
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-gray-200);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}
.trust-bar-icon {
  width: 44px;
  height: 44px;
  background: var(--c-green-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-green);
}
.trust-bar-text strong {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-charcoal);
  line-height: 1.2;
}
.trust-bar-text span {
  font-size: 0.8125rem;
  color: var(--c-gray-500);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-green);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card--emergency {
  background: var(--c-charcoal);
  border-color: transparent;
  color: var(--c-white);
}
.service-card--emergency::before {
  background: var(--c-orange);
}
.service-card--emergency:hover {
  background: var(--c-charcoal-mid);
}
.service-card--storm {
  background: var(--c-green-xlight);
  border-color: var(--c-green-light);
}
.service-card--storm::before {
  background: var(--c-green-dark);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--c-green-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--c-green);
  font-size: 1.5rem;
}
.service-card--emergency .service-icon {
  background: rgba(255,255,255,0.1);
  color: var(--c-orange);
}
.service-card--storm .service-icon {
  background: rgba(46,125,50,0.15);
  color: var(--c-green-dark);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.service-card--emergency h3 {
  color: var(--c-white);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--c-gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.service-card--emergency p {
  color: rgba(255,255,255,0.75);
}
.service-card--storm p {
  color: var(--c-gray-600);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--c-green);
  transition: gap var(--transition);
}
.service-card--emergency .service-link {
  color: var(--c-orange);
}
.service-card--storm .service-link {
  color: var(--c-green-dark);
}
.service-link:hover { gap: 0.6rem; }

/* ============================================================
   WHY POWELL
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.why-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--c-green-xlight);
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
}
.why-photo-placeholder svg {
  opacity: 0.4;
}
.why-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.why-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--c-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  flex-shrink: 0;
}
.why-badge-text strong {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-charcoal);
}
.why-badge-text span {
  font-size: 0.8125rem;
  color: var(--c-gray-500);
}
.why-content { }
.why-content h2 {
  margin-bottom: 1rem;
}
.why-content p {
  color: var(--c-gray-600);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.why-stat {
  background: var(--c-gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.why-stat-number {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-stat-label {
  font-size: 0.875rem;
  color: var(--c-gray-600);
  line-height: 1.3;
}
.why-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-green-xlight);
  color: var(--c-green-dark);
  font-family: var(--f-head);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.review-featured {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-left: 4px solid var(--c-green);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
}
.review-featured::before {
  content: '"';
  position: absolute;
  top: -0.25rem;
  left: 1.75rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--c-green-xlight);
  z-index: 0;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.review-stars svg { color: #F59E0B; }
.review-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-gray-800);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.review-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--c-green-dark);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-white);
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-charcoal);
}
.review-author-info span {
  font-size: 0.8125rem;
  color: var(--c-gray-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.review-author-info span img {
  height: 14px;
  width: auto;
  display: inline;
}
.reviews-secondary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-card .review-text {
  font-size: 0.9375rem;
}
.review-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--c-green);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  transition: gap var(--transition);
}
.review-cta:hover { gap: 0.75rem; color: var(--c-green-dark); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: var(--sp-lg);
}
.area-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.area-card:hover {
  border-color: var(--c-green);
  background: var(--c-green-xlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-card svg { color: var(--c-green); flex-shrink: 0; }
.area-card span {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--c-charcoal);
}
.area-card:hover span { color: var(--c-green-dark); }
.areas-note {
  text-align: center;
  color: var(--c-gray-500);
  font-size: 0.9375rem;
}
.areas-note a {
  color: var(--c-green);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--c-green-dark);
  color: var(--c-white);
  padding: var(--sp-xl) 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--c-white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  margin: 0 auto 2rem;
}
.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-charcoal);
  color: rgba(255,255,255,0.75);
  padding: var(--sp-xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.footer-brand-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--c-orange); }
.footer-phone svg { color: var(--c-green-light); }
.footer-col h4 {
  font-family: var(--f-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-white); }
.footer-links .emergency-link {
  color: #FCA5A5;
  font-weight: 600;
}
.footer-links .emergency-link:hover { color: #FECACA; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }
.footer-licenses {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--c-white);
  border-top: 2px solid var(--c-orange);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}
.sticky-mobile-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.sticky-mobile-cta .btn {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-photo { aspect-ratio: 16/9; max-width: 100%; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-secondary { flex-direction: row; }
  .reviews-secondary .review-card { flex: 1; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sp-xl: 2.75rem; --sp-2xl: 4rem; --nav-h: 80px; }

  .nav-logo img { height: 55px; }
  .nav-logo-text { font-size: 0.95rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 0.875rem; }

  .trust-bar-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

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

  .why-stats { grid-template-columns: 1fr 1fr; }

  .reviews-secondary { flex-direction: column; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sticky-mobile-cta { display: block; }

  /* Add padding so footer content isn't hidden behind sticky bar */
  .site-footer { padding-bottom: 80px; }

  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .cta-banner-buttons .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 70px; }
  .nav-logo img { height: 48px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.85rem; }
  .trust-bar-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .why-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-green { color: var(--c-green); }
.text-orange { color: var(--c-orange); }
.text-white { color: var(--c-white); }
.text-muted { color: var(--c-gray-500); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.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;
}

/* ============================================================
   SEO & CONVERSION UTILITIES
   ============================================================ */

/* Keyword emphasis — use in headings & body copy for geo/service terms */
.keyword-highlight {
  color: var(--c-green-dark);
  font-weight: 700;
}

/* Emergency urgency badge — red pill, used beside nav links and headings */
.emergency-badge {
  display: inline-block;
  background: #DC2626;
  color: var(--c-white);
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-left: 0.4rem;
  vertical-align: middle;
  line-height: 1.4;
  animation: emergencyPulse 2s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.75; }
}

/* ============================================================
   PHOTO PLACEHOLDER UTILITY
   (Remove once real images are in place)
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--c-green-xlight) 0%, var(--c-gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-400);
  font-family: var(--f-head);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
}
                                                                                                                                                                                                                                          