/* =============================================================
   GREEN SCRUB — Main Stylesheet
   Eco-Friendly Carpet & Upholstery Cleaning · Los Angeles, CA
   ============================================================= */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand palette */
  --green: #1d7d41;
  --green-dark: #145c30;
  --green-mid: #239a4d;
  --green-light: #eaf6ef;
  --green-pale: #f2faf5;
  --green-teal: #17907a;

  /* Neutrals */
  --charcoal: #1c2630;
  --steel: #3d5060;
  --muted: #6b8090;
  --light-bg: #f5f9f7;
  --border: #dce8e2;
  --white: #ffffff;

  /* Typography */
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --section-py: 5rem;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.11);
  --shadow-green: 0 8px 32px rgba(29, 125, 65, 0.18);
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--steel);
  background: var(--white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

p {
  line-height: 1.78;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Section Shared ---- */
section {
  padding: var(--section-py) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0.5rem 0 1.25rem;
}

.section-bg-light {
  background: var(--light-bg);
}
.section-bg-green {
  background: var(--green);
  color: var(--white);
}
.section-bg-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-bg-pale {
  background: var(--green-pale);
}

/* ---- Buttons ---- */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.18s,
    box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.18s;
  text-decoration: none;
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.highlight-bar {
  background-color: var(--green);
  color: var(--white);
}
/* Before After Css */

.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* clip-path method */
.ba-before {
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 0;
  width: 80px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 20;
}

.ba-divider {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.ba-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(29, 125, 65, 0.35);
}

.after-badge {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

@media (max-width: 768px) {
  .ba-slider {
    aspect-ratio: 1/1;
  }

  .ba-circle {
    width: 50px;
    height: 50px;
  }
}
.highlight-bar h3,
.highlight-bar p {
  color: var(--white);
}

.highlight-bar .btn-dark {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.18s,
    box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.highlight-bar .btn-outline-light {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);

  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.18s,
    box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.18s;
  text-decoration: none;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.18s;
  text-decoration: none;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.88rem;
}

/* ---- Fade-up animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
#top-bar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  padding: 0.5rem 0;
  font-family: var(--font-body);
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.top-bar-info a,
.top-bar-info span {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.top-bar-info a:hover {
  color: var(--white);
}
.top-bar-info i {
  color: var(--green-mid);
  font-size: 0.75rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.78rem;
}
.top-bar-stars i {
  color: #f5c842;
  font-size: 0.7rem;
}
.top-bar-stars span {
  margin-left: 0.2rem;
}

.btn-promo {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-promo:hover {
  background: var(--green-mid);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-gs {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  transition:
    box-shadow 0.3s,
    padding 0.3s;
}
.navbar-gs.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.55rem 0;
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-leaf {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--green);
  flex-shrink: 0;
}
.brand-text {
  line-height: 1.15;
}
.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.brand-tagline {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Nav links */
.navbar-gs .nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 0.4rem 0.8rem !important;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
.navbar-gs .nav-link:hover,
.navbar-gs .nav-link.active {
  color: var(--green);
  background: var(--green-light);
}

/* Dropdowns */
.gs-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  min-width: 240px;
}
.gs-dropdown .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition:
    background 0.15s,
    color 0.15s;
}
.gs-dropdown .dropdown-item i {
  color: var(--green);
}
.gs-dropdown .dropdown-item:hover {
  background: var(--green-light);
  color: var(--green);
}

/* Phone + CTA in nav */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--charcoal) !important;
  white-space: nowrap;
}
.nav-phone i {
  color: var(--green);
}
.nav-phone:hover {
  color: var(--green) !important;
}

.nav-cta {
  font-size: 0.78rem;
  padding: 0.5rem 1.25rem;
}

