/*
Theme Name: AAA Disaster Recovery
Theme URI: https://aaadisasterrecovery.com
Author: AAA Disaster Recovery LLC
Description: Custom WordPress theme for AAA Disaster Recovery — Austin, TX emergency restoration contractor.
Version: 1.0.0
License: Private
Text Domain: aaa-dr
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES  (converted from Tailwind variables)
   ============================================================ */
:root {
  /* Brand colors */
  --brand-red:    hsl(355, 75%, 40%);
  --brand-blue:   hsl(215, 70%, 35%);
  --brand-black:  hsl(0, 0%, 8%);

  /* Dark surfaces */
  --surface:        hsl(0, 0%, 7%);
  --surface-raised: hsl(0, 0%, 11%);
  --surface-border: hsl(0, 0%, 18%);

  /* Text */
  --text-primary:   hsl(0, 0%, 96%);
  --text-secondary: hsl(0, 0%, 75%);
  --text-muted:     hsl(0, 0%, 50%);

  /* Fonts */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Roboto', sans-serif;

  /* Fluid type scale (mirrors Tailwind clamp values) */
  --text-display-xl: clamp(3.5rem, 8vw, 7rem);
  --text-display-lg: clamp(2.5rem, 5vw, 4.5rem);
  --text-display-md: clamp(1.75rem, 3vw, 2.75rem);
  --text-display-sm: clamp(1.25rem, 2vw, 1.75rem);

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

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--surface); }
::-webkit-scrollbar-thumb        { background: var(--surface-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--brand-blue); }

/* Selection */
::selection { background: hsl(215 70% 35% / 0.4); color: var(--text-primary); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-heading { font-family: var(--font-heading); letter-spacing: 0.02em; }
.font-body    { font-family: var(--font-body); }

.text-display-xl { font-size: var(--text-display-xl); line-height: 1; }
.text-display-lg { font-size: var(--text-display-lg); line-height: 1.05; }
.text-display-md { font-size: var(--text-display-md); line-height: 1.1; }
.text-display-sm { font-size: var(--text-display-sm); line-height: 1.15; }

.text-brand-red  { color: var(--brand-red); }
.text-brand-blue { color: var(--brand-blue); }
.text-primary    { color: var(--text-primary); }
.text-secondary  { color: var(--text-secondary); }
.text-muted      { color: var(--text-muted); }
.text-white      { color: #fff; }

.uppercase  { text-transform: uppercase; }
.tracking-wider  { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.15em; }

/* ============================================================
   COMPONENT CLASSES  (from @layer components in index.css)
   ============================================================ */

/* Buttons */
.btn-emergency,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: filter 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-emergency {
  background: var(--brand-red);
  color: #fff;
  padding: 1rem 1.75rem;
  animation: pulseGlow 2s ease-in-out infinite;
}
.btn-emergency:hover { filter: brightness(1.15); }

.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
}
.btn-primary:hover { filter: brightness(1.15); }

.btn-outline {
  border: 1px solid var(--surface-border);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

/* Section typography helpers */
.section-label {
  display: block;
  color: var(--brand-red);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-display-md);
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
}

.divider-accent {
  width: 3rem;
  height: 4px;
  background: var(--brand-red);
  margin-bottom: 1.5rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 80rem;   /* 1280px — mirrors max-w-7xl */
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.py-section { padding-block: var(--section-py); }

/* ============================================================
   ANIMATIONS  (converted from Tailwind keyframes)
   ============================================================ */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 hsl(355 75% 40% / 0.4); }
  50%       { box-shadow: 0 0 0 10px hsl(355 75% 40% / 0); }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal base state (JS adds .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TOP EMERGENCY BAR
   ============================================================ */
.emergency-bar {
  background: var(--brand-red);
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.emergency-bar a { text-decoration: underline; color: #fff; }
.emergency-bar a:hover { text-decoration: none; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(0, 0%, 7%);
  border-bottom: 1px solid var(--surface-border);
  transition: background 0.3s ease;
}
.site-header.scrolled { background: hsl(0, 0%, 5%); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
}

.site-logo img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  max-width: 290px;
}

/* Desktop nav */
.primary-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
@media (min-width: 1024px) { .primary-nav { display: flex; } }

.primary-nav a,
.primary-nav button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.primary-nav a:hover,
.primary-nav button:hover,
.primary-nav a.current-menu-item { color: var(--text-primary); }
.primary-nav a.current-menu-item { color: var(--brand-blue); }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 13rem;
  background: hsl(0, 0%, 9%);
  border: 1px solid var(--surface-border);
  padding: 0.5rem 0;
  list-style: none;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover {
  color: var(--text-primary);
  background: var(--surface-raised);
}

.chevron-icon {
  transition: transform 0.2s;
}
.nav-dropdown:hover .chevron-icon { transform: rotate(180deg); }

/* Mobile toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: hsl(0, 0%, 9%);
  border-top: 1px solid var(--surface-border);
  padding: 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--surface-border);
}
.mobile-nav a:hover { color: var(--text-primary); }
.mobile-nav .btn-emergency {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

/* Mobile sub-links */
.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--surface-border);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.mobile-sub-links { display: none; }
.mobile-sub-links.open { display: block; }
.mobile-sub-links a {
  padding-left: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-bg.loaded { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.88) 45%, rgba(5,5,5,0.45) 100%);
}

.hero-accent-line {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 4px;
  background: var(--brand-red);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-block: 5rem;
}

.hero-content .inner { max-width: 48rem; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-display-xl);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--surface-border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust-badge svg { color: var(--brand-blue); flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}
.scroll-indicator span {
  color: var(--text-muted);
  font-size: 0.65rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: var(--text-muted);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  background: var(--brand-blue);
  padding-block: 0.75rem;
  overflow: hidden;
  border-top: 1px solid var(--brand-blue);
  border-bottom: 1px solid var(--brand-blue);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 2rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding-block: 4rem;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--surface-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--surface-border);
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-cell {
  padding: 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}
@media (min-width: 1024px) {
  .stat-cell:nth-child(4n) { border-right: none; }
  .stat-cell { border-bottom: none; }
}
.stat-cell:nth-child(2n) { border-right: none; }
@media (min-width: 1024px) { .stat-cell:nth-child(2n) { border-right: 1px solid var(--surface-border); } }

.stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-display-lg);
  color: var(--brand-red);
  display: block;
}
.stat-label {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  padding-block: var(--section-py);
  background: var(--surface);
}
.services-header {
  margin-bottom: 3rem;
}
.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.services-all-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
@media (min-width: 640px) { .services-all-link { display: flex; } }
.services-all-link:hover { color: var(--brand-blue); }

