/* =============================================
   KATY HVAC REPAIR — Main Stylesheet
   ============================================= */

/* --- Custom Properties --- */
:root {
  --blue-900: #0D2137;
  --blue-800: #1B3A5C;
  --blue-700: #1E4D7B;
  --blue-600: #2563A8;
  --blue-400: #4A90D9;
  --blue-100: #E8F1FB;
  --orange-600: #D94F1E;
  --orange-500: #E8522A;
  --orange-400: #F5703A;
  --orange-100: #FEF0EB;
  --gold: #F5A623;
  --green: #16A34A;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;

  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);

  --transition: 0.2s ease;
  --max-w: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
details summary { cursor: pointer; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Shared --- */
section { padding: 80px 0; }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-900);
  margin: 10px 0 16px;
  line-height: 1.2;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  background: var(--orange-100);
  color: var(--orange-600);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-emergency {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,82,42,.40);
}
.btn-emergency:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,82,42,.50);
}
.btn-schedule {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-schedule:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
}
.btn-call {
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}
.btn-call:hover { background: var(--orange-600); }
.btn-primary {
  background: var(--blue-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
}
.btn-outline:hover { background: var(--blue-100); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 33, 55, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.logo-text strong { color: var(--orange-400); font-weight: 800; }
.logo-dot { color: var(--gray-400); font-size: 0.85em; }

.main-nav ul {
  display: flex;
  gap: 8px;
}
.main-nav a {
  color: rgba(255,255,255,.80);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.10);
}

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(13,33,55,.92) 0%, rgba(27,58,92,.85) 60%, rgba(30,77,123,.75) 100%),
    url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1600&q=80') center/cover no-repeat;
  padding-top: 70px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.20);
  border: 1px solid rgba(245,166,35,.40);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 820px;
}
.hero-headline .highlight {
  color: var(--orange-400);
  position: relative;
}
.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.trust-item {
  color: rgba(255,255,255,.80);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: .4; }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--blue-900);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 24px;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.trust-stat strong {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange-400);
  line-height: 1;
}
.trust-stat span {
  color: rgba(255,255,255,.75);
  font-size: 0.82rem;
  line-height: 1.35;
}
.trust-stat small { display: block; color: rgba(255,255,255,.45); }
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
  border: 2px solid var(--orange-500);
  background: linear-gradient(135deg, #fff 0%, var(--orange-100) 100%);
}
.service-card--featured::before { background: var(--orange-500); transform: scaleX(1); }
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--orange-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-features {
  margin-bottom: 22px;
}
.service-features li {
  color: var(--gray-700);
  font-size: 0.88rem;
  padding: 4px 0 4px 20px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.service-link {
  color: var(--blue-600);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color var(--transition);
}
.service-link:hover { color: var(--orange-500); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--white);
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us-content .section-tag { margin-bottom: 12px; }
.why-us-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.lead-text {
  color: var(--gray-600);
  font-size: 1.02rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.why-features { margin-bottom: 36px; }
.why-feature {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.why-feature:last-child { border-bottom: none; }
.why-feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.why-feature p { color: var(--gray-600); font-size: 0.88rem; }

.why-us-visual {
  position: relative;
  min-height: 420px;
}
.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.stat-card--1 { top: 0; right: 0; width: 200px; }
.stat-card--2 { top: 50%; left: 0; transform: translateY(-50%); width: 190px; }
.stat-card--3 { bottom: 0; right: 20%; width: 170px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1;
}
.stat-stars { color: var(--gold); font-size: 1.1rem; margin: 4px 0; }
.stat-label { color: var(--gray-600); font-size: 0.8rem; font-weight: 600; }
.climate-badge {
  position: absolute;
  top: 40%; right: 5%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(232,82,42,.35);
}
.climate-badge span { font-size: 2rem; display: block; margin-bottom: 6px; }
.climate-badge p { font-size: 0.75rem; font-weight: 700; line-height: 1.4; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--blue-900); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,.65); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--orange-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; }
.step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p { color: rgba(255,255,255,.65); font-size: 0.9rem; line-height: 1.6; }
.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(to right, var(--orange-500), rgba(255,255,255,.15));
  position: relative;
  top: -30px;
}

/* =============================================
   NEIGHBORHOODS
   ============================================= */
.neighborhoods { background: var(--gray-50); }
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.neighborhood-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.neighborhood-card::after {
  content: '→';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  opacity: 0;
  color: var(--orange-500);
  font-weight: 700;
  transition: all var(--transition);
}
.neighborhood-card:hover {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  padding-right: 32px;
}
.neighborhood-card:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.neighborhood-card--featured {
  border-color: var(--orange-400);
  background: var(--orange-100);
}
.neighborhood-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.neighborhood-zip {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.neighborhoods-note {
  text-align: center;
  margin-top: 28px;
  color: var(--gray-600);
  font-size: 0.92rem;
}
.neighborhoods-note a { color: var(--blue-600); font-weight: 600; text-decoration: underline; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--white);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card blockquote p {
  color: var(--gray-700);
  font-size: 0.93rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.testimonials-cta { text-align: center; }

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--gray-50); }
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--blue-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--orange-500);
}
.faq-item summary:hover { background: var(--gray-50); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.cta-actions { margin-bottom: 16px; }
.cta-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,.50);
  margin-bottom: 0 !important;
}