/* Mobile nav */
@media (max-width: 991.98px) {
  .navbar-gs .nav-link {
    padding: 0.55rem 1rem !important;
  }
  .gs-dropdown {
    box-shadow: none;
    border: none;
    background: var(--green-pale);
  }
  .nav-phone,
  .nav-cta {
    margin-top: 0.5rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #243040 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

#hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 125, 65, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-badge-green {
  background: var(--green);
  color: var(--white);
}
.hero-badge-outline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.hero-accent {
  color: var(--green-mid);
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.hero-trust-item i {
  color: var(--green-mid);
  font-size: 0.9rem;
}

/* Hero image panel */
.hero-img-panel {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}
.hero-img-placeholder i {
  font-size: 3rem;
}

.hero-promo-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}
.hero-promo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-promo-text {
  font-size: 0.72rem;
  color: var(--muted);
}
.hero-promo-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.hero-review-highlight {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.hero-review-stars {
  display: flex;
  gap: 0.18rem;
  color: #ffc107;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-review-stars i {
  color: #ffc107;
}

.hero-review-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-review-copy strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-review-copy span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

/* Trust bar below hero */
#trust-bar {
  background: var(--green);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.trust-item i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#whychoose {
  background: var(--white);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.feature-card:hover .feature-icon {
  background: var(--green);
  color: var(--white);
}
.feature-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.service-one-liner #about-story {
  background: var(--light-bg);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--light-bg);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  text-decoration: none;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green);
  position: relative;
  overflow: hidden;
}
.service-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.65;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link {
  gap: 0.55rem;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  background: var(--green);
}
#process h2,
#process .section-label {
  color: var(--white);
}
#process .section-label::before {
  background: rgba(255, 255, 255, 0.5);
}
#process .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  transition: background 0.2s;
}
.process-num:hover {
  background: rgba(255, 255, 255, 0.2);
}
.process-num i {
  font-size: 1.5rem;
  color: var(--white);
}
.process-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 270px;
}

.process-row {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.process-connector {
  position: absolute;
  top: 31px;
  left: calc(50% + 48px);
  width: calc(100% - 96px);
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .process-connector {
    display: none;
  }
}

/* ============================================================
   STATS / BY THE NUMBERS
   ============================================================ */
#stats {
  background: var(--charcoal);
  padding: 3.5rem 0;
}

.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-number span {
  color: var(--green-mid);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  align-self: center;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 125, 65, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(29, 125, 65, 0.55);
}
.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover .gallery-overlay i {
  opacity: 1;
}

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--green-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.78rem;
  gap: 0.5rem;
}
.gallery-placeholder i {
  font-size: 2rem;
  opacity: 0.5;
}

.work-gallery {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.work-gallery-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  background: #e9eeeb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.work-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.work-gallery-card:hover img {
  transform: scale(1.025);
}

.work-gallery-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(20, 31, 42, 0.88);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

@media (max-width: 767.98px) {
  .work-gallery-card {
    height: 280px;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  background: var(--light-bg);
}

.service-page-reviews #reviews {
  background: var(--white);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-stars {
  display: flex;
  gap: 0.2rem;
}
.review-stars i {
  color: #f5c842;
  font-size: 0.9rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.75;
  flex: 1;
}
.review-text::before {
  content: "\201C";
}
.review-text::after {
  content: "\201D";
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}
.review-city {
  font-size: 0.75rem;
  color: var(--muted);
}
.review-source {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
}

/* ============================================================
   HOME FAQs
   ============================================================ */
#faqs {
  background: var(--white);
}

.gs-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: none;
}
.gs-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--white);
  padding: 1.1rem 1.4rem;
  box-shadow: none;
}
.gs-accordion .accordion-button:not(.collapsed) {
  color: var(--green);
  background: var(--green-pale);
  box-shadow: none;
}
.gs-accordion .accordion-button::after {
  filter: invert(40%) sepia(80%) saturate(500%) hue-rotate(105deg);
}
.gs-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 1.4rem 1.2rem;
  background: var(--green-pale);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
#servicearea {
  background: var(--light-bg);
}

.sa-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.sa-city-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.sa-city-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(29, 125, 65, 0.12);
  transform: translateY(-2px);
}
.sa-city-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.sa-city-name i {
  color: var(--green);
  font-size: 0.8rem;
}
.sa-city-county {
  font-size: 0.72rem;
  color: var(--muted);
}
.sa-city-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
  margin-top: 0.35rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
#cta-band {
  background: var(--green-dark);
  padding: 4rem 0;
}
#cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.cta-band-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 520px;
  margin: 0.75rem auto 2rem;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
#quote-form {
  background: var(--charcoal);
}
#quote-form h2 {
  color: var(--white);
}