.services-grid {
  display: grid;
  gap: 1px;
  background: var(--surface-border);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--surface);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface-raised); }

.service-icon {
  width: 3rem; height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
  transition: border-color 0.2s;
  color: var(--brand-red);
}
.service-card:hover .service-icon { border-color: var(--brand-red); }

.service-type {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}
.service-title {
  font-family: var(--font-heading);
  font-size: var(--text-display-sm);
  color: var(--text-primary);
  text-transform: uppercase;
  transition: color 0.2s;
}
.service-card:hover .service-title { color: var(--brand-red); }

.service-desc {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.service-link-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-link-label svg { transition: transform 0.2s; }
.service-card:hover .service-link-label svg { transform: translateX(4px); }

/* Bottom accent bar on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--brand-red);
  transition: width 0.3s ease;
}
.service-card:hover::after { width: 100%; }

/* ============================================================
   WHY AAA SECTION
   ============================================================ */
.why-section {
  padding-block: var(--section-py);
  background: var(--surface-raised);
}
.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--surface-border);
  transition: border-color 0.2s;
}
.why-feature:hover { border-color: var(--brand-blue); }
.why-feature svg { color: var(--brand-blue); flex-shrink: 0; margin-top: 2px; }
.why-feature-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.why-feature-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.team-photo-wrap {
  position: relative;
}
.team-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.iicrc-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--brand-red);
  padding: 1.25rem;
  display: none;
}
@media (min-width: 640px) { .iicrc-badge { display: block; } }
.iicrc-badge-title {
  font-family: var(--font-heading);
  font-size: var(--text-display-md);
  color: #fff;
  line-height: 1;
}
.iicrc-badge-sub {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding-block: var(--section-py);
  background: var(--surface);
}
.process-grid {
  display: grid;
  gap: 1px;
  background: var(--surface-border);
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  background: var(--surface);
  padding: 2rem;
  position: relative;
}
.process-step-bg {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--surface-border);
  position: absolute;
  top: 1rem; right: 1rem;
  user-select: none;
}
.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.process-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-display-sm);
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.process-card-desc {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding-block: var(--section-py);
  background: var(--surface-raised);
}
.testimonials-header {
  margin-bottom: 3rem;
}
.testimonials-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.reviews-all-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
@media (min-width: 640px) { .reviews-all-link { display: flex; } }
.reviews-all-link:hover { color: var(--brand-blue); }

