/* ============================================================
   CHEM-DRY QUICK DRY — REDESIGN STYLESHEET
   Brand Green: #008752 (exact match from Chem-Dry logo — emerald green)
   Accent Purple: #7B3F8C (CTA buttons, matching reference site)
   ============================================================ */

:root {
  --green: #008752;
  --green-light: #007A49;
  --green-dark: #005C3A;
  --green-bar: #008752;
  --purple: #7B3F8C;
  --purple-dark: #6a3479;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --light-gray: #f0f0f0;
  --card-bg: #f4f4f4;
  --text-dark: #1a1a1a;
  --text-body: #444444;
  --text-light: #666666;
  --border: #e0e0e0;
  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--green-light);
}

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

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
  background: var(--green);
  color: var(--white);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.top-bar a {
  color: var(--white);
  font-weight: 600;
}

.top-bar .cta-btn-top {
  background: var(--purple);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.top-bar .cta-btn-top:hover {
  background: var(--purple-dark);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 14px;
}

.site-logo .logo-brand {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-heading);
  line-height: 1.0;
}

.site-logo .logo-tagline {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  font-weight: 500;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
  font-family: var(--font-heading);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
  background: rgba(10, 84, 61, 0.06);
}

.main-nav .nav-phone {
  background: var(--green);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 8px 18px !important;
}

.main-nav .nav-phone:hover {
  background: var(--green-light) !important;
  color: var(--white) !important;
}

/* Dropdown */
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 100;
  border-top: 3px solid var(--green);
}

.main-nav li:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
  color: var(--text-body);
}

.main-nav .dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--green);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate hamburger to X when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #111;
}

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

/* Dark overlay for text readability over the photo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 60px 20px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--white);
  margin: 16px auto;
  opacity: 0.8;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-content .hero-sub {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 32px;
}

.btn-hero-call {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-heading);
}

.btn-hero-call:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #005C3A 0%, #008752 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 20px;
}

.breadcrumb {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-purple:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 70px 40px;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--off-white);
}

.section-green {
  background: var(--green);
  color: var(--white);
}

.section-green-light {
  background: #e6f4ee;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ============================================================
   BENEFIT CARDS (3-column with green checkmarks)
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.benefit-card .check-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card .check-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   CONTENT SPLIT (text left / image right)
   ============================================================ */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-split.reverse {
  direction: rtl;
}

.content-split.reverse > * {
  direction: ltr;
}

.content-split-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.content-split-text h2 .check-inline {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.content-split-text h2 .check-inline svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-split-text p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-split-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.content-split-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 60px 40px;
  background: var(--white);
  text-align: center;
}

.video-section h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  transform: translateY(-4px);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card-body .btn {
  font-size: 13px;
  padding: 10px 22px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: #e6f4ee;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 70px 40px;
  background: var(--off-white);
}

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

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   TIPS / ACCORDION
   ============================================================ */
.tips-section {
  padding: 60px 40px;
  background: var(--white);
}

.tip-box {
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 36px 0 12px;
}

.content-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin: 24px 0 8px;
}