.gs-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.gs-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.gs-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 125, 65, 0.12);
  outline: none;
}
.gs-input::placeholder {
  color: var(--muted);
}
.form-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 0 0;
  font-size: 0.88rem;
}
#footer h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
#footer ul li {
  margin-bottom: 0.5rem;
}
#footer ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  transition: color 0.2s;
}
#footer ul li a:hover {
  color: var(--green-mid);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-leaf {
  width: 44px;
  height: 44px;
  background: rgba(29, 125, 65, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-mid);
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
}
.footer-brand-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-about {
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  line-height: 1.7;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-contact-quick a,
.footer-contact-quick span {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  transition: color 0.2s;
}
.footer-contact-quick a:hover {
  color: var(--green-mid);
}
.footer-contact-quick i {
  color: var(--green-mid);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}

.footer-promo {
  background: rgba(29, 125, 65, 0.2);
  border: 1px solid rgba(29, 125, 65, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.footer-promo-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.footer-promo-text {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 3rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--green-mid);
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1040;
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(29, 125, 65, 0.45);
  animation: float-pulse 3s ease-in-out infinite;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.floating-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(29, 125, 65, 0.55);
  animation-play-state: paused;
}
.floating-cta-icon {
  font-size: 1rem;
}

@keyframes float-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 24px rgba(29, 125, 65, 0.45);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 125, 65, 0.55);
  }
}

/* ============================================================
   CTA MODAL
   ============================================================ */
.cta-modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-modal-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 2rem;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cta-modal-promo {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
}
.cta-modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.cta-modal-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.cta-modal-body {
  padding: 1.75rem 2rem 2rem;
}
.cta-form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.cta-form-note i {
  color: var(--green);
}

.cta-modal-direct {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.cta-modal-direct-label {
  margin-bottom: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  color: var(--steel);
}

.cta-modal-direct-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cta-modal-call,
.cta-modal-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-modal-call {
  background: var(--green);
  border: 2px solid var(--green);
  color: var(--white);
}

.cta-modal-call:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.cta-modal-text {
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green-dark);
}

.cta-modal-text:hover {
  background: var(--green);
  color: var(--white);
}

@media (max-width: 420px) {
  .cta-modal-direct-actions {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-size: 0.85rem;
  z-index: 1035;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s,
    color 0.2s;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#back-to-top:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ============================================================
   INNER PAGE — HERO / BREADCRUMB
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #243040 100%);
  padding: 3.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 125, 65, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0;
}

.breadcrumb-nav {
  margin-bottom: 0.75rem;
}
.breadcrumb-nav a,
.breadcrumb-nav span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-nav a:hover {
  color: var(--green-mid);
}
.breadcrumb-nav .sep {
  margin: 0 0.4rem;
}
.breadcrumb-nav .current {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   INNER PAGE — SERVICE / LOCATION
   ============================================================ */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.sidebar-card-header {
  background: var(--green);
  padding: 1.5rem;
}
.sidebar-card-header h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}
.sidebar-card-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  margin: 0.35rem 0 0;
}
.sidebar-card-body {
  padding: 1.5rem;
}
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--green-dark);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.sidebar-phone:hover {
  background: var(--green);
  color: var(--white);
}
.sidebar-phone i {
  font-size: 1.1rem;
}

.sidebar-services h6 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-size: 0.84rem;
  color: var(--steel);
  transition:
    background 0.15s,
    color 0.15s;
}
.sidebar-service-link:hover,
.sidebar-service-link.active {
  background: var(--green-light);
  color: var(--green);
}
.sidebar-service-link i {
  color: var(--green);
  font-size: 0.8rem;
}

/* Content area */
.content-area h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.content-area h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}
.content-area p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--steel);
  border-bottom: 1px solid var(--border);
}
.benefits-list li:last-child {
  border-bottom: none;
}
.benefits-list li i {
  color: var(--green);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Location page extras */
.loc-nearby-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.loc-nearby-card h6 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.loc-nearby-card h6 i {
  color: var(--green);
}
.loc-nearby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.city-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
}
.city-tag:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
#gallery-full {
  background: var(--white);
}
.gallery-full-grid {
  columns: 3;
  column-gap: 0.75rem;
}
.gallery-full-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-full-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}
.gallery-full-item:hover img {
  transform: scale(1.04);
}
.gallery-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 125, 65, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.gallery-full-item:hover .gallery-full-overlay {
  background: rgba(29, 125, 65, 0.45);
}
.gallery-full-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-full-item:hover .gallery-full-overlay i {
  opacity: 1;
}