.testimonials-grid {
  display: grid;
  gap: 1px;
  background: var(--surface-border);
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid var(--brand-blue);
}
.stars {
  display: flex;
  gap: 0.25rem;
}
.stars svg { color: var(--brand-red); fill: var(--brand-red); }

.testimonial-text {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.testimonial-location {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding-block: 5rem;
  background: var(--brand-red);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 10px,
    rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 11px
  );
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-label {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-display-lg);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-inline: auto;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--brand-red);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
  padding: 1.25rem 2.5rem;
  transition: filter 0.2s;
}
.btn-cta-primary:hover { filter: brightness(0.95); }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
  padding: 1.25rem 2.5rem;
  background: transparent;
  transition: background 0.2s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   SERVICE AREAS STRIP
   ============================================================ */
.areas-strip {
  padding-block: 3rem;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
}
.areas-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .areas-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.areas-title {
  font-family: var(--font-heading);
  font-size: var(--text-display-sm);
  color: var(--text-primary);
  text-transform: uppercase;
}
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.city-pill {
  padding: 0.5rem 1rem;
  border: 1px solid var(--surface-border);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.city-pill:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.city-pill-all {
  padding: 0.5rem 1rem;
  background: var(--brand-blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: filter 0.2s;
}
.city-pill-all:hover { filter: brightness(1.15); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: hsl(0, 0%, 5%);
  border-top: 1px solid var(--surface-border);
}

.footer-emergency {
  background: var(--brand-red);
  padding-block: 1.5rem;
}
.footer-emergency .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-emergency .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-emergency-title {
  font-family: var(--font-heading);
  font-size: var(--text-display-sm);
  color: #fff;
  text-transform: uppercase;
}
.footer-emergency-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-family: var(--font-body);
  margin-top: 0.25rem;
}

.footer-main {
  padding-block: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; } }

.footer-brand-logo { height: 4rem; width: auto; margin-bottom: 1.25rem; }

.footer-brand-desc {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.footer-meta-item svg { color: var(--brand-red); flex-shrink: 0; }

.iicrc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--surface-border);
}
.iicrc-row img { height: 4rem; width: auto; object-fit: contain; }
.iicrc-row-text p:first-child {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
.iicrc-row-text p:last-child {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--surface-border);
}
.social-icon {
  width: 2.25rem; height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-icon:hover {
  color: #fff;
  border-color: var(--brand-blue);
  background: hsl(215 70% 35% / 0.1);
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav-list a {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-nav-list a:hover { color: var(--brand-blue); }

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--surface-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: border-color 0.15s, color 0.15s;
}
.google-link:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.google-link svg { color: #facc15; fill: #facc15; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-item svg { color: var(--brand-red); flex-shrink: 0; margin-top: 2px; }
.contact-item-phone {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: color 0.15s;
}
.contact-item-phone:hover { color: var(--brand-blue); }
.contact-item-label {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  margin-top: 2px;
}
.contact-item-email {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.contact-item-email:hover { color: var(--brand-blue); }
.contact-item-addr {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
}
.contact-item-addr-note {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 2px;
  font-family: var(--font-body);
}

.footer-bottom {
  border-top: 1px solid var(--surface-border);
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-copy {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-bottom-right p {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
}

/* ============================================================
   SVG ICON HELPERS
   ============================================================ */
.icon { display: inline-block; vertical-align: middle; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 639px) {
  .hero-cta-group { flex-direction: column; }
  .btn-emergency, .btn-outline { justify-content: center; }
}