.content-block p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-block ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-block ul li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-step .step-number {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #005C3A;
  color: rgba(255,255,255,0.85);
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-phone {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   STICKY CALL BUTTON (mobile)
   ============================================================ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefit-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .content-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-split.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 20px;
    font-size: 12px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .logo-img {
    height: 40px;
  }

  .site-logo .logo-brand {
    font-size: 22px;
  }

  .site-logo .logo-tagline {
    font-size: 11px;
  }

  .site-logo {
    gap: 8px;
  }

  .site-logo .logo-text {
    margin-left: 6px;
  }

  .main-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--green);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 0 40px 0;
    gap: 0;
    z-index: 999;
    transition: right 0.35s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    overflow-y: auto;
  }

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

  /* Overlay behind the nav panel */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
  }
  .nav-overlay.open {
    display: block;
  }

  .main-nav > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .main-nav > li > a {
    display: block;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .main-nav > li > a:hover,
  .main-nav > li > a.active {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
  }

  /* Services dropdown accordion on mobile */
  .main-nav .has-dropdown > a::after {
    content: ' +';
    float: right;
    font-size: 18px;
    line-height: 1;
  }
  .main-nav .has-dropdown.open > a::after {
    content: ' −';
  }

  .main-nav .dropdown-menu {
    display: none;
    position: static;
    background: rgba(0,0,0,0.18);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: unset;
    width: 100%;
  }
  .main-nav .has-dropdown.open .dropdown-menu {
    display: block;
  }
  .main-nav .dropdown-menu li a {
    padding: 12px 28px 12px 44px;
    font-size: 13px;
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    letter-spacing: 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav .dropdown-menu li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
  }

  /* Hide the phone number pill in mobile nav — it's in the top bar */
  .main-nav .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 50px 20px;
  }

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .cta-banner .cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sticky-call {
    display: flex;
  }

  .video-wrapper iframe {
    height: 250px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 32px;
  }

  .site-logo .logo-brand {
    font-size: 18px;
  }

  .site-logo .logo-tagline {
    font-size: 10px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .btn-hero-call {
    font-size: 1rem;
    padding: 14px 32px;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

/* ============================================================
   WHY US PAGE — TRUST BADGES
   ============================================================ */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.trust-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.trust-badge:hover {
  box-shadow: 0 8px 28px rgba(0,135,82,0.12);
  transform: translateY(-3px);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(0,135,82,0.08);
  border-radius: 50%;
  margin: 0 auto 18px;
}

.trust-badge h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.trust-badge p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   WHY US PAGE — COMPARISON TABLE
   ============================================================ */

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 36px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
}

.comparison-table thead tr {
  background: var(--green);
  color: #fff;
}

.comparison-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
}

.comparison-table th.col-chemdry {
  background: var(--green);
  color: #fff;
}

.comparison-table th.col-steam {
  background: #555;
  color: #fff;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 30%;
}

.comparison-table td.col-chemdry {
  color: var(--green);
}

.comparison-table td.col-steam {
  color: #888;
}

.badge-yes {
  display: inline-block;
  background: rgba(0,135,82,0.1);
  color: var(--green);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,135,82,0.25);
}

.badge-no {
  display: inline-block;
  background: rgba(0,0,0,0.05);
  color: #888;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* ============================================================
   BUTTON VARIANT — WHITE OUTLINE (for dark CTA banners)
   ============================================================ */

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   RESPONSIVE — TRUST BADGES & COMPARISON TABLE
   ============================================================ */

@media (max-width: 900px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* ============================================================
   SERVICE ICON STRIP
   ============================================================ */
.service-icon-strip {
  background: #f8faf8;
  border-top: 3px solid var(--green);
  padding: 20px 40px 18px;
  width: 100%;
  box-sizing: border-box;
}

.service-icon-strip .strip-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.service-icon-strip .strip-icons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap !important;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.service-icon-strip .strip-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  text-decoration: none;
  gap: 6px;
  flex: 1 1 0;
  min-width: 0;
  transition: transform 0.2s;
}

.service-icon-strip .strip-item:hover {
  transform: translateY(-4px);
}

.service-icon-strip .strip-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: filter 0.2s;
}

.service-icon-strip .strip-item:hover img {
  filter: brightness(1.15);
}

.service-icon-strip .strip-item span {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .service-icon-strip {
    padding: 14px 24px 12px;
  }
  .service-icon-strip .strip-icons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    max-width: 320px;
  }
  .service-icon-strip .strip-item {
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #e0ede6;
    flex: none !important;
    width: 100%;
  }
  .service-icon-strip .strip-item:last-child {
    border-bottom: none;
  }
  .service-icon-strip .strip-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .service-icon-strip .strip-item span {
    font-size: 0.75rem;
    text-align: left;
  }
}
