/* ============================================================
   CLEANOUT GUYS — MASTER STYLESHEET
   Site: garage-cleanout.com | Chicago's #1 Junk Removal & Cleanout
   Design System: Forest Green + Action Orange + Professional Dark
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES (Design Tokens) ─────────────── */
:root {
  --green-900: #0d2b1d;
  --green-800: #1B4332;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-100: #d8f3dc;
  --green-50:  #f0faf2;

  --orange-700: #c4501a;
  --orange-600: #E8681A;
  --orange-500: #f07c2e;
  --orange-100: #ffe8d6;

  --dark-900:  #0f0f0f;
  --dark-800:  #1a1a1a;
  --dark-700:  #2c2c2c;
  --dark-400:  #6b7280;
  --dark-200:  #d1d5db;
  --dark-100:  #f3f4f6;
  --white:     #ffffff;

  --gold:      #f59e0b;
  --red:       #dc2626;

  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', Arial, sans-serif;

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

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --transition: .22s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-600); }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-800);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── 3. UTILITY CLASSES ─────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--green-700); }
.text-orange { color: var(--orange-600); }
.bg-green { background: var(--green-800); }
.bg-dark { background: var(--dark-800); }
.bg-light { background: var(--dark-100); }
.bg-orange { background: var(--orange-600); }
.fw-700 { font-weight: 700; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.d-none { display: none; }

/* ── 4. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-600);
  color: var(--white);
  border-color: var(--orange-600);
  box-shadow: 0 4px 16px rgba(232,104,26,.4);
}
.btn-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,104,26,.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  box-shadow: 0 4px 16px rgba(27,67,50,.3);
}
.btn-green:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn-ghost:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .9rem; }

.btn-phone {
  background: var(--orange-600);
  color: var(--white);
  border-color: var(--orange-600);
  font-size: 1.2rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(232,104,26,.5);
  animation: pulse-phone 2.5s infinite;
}
.btn-phone:hover {
  background: var(--orange-700);
  color: var(--white);
  transform: scale(1.04);
}

@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,104,26,.5); }
  50% { box-shadow: 0 4px 32px rgba(232,104,26,.75); }
}

/* ── 5. SECTION HEADERS ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: .9rem;
}
.section-header h2 { margin-bottom: .85rem; }
.section-header p { color: var(--dark-400); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── 6. TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--green-900);
  padding: .5rem 0;
  font-size: .82rem;
  color: var(--green-100);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a { color: var(--green-100); }
.top-bar a:hover { color: var(--orange-500); }
.top-bar-badges { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.top-bar-badges span { display: flex; align-items: center; gap: .3rem; }
.top-bar-right { display: flex; gap: 1.25rem; align-items: center; }

/* ── 7. HEADER / NAVIGATION ─────────────────────────────────── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--green-800);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: .2rem; }
.main-nav a {
  padding: .55rem .9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark-700);
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green-800);
  background: var(--green-50);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--dark-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
  padding: .5rem;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--dark-700);
}
.dropdown-menu a:hover { background: var(--green-50); color: var(--green-800); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.header-phone .phone-label { font-size: .7rem; color: var(--dark-400); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.header-phone a { font-size: 1.15rem; font-weight: 800; color: var(--green-800); }
.header-phone a:hover { color: var(--orange-600); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-800);
  transition: all var(--transition);
  border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 8. HERO SECTION ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--green-100);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.hero h1 .highlight { color: var(--orange-500); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
.hero-trust-item .check { color: var(--orange-500); font-size: 1rem; }

/* Hero Visual / Stats Card */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 100%;
  max-width: 380px;
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.hero-stat-num { font-size: 1.9rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.7); font-weight: 500; margin-top: .25rem; }

.hero-rating-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
}
.hero-rating-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: .1em; }
.hero-rating-text .rating-num { font-size: 1.4rem; font-weight: 800; color: var(--dark-800); }
.hero-rating-text .rating-label { font-size: .8rem; color: var(--dark-400); }

/* ── 9. TRUST / STATS BAR ────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--dark-200);
  padding: 1.2rem 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark-700);
  white-space: nowrap;
}
.trust-item .trust-icon {
  width: 36px;
  height: 36px;
  background: var(--green-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── 10. SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 2px solid var(--dark-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-800);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-100);
  color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon { background: var(--green-800); color: var(--white); }

.service-icon {
  width: 62px;
  height: 62px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: .6rem; color: var(--dark-800); }
.service-card p { font-size: .92rem; color: var(--dark-400); margin-bottom: 1rem; }
.service-card .card-link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.service-card:hover .card-link { color: var(--orange-600); }

/* ── 11. WHY CHOOSE US ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--dark-100);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(27,67,50,.3);
}
.why-item h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.why-item p { font-size: .9rem; color: var(--dark-400); }

/* ── 12. SERVICE AREA SECTION ──────────────────────────────────── */
.area-section { background: var(--green-50); }
.suburbs-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 2rem;
}
.suburb-tag {
  background: var(--white);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  padding: .45rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.suburb-tag:hover {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  transform: translateY(-2px);
}

/* ── 13. TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section { background: var(--dark-800); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.review-text { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.7; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: .85rem; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--white); font-size: .92rem; }
.review-location { font-size: .8rem; color: rgba(255,255,255,.5); }
.review-source { font-size: .75rem; color: var(--green-600); font-weight: 600; margin-top: .2rem; }

/* ── 14. FAQ SECTION ───────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--dark-200);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--green-600); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .98rem;
  color: var(--dark-800);
  gap: 1rem;
  user-select: none;
  background: var(--white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--green-50); }
.faq-item.open .faq-question { background: var(--green-50); color: var(--green-800); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--green-800); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding: 0 1.4rem 1.25rem;
  font-size: .95rem;
  color: var(--dark-400);
  line-height: 1.75;
}

/* ── 15. CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 16. FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-900);
  color: rgba(255,255,255,.75);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: inline-flex;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* White background pill so logo reads on dark footer */
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
}
.footer-about { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-nap { font-size: .88rem; line-height: 2; }
.footer-nap a { color: rgba(255,255,255,.75); }
.footer-nap a:hover { color: var(--orange-500); }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--green-800); }
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange-500); padding-left: .3rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--orange-500); }