.schedule-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.schedule-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 24px;
  text-align: center;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,168,.12);
}
.form-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.78rem;
  margin-top: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.70);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 14px 0 16px;
  color: rgba(255,255,255,.55);
}
.footer-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange-400);
  margin-bottom: 12px;
}
.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,.50);
  line-height: 1.7;
}
.footer-address a { color: rgba(255,255,255,.50); }
.footer-address a:hover { color: var(--white); }
.footer-brand .logo--footer .logo-text { color: var(--white); }

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-trust h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 16px;
}
.license-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.license-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.70);
  line-height: 1.3;
}
.license-badge small { color: rgba(255,255,255,.40); font-weight: 400; }
.footer-hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-zip {
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .02em;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.30);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  text-decoration: underline;
}

/* =============================================
   MOBILE CALL BAR
   ============================================= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 0;
}
.mobile-call-link,
.mobile-schedule-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
.mobile-call-link {
  background: var(--orange-500);
  color: var(--white);
}
.mobile-schedule-link {
  background: var(--blue-700);
  color: var(--white);
}

/* =============================================
   NEIGHBORHOOD PAGE STYLES (reused)
   ============================================= */
.neighborhood-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 110px 0 60px;
  color: var(--white);
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.30); }
.neighborhood-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}
.neighborhood-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.neighborhood-content { padding: 60px 0; }
.neighborhood-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.neighborhood-content p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}
.neighborhood-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.neighborhood-service-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.neighborhood-service-item .icon { font-size: 1.5rem; }
.neighborhood-service-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.neighborhood-service-item p { color: var(--gray-500); font-size: 0.82rem; margin-bottom: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-us-visual { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .main-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--blue-900); padding: 24px; z-index: 999; flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { font-size: 1.1rem; padding: 14px 16px; display: block; }
  .hamburger { display: flex; }
  .btn-schedule { display: none; }
  .btn-call { display: none; }
  .hero-headline { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .trust-bar-inner { gap: 16px; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
  .neighborhoods-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 4px; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 60px; }
  .schedule-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-emergency { width: 100%; justify-content: center; }
  .neighborhoods-grid { grid-template-columns: 1fr 1fr; }
  .license-badges { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.55s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Print */
@media print {
  .site-header, .mobile-call-bar, .hero-scroll-hint { display: none; }
}

/* =============================================
   INNER PAGE HERO (Services / Areas)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 110px 0 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,112,58,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .page-hero-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-hero .hero-trust {
  margin-top: 8px;
}

/* =============================================
   SERVICE PAGE CONTENT LAYOUT
   ============================================= */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}
.service-main h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-900);
  margin: 36px 0 14px;
}
.service-main h2:first-child { margin-top: 0; }
.service-main p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
}

.checklist {
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.brand-pill {
  background: var(--blue-100);
  color: var(--blue-800);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,168,.15);
}

.warning-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 20px 0;
}
.warning-box p { color: #78350f; font-size: 0.92rem; margin: 0; }

.tip-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--green);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 20px 0;
}
.tip-box p { color: #14532d; font-size: 0.92rem; margin: 0; }

/* Sticky sidebar */
.service-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-cta {
  background: var(--white);
  border: 2px solid var(--orange-400);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.sidebar-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.sidebar-cta p {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.sidebar-links {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.sidebar-links h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.sidebar-links ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
  font-size: 0.88rem;
  color: var(--blue-600);
  font-weight: 600;
  transition: color var(--transition);
}
.sidebar-links a:hover { color: var(--orange-500); }

/* =============================================
   NEARBY AREAS SECTION
   ============================================= */
.nearby-areas {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 56px 0;
}
.nearby-areas h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.nearby-areas > .container > p {
  color: var(--gray-600);
  margin-bottom: 28px;
}
.nearby-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 12px;
}
.nearby-area-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.nearby-area-card:hover {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.nearby-area-card span:first-child {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-900);
}
.nearby-area-card span:last-child { font-size: 0.75rem; color: var(--gray-400); }

/* =============================================
   AREAS WE SERVE PAGE
   ============================================= */
.power-five {
  padding: 64px 0;
  background: var(--white);
}
.power-five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.power-five-card {
  background: var(--white);
  border: 2px solid var(--orange-400);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.power-five-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.power-five-card .pf-icon { font-size: 2rem; margin-bottom: 10px; }
.power-five-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.power-five-card p { font-size: 0.78rem; color: var(--gray-400); }

.area-category {
  margin-bottom: 48px;
}
.area-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}
.area-category-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-900);
}
.area-category-icon { font-size: 1.4rem; }
.area-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

/* =============================================
   HTML SITEMAP PAGE
   ============================================= */
.sitemap-section {
  padding: 60px 0;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.sitemap-group h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.sitemap-group ul { display: flex; flex-direction: column; gap: 7px; }
.sitemap-group a {
  font-size: 0.9rem;
  color: var(--blue-600);
  transition: color var(--transition);
}
.sitemap-group a:hover { color: var(--orange-500); text-decoration: underline; }

/* =============================================
   GLOBAL FOOTER POPULAR AREAS
   ============================================= */
.footer-popular-areas h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 16px;
}
.footer-popular-areas ul { display: flex; flex-direction: column; gap: 8px; }
.footer-popular-areas a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.60);
  transition: color var(--transition);
}
.footer-popular-areas a:hover { color: var(--white); }

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 1024px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .power-five-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .checklist { grid-template-columns: 1fr; }
  .power-five-grid { grid-template-columns: 1fr 1fr; }
  .nearby-areas-grid { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); }
}
@media (max-width: 480px) {
  .power-five-grid { grid-template-columns: 1fr; }
}