/* Gallery lightbox */
.gallery-modal-content {
  background: var(--charcoal);
  border: none;
  border-radius: var(--radius-lg);
}
.gallery-modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gallery-modal-img {
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 4rem;
}
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.value-card h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 0.25rem;
}
.value-card p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 600;
}
.contact-item-value a {
  color: var(--charcoal);
}
.contact-item-value a:hover {
  color: var(--green);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .content-sidebar-wrap {
    grid-template-columns: 1fr;
  }
  .sidebar-card {
    position: static;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-py: 3.5rem;
  }
  .gallery-full-grid {
    columns: 2;
  }
  .sa-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #hero {
    padding: 3.5rem 0 3rem;
  }
  .hero-promo-card {
    display: none;
  }
  .process-connector {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
  }
  .trust-bar-inner {
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-py: 3rem;
  }
  .gallery-full-grid {
    columns: 1;
  }
  .sa-city-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .floating-cta {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .floating-cta-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.78rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta-btn {
    animation: none;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   VIDEO TESTIMONIALS
   ============================================================ */
.video-testimonials-section {
  background: #f4f8f5;
}
.video-testimonials-intro {
  max-width: 680px;
  color: var(--muted);
}
.video-testimonial-card {
  width: 100%;
  max-width: 270px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.video-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-testimonial-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--charcoal);
}
.video-testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-testimonial-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 45%);
}
.video-testimonial-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  font-size: 2rem;
}
.video-testimonial-play i {
  margin-left: 4px;
}
.video-testimonial-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1rem;
  text-align: center;
}
.video-testimonial-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.video-testimonial-stars {
  display: flex;
  gap: 0.1rem;
  color: #f5c842;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.video-testimonial-caption {
  color: var(--muted);
  font-size: 0.8rem;
}
.video-testimonial-modal .modal-content {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
}
.video-testimonial-modal .modal-header {
  background: #fff;
}
.video-modal-dialog {
  max-width: 430px;
}
.video-testimonial-player {
  aspect-ratio: 9/16;
  background: #000;
}
.video-testimonial-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 767.98px) {
  .video-testimonial-card {
    max-width: 270px;
  }

  div:has(> .video-testimonial-card) {
    display: flex;
    justify-content: center;
  }
}

/* Reviews page section contrast */
.reviews-page-written #reviews {
  background: var(--white);
}

/* ============================================================
   PAGE SECTION RHYTHM
   Keep adjacent content sections visually distinct without
   changing shared component defaults site-wide.
   ============================================================ */

/* Home: Our Work -> Why Choose Us -> Reviews -> Service Areas */
.page-home #whychoose {
  background: var(--light-bg);
}

.page-home #reviews {
  background: var(--white);
}

/* Services overview: Reviews -> Service Areas */
.page-services #servicearea {
  background: var(--white);
}

/* Individual services: Reviews -> Service Areas */
.page-service .service-page-reviews #reviews {
  background: var(--light-bg);
}

.page-service #servicearea {
  background: var(--white);
}

/* Location pages: main location content -> nearby service areas */
.page-location #service-areas-list {
  background: var(--light-bg);
}


/* ============================================================
   RECAPTCHA DISCLOSURE + HOME GOOGLE MAP
   ============================================================ */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-disclosure {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
  text-align: center;
}

.recaptcha-disclosure > span {
  font-size: .72rem;
}

.recaptcha-disclosure a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.servicearea-map-wrap {
  margin-top: 3rem;
}

.servicearea-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.servicearea-map-heading h3 {
  margin: .35rem 0 0;
  font-size: 1.35rem;
}

.servicearea-map-frame {
  overflow: hidden;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.servicearea-map-frame iframe {
  display: block;
}

@media (max-width: 767.98px) {
  .servicearea-map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .servicearea-map-link {
    width: 100%;
    text-align: center;
  }

  .servicearea-map-frame iframe {
    height: 300px;
  }
}