/* ── 17. FLOATING ELEMENTS ─────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.float-btn:hover { transform: scale(1.06); }
.float-phone { background: var(--orange-600); color: var(--white); }
.float-phone:hover { background: var(--orange-700); color: var(--white); }
.float-quote { background: var(--green-800); color: var(--white); }
.float-quote:hover { background: var(--green-900); color: var(--white); }

/* ── 18. BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  background: var(--dark-100);
  padding: .7rem 0;
  border-bottom: 1px solid var(--dark-200);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: .4rem; }
.breadcrumb-list li::after { content: '›'; color: var(--dark-400); font-size: .9rem; }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--green-700); font-weight: 600; }
.breadcrumb-list span { color: var(--dark-400); }

/* ── 19. INNER PAGE HERO ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .page-hero-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 1.5rem; }
.page-hero .hero-trust { justify-content: center; }

/* ── 20. LOCATION PAGE SPECIFICS ───────────────────────────────── */
.location-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.location-sidebar {
  background: var(--green-50);
  border: 2px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.sidebar-phone { font-size: 1.5rem; font-weight: 800; color: var(--green-800); display: block; margin: .75rem 0; }
.sidebar-divider { height: 1px; background: var(--green-100); margin: 1.25rem 0; }
.sidebar-services { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid var(--green-100);
  text-decoration: none;
  transition: all var(--transition);
}
.sidebar-service-link:hover { background: var(--green-800); color: var(--white); border-color: var(--green-800); }

/* ── 21. CONTACT FORM ──────────────────────────────────────────── */
.contact-section { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-box { background: var(--green-800); border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white); }
.contact-info-box h2 { color: var(--white); margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail-text .label { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.contact-detail-text a, .contact-detail-text p { color: var(--white); font-weight: 600; font-size: 1rem; margin: 0; }

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-100);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .45rem; color: var(--dark-700); }
.form-label .required { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid var(--dark-200);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--dark-800);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(64,145,108,.15);
}
.form-input.error { border-color: var(--red); }
.form-error { font-size: .8rem; color: var(--red); margin-top: .3rem; display: none; }
.form-error.visible { display: block; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--dark-400); margin-top: 1rem; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  border: 2px solid var(--green-100);
}
.form-success.visible { display: block; }

/* ── 22. SERVICE DETAIL PAGE ───────────────────────────────────── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.service-detail-sidebar { position: sticky; top: 100px; }
.service-items-list { margin: 1.5rem 0; }
.service-item-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--dark-100);
  font-size: .95rem;
}
.service-item-row:last-child { border-bottom: none; }
.service-item-row::before { content: '✓'; color: var(--green-700); font-weight: 800; font-size: 1rem; flex-shrink: 0; }

/* ── 23. BLOG/TIPS PREVIEW ─────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-100);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 180px; background: var(--green-100); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.5rem; }
.blog-tag { display: inline-block; background: var(--green-100); color: var(--green-700); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .75rem; border-radius: var(--radius-full); margin-bottom: .75rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-card p { font-size: .88rem; color: var(--dark-400); }

/* ── 24. STATS COUNTER ─────────────────────────────────────────── */
.stats-section { background: var(--green-800); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat-suffix { color: var(--orange-500); }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.7); margin-top: .35rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── 25. PROCESS STEPS ─────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; position: relative; }
.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: var(--green-800);
  color: var(--white);
  font-size: 1.35rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(27,67,50,.3);
}
.process-step h3 { font-size: 1rem; margin-bottom: .5rem; }
.process-step p { font-size: .88rem; color: var(--dark-400); }

/* ── 26. BACK TO TOP ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px; height: 44px;
  background: var(--dark-700);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  border: none;
  text-decoration: none;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--green-800); transform: translateY(-3px); }

/* ── 27. RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .location-intro { grid-template-columns: 1fr; }
  .location-sidebar { position: static; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }
  .main-nav, .header-cta .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .top-bar .top-bar-badges { display: none; }
  .contact-section { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .trust-bar-inner { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { bottom: 1rem; right: 1rem; }
  .float-btn span { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile nav open state */
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 5rem 1.5rem 2rem;
    gap: .3rem;
    overflow-y: auto;
  }
  .main-nav.mobile-open a {
    font-size: 1.1rem;
    padding: .85rem 1rem;
    border-radius: var(--radius-md);
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--dark-100);
    margin-top: .3rem;
  }
  .mobile-close {
    position: fixed; top: 1rem; right: 1.25rem;
    font-size: 1.5rem; cursor: pointer;
    width: 40px; height: 40px;
    background: var(--dark-100);
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000;
    border: none;
    color: var(--dark-800);
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
