/* ==========================================================================
   A to Z Tree Service — Service Page Template
   Shared CSS for: tree-removal, tree-trimming, stump-grinding,
   storm-damage, emergency-tree-service, land-clearing
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary-dark: #0d1f0f;
  --surface-dark: #142016;
  --surface-light: #f7f5f0;
  --accent-primary: #2d5a27;
  --accent-gold: #b8860b;
  --accent-orange: #e87722;
  --text-on-dark: #e8e4dc;
  --text-on-light: #1a1a1a;
  --text-muted-dark: #a8a196;
  --text-muted-light: #5c5c5c;
  --border-dark: rgba(184, 134, 11, 0.2);
  --border-light: rgba(13, 31, 15, 0.1);
  --overlay-dark: rgba(13, 31, 15, 0.85);
  --card-dark: rgba(45, 90, 39, 0.08);
  --card-light: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container-max: 1400px;
  --container-narrow: 900px;
  --section-pad-y: 80px;
  --section-pad-x: 24px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-light);
  background: var(--surface-light);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.container--narrow { max-width: var(--container-narrow); }

/* ---------- Fade Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   1. STICKY HEADER + NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.header-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark);
  padding: 8px 16px;
  border-radius: 2px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent-gold);
  background: rgba(184, 134, 11, 0.08);
}

/* Services Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--primary-dark);
  border: 1px solid var(--border-dark);
  border-top: 2px solid var(--accent-gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-on-dark);
  transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: rgba(45, 90, 39, 0.2);
  color: var(--accent-gold);
  padding-left: 28px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-phone:hover { color: var(--accent-orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-orange);
  color: #ffffff;
  padding: 12px 28px;
}

.btn--primary:hover {
  background: #d06a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 119, 34, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 11px 28px;
}

.btn--secondary:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.btn--large {
  font-size: 16px;
  padding: 16px 40px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  right: -100%;
  width: 300px;
  height: calc(100vh - 72px);
  background: var(--primary-dark);
  border-left: 1px solid var(--border-dark);
  padding: 24px 0;
  transition: right var(--transition-base);
  overflow-y: auto;
  z-index: 999;
}

.nav-mobile.open { right: 0; }

.nav-mobile a {
  display: block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: rgba(45, 90, 39, 0.15);
  color: var(--accent-gold);
}

.nav-mobile-label {
  display: block;
  padding: 20px 28px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
}

.nav-mobile-cta { padding: 24px 28px; }

.nav-mobile-cta .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.nav-mobile-cta .header-phone {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-top: 8px;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.nav-overlay.open { display: block; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--surface-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 0;
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted-dark);
}

.breadcrumbs-inner a {
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
}

.breadcrumbs-inner a:hover { color: var(--accent-gold); }
.breadcrumbs-separator { color: var(--text-muted-dark); opacity: 0.5; }
.breadcrumbs-current { color: var(--accent-gold); font-weight: 500; }

/* ==========================================================================
   2. SERVICE HERO
   ========================================================================== */
.service-hero {
  position: relative;
  background: var(--primary-dark);
  padding: 64px 0 72px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 31, 15, 0.92) 0%, rgba(20, 32, 22, 0.8) 50%, rgba(13, 31, 15, 0.88) 100%);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.service-hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background: rgba(184, 134, 11, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.25);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.service-hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.service-hero h1 .highlight { color: var(--accent-gold); }

.service-hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
  max-width: 560px;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.service-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted-dark);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   3. SERVICE DESCRIPTION (light, two-column)
   ========================================================================== */
.service-description-section {
  background: var(--surface-light);
  padding: var(--section-pad-y) 0;
}

.service-description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-description-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-description-text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-description-text p:last-of-type { margin-bottom: 28px; }

.service-description-list { margin-bottom: 32px; }

.service-description-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-on-light);
  font-weight: 400;
}

.service-description-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  background: var(--accent-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-description-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.service-description-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

.service-description-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent-gold);
}

/* ==========================================================================
   4. BENEFITS / FEATURES (dark, 3-column)
   ========================================================================== */
.service-benefits {
  background: var(--surface-dark);
  padding: var(--section-pad-y) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-benefits .section-header h2 { color: #ffffff; }
.section-header p {
  font-size: 16px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.service-benefits .section-header p { color: var(--text-muted-dark); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  padding: 36px 28px;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 90, 39, 0.2);
  border-radius: 2px;
  margin-bottom: 20px;
}

.benefit-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

/* ==========================================================================
   5. PROCESS / HOW IT WORKS (light)
   ========================================================================== */
.service-process {
  background: var(--surface-light);
  padding: var(--section-pad-y) 0;
}

.service-process .section-header h2 { color: var(--primary-dark); }
.service-process .section-header p { color: var(--text-muted-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold), var(--accent-primary));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--surface-light);
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.25);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted-light);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ==========================================================================
   6. INLINE CTA BAND
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #1d4a19 100%);
  padding: 48px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-band p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-band .btn--primary { background: var(--accent-orange); }
.cta-band .header-phone { font-size: 22px; color: #ffffff; }
.cta-band .header-phone:hover { color: var(--accent-gold); }

/* ==========================================================================
   7. FAQ SECTION
   ========================================================================== */
.service-faq {
  background: var(--surface-light);
  padding: var(--section-pad-y) 0;
}

.service-faq .section-header h2 { color: var(--primary-dark); }
.service-faq .section-header p { color: var(--text-muted-light); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--accent-primary); }

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after { content: '\2212'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted-light);
  line-height: 1.8;
  padding-right: 44px;
}

/* ==========================================================================
   8. SERVICE AREA
   ========================================================================== */
.service-area {
  background: var(--surface-dark);
  padding: var(--section-pad-y) 0;
}

.service-area .section-header h2 { color: #ffffff; }
.service-area .section-header p { color: var(--text-muted-dark); }

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-area-map {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  overflow: hidden;
}

.service-area-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.service-area-locations h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.service-area-locations p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}

.area-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.area-columns li {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted-dark);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.area-columns li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* ==========================================================================
   9. BOTTOM CTA
   ========================================================================== */
.service-cta-bottom {
  background: var(--primary-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta-bottom::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(45, 90, 39, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.service-cta-bottom-content {
  position: relative;
  z-index: 1;
}

.service-cta-bottom h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-cta-bottom h2 .highlight { color: var(--accent-gold); }

.service-cta-bottom p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted-dark);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.service-cta-bottom .header-phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
}

.cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-guarantees span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-guarantees svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.site-footer {
  background: #0a170c;
  padding: 64px 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .header-logo-text {
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted-dark);
}

.footer-social a:hover svg { fill: var(--primary-dark); }

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted-dark);
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.footer-column a:hover { color: var(--accent-gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted-dark);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a { display: inline; padding: 0; }

.footer-hours { margin-top: 16px; }
.footer-hours dt { font-size: 13px; font-weight: 500; color: var(--text-on-dark); margin-bottom: 2px; }
.footer-hours dd { font-size: 13px; color: var(--text-muted-dark); margin-bottom: 10px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted-dark); }

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--accent-gold); }

/* ==========================================================================
   MOBILE CTA BAR
   ========================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-gold);
  padding: 10px 16px;
}

.mobile-cta-bar-inner {
  display: flex;
  gap: 10px;
}

.mobile-cta-bar .btn {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 12px 8px;
}

.mobile-cta-bar .btn--call {
  background: var(--accent-primary);
  color: #ffffff;
}

.mobile-cta-bar .btn--estimate {
  background: var(--accent-orange);
  color: #ffffff;
}

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

/* Tablet: 1024px */
@media (max-width: 1024px) {
  :root { --section-pad-y: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root { --section-pad-y: 56px; --section-pad-x: 20px; }

  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }
  .header-inner { height: 64px; }
  .nav-mobile { top: 64px; height: calc(100vh - 64px); }
  .nav-overlay { top: 64px; height: calc(100vh - 64px); }
  .breadcrumbs-inner { font-size: 12px; }

  .service-hero { padding: 48px 0 56px; min-height: 300px; }
  .service-hero h1 { font-size: 32px; }
  .service-hero-subtitle { font-size: 16px; }
  .service-hero-trust { flex-wrap: wrap; gap: 16px; }

  .service-description-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-description-text h2 { font-size: 28px; }
  .service-description-image { order: -1; }
  .service-description-image img { height: 280px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { padding: 28px 24px; }
  .section-header h2 { font-size: 28px; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step-number { width: 56px; height: 56px; font-size: 22px; }

  .cta-band h2 { font-size: 24px; }
  .cta-band .header-phone { font-size: 20px; }

  .faq-question { font-size: 16px; padding: 16px 0; }
  .faq-answer p { padding-right: 0; }

  .service-area-grid { grid-template-columns: 1fr; gap: 32px; }

  .service-cta-bottom h2 { font-size: 28px; }
  .service-cta-bottom .header-phone { font-size: 22px; }
  .cta-guarantees { gap: 16px; }

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

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 68px; }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
  :root { --section-pad-x: 16px; }

  .service-hero h1 { font-size: 26px; }
  .service-hero-subtitle { font-size: 15px; }
  .service-hero-actions { flex-direction: column; align-items: stretch; }
  .service-hero-actions .btn { text-align: center; }

  .service-description-text h2 { font-size: 24px; }
  .section-header h2 { font-size: 24px; }
  .benefit-card { padding: 24px 20px; }

  .cta-band h2 { font-size: 22px; }
  .cta-band-actions { flex-direction: column; gap: 12px; }
  .cta-band-actions .btn { width: 100%; text-align: center; }

  .service-cta-bottom h2 { font-size: 24px; }
  .service-cta-bottom-actions { flex-direction: column; gap: 12px; }
  .service-cta-bottom-actions .btn { width: 100%; }

  .area-columns { grid-template-columns: 1fr; }
  .header-logo-text { font-size: 17px; }
  .nav-mobile { width: 100%; }
}

/* Print */
@media print {
  .site-header, .mobile-cta-bar, .hamburger, .nav-mobile, .nav-overlay { display: none; }
  body { padding-bottom: 0; color: #000; background: #fff; }
  .service-hero { background: #fff; color: #000; min-height: auto; padding: 20px 0; }
  .service-hero h1 { color: #000; }
}
