/* ============================================
   Katherine's Cleaning Services — Header + Hero
   ============================================ */

:root {
  /* Brand */
  --navy: #21314f;
  --navy-700: #1a2740;
  --navy-600: #2c4166;
  --white: #ffffff;

  /* Teal — #4caaac is the single literal brand hex, used everywhere:
     buttons, hover text, borders, underlines and icons. --teal-deep exists
     only for link/underline text sitting on white, where the literal hex
     falls short of WCAG AA and a flat brand-colored button isn't affected. */
  --teal: #4caaac;
  --teal-deep: #2b7d7f;
  --teal-tint: #eaf6f6;

  --ink-soft: rgba(255, 255, 255, 0.82);
  --ink-faint: rgba(255, 255, 255, 0.62);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --nav-h: 118px;
  --topbar-h: 40px;

  --shadow-sm: 0 2px 8px rgba(33, 49, 79, 0.08);
  --shadow-md: 0 10px 30px rgba(33, 49, 79, 0.16);
  --shadow-teal: 0 12px 28px rgba(76, 170, 172, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background-color: #4caaac;
  color: #ffffff;
}

::-moz-selection {
  background-color: #4caaac;
  color: #ffffff;
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out),
    background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(76, 170, 172, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
  }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }
}

.btn-lg {
  padding: 1.05rem 2.15rem;
  font-size: 1.02rem;
}

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  height: var(--topbar-h);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-soft);
}

.topbar-phone {
  transition: color 180ms ease;
}

.topbar-phone:hover {
  color: var(--white);
}

.topbar-item i {
  color: var(--teal);
  font-size: 0.95rem;
}

.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}

.navbar-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: clamp(1rem, 2.5vw, 2rem);
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 180ms var(--ease-out);
}

.brand:active {
  transform: scale(0.97);
}

.brand-logo {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2vw, 2.1rem);
}

.nav-panel-header,
.nav-panel-actions,
.nav-backdrop {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  position: relative;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  padding-block: 0.4rem;
  transition: color 200ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: var(--teal-deep);
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 180ms ease, transform 160ms var(--ease-out);
}

.nav-toggle:active {
  transform: scale(0.94);
}

@media (hover: hover) and (pointer: fine) {
  .nav-toggle:hover {
    background: var(--teal-tint);
  }
}

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: calc(100dvh - var(--topbar-h) - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vh, 4rem);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1600ms var(--ease-in-out);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.9rem, 2vh, 1.35rem);
}

.hero-eyebrow {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.3;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 4.75rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 27ch;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  color: var(--teal);
  margin-top: -0.35rem;
}

.hero-description {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.hero-areas {
  margin-top: clamp(0.75rem, 2vh, 1.25rem);
  padding-top: clamp(0.75rem, 2vh, 1.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  width: 100%;
  max-width: 640px;
}

.hero-areas-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

.hero-cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-faint);
}

.hero-cities li {
  display: flex;
  align-items: center;
}

.hero-cities li:not(:last-child)::after {
  content: "\00b7";
  color: var(--teal);
  margin-inline: 0.55rem;
}

/* ============ Reveal-on-load ============ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 700ms var(--ease-out) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal-on-scroll: same motion language as .reveal, but held until an
   IntersectionObserver (see main.js) flags the element as in view. */
.reveal-io {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}

.reveal-io.in-view {
  opacity: 1;
  transform: none;
}

/* ============ About / Why Choose Us ============ */

.about {
  background: #f7f9fb;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.section-head {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
  text-align: center;
}

.section-eyebrow {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.35rem, 4.6vw, 3.75rem);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.feature-card {
  background: var(--white);
  border-top: 3px solid var(--teal);
  border-radius: 0 0 14px 14px;
  padding: clamp(2rem, 3vw, 2.5rem) 1.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
  }
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.15rem;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(33, 49, 79, 0.65);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.about-content .section-eyebrow,
.about-content .section-title {
  text-align: left;
}

.about-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(33, 49, 79, 0.68);
  margin-block: 1.25rem 1.5rem;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}

.about-checklist i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.15rem;
  color: var(--teal);
}

.about-content .btn i {
  font-size: 0.85rem;
}

/* ============ Services ============ */

.services {
  background: var(--white);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.services .section-head {
  max-width: 1100px;
}

.section-desc {
  max-width: 70ch;
  margin-inline: auto;
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(33, 49, 79, 0.65);
}

.services .section-desc {
  max-width: 1050px;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
  }
}

.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(33, 49, 79, 0.28);
}

.service-body {
  padding: 1.75rem;
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(33, 49, 79, 0.65);
  margin-bottom: 1.25rem;
}

.service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  padding-bottom: 0.2rem;
  transition: color 200ms ease;
}

.service-link i {
  font-size: 0.78rem;
  transition: transform 200ms var(--ease-out);
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-link:hover {
    color: var(--teal-deep);
  }

  .service-link:hover::after {
    transform: scaleX(1);
  }

  .service-link:hover i {
    transform: translate(2px, -2px);
  }
}

/* ============ Call to Action ============ */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.cta-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.cta-eyebrow {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}

.cta-desc {
  max-width: 52ch;
  font-size: 1.03rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(440px, 90%);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 170, 172, 0.38) 0%, rgba(76, 170, 172, 0.14) 45%, rgba(76, 170, 172, 0) 72%);
  z-index: 0;
}

.cta-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
}

.cta-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  white-space: nowrap;
}

.cta-trust-item i {
  color: var(--teal);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ============ Gallery ============ */

.gallery {
  background: #f7f9fb;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.gallery .section-head {
  max-width: 900px;
}

.gallery .section-desc {
  max-width: 850px;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 1.1rem;
}

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

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 49, 79, 0.55);
  color: var(--white);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }

  .gallery-item:hover img {
    transform: scale(1.08);
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
}

.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

/* ============ Lightbox ============ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 260ms ease, visibility 0s linear 0s;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 32, 51, 0.94);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  display: flex;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.lightbox.is-open .lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.lightbox-btn {
  position: fixed;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 180ms ease, transform 160ms var(--ease-out);
}

.lightbox-btn:active {
  transform: scale(0.92);
}

@media (hover: hover) and (pointer: fine) {
  .lightbox-btn:hover {
    background: var(--teal-deep);
  }
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .lightbox-prev:hover,
  .lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
    background: var(--teal-deep);
  }
}

/* ============ Reviews ============ */

.reviews {
  background: var(--white);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.gold {
  color: #f5a623;
}

/* Stats bar */

.stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(33, 49, 79, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding-right: 1.5rem;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: rgba(33, 49, 79, 0.1);
}

.stat-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal);
  color: var(--white);
  font-size: 1.2rem;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--navy);
  line-height: 1.15;
}

.stat-suffix {
  font-size: 0.65em;
  font-weight: 700;
  color: rgba(33, 49, 79, 0.55);
}

.stat-stars {
  display: flex;
  gap: 0.15rem;
  color: #f5a623;
  font-size: 0.7rem;
  margin-block: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(33, 49, 79, 0.6);
}

/* Testimonial cards */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(33, 49, 79, 0.08);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.15rem);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.review-quote-icon {
  font-size: 1.5rem;
  color: rgba(76, 170, 172, 0.4);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: #f5a623;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(33, 49, 79, 0.78);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(33, 49, 79, 0.08);
}

.review-avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(33, 49, 79, 0.1);
  box-shadow: var(--shadow-sm);
  color: #4285f4;
  font-size: 1.1rem;
}

.review-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.review-role {
  font-size: 0.82rem;
  color: rgba(33, 49, 79, 0.58);
}

/* ============ Cleaning Plans ============ */

.plans {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.plans-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.plans-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.plans-inner {
  position: relative;
  z-index: 2;
}

.plans-title {
  color: var(--white);
}

.plans-desc {
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 961px) {
  .plans .section-head {
    max-width: 950px;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 3vw, 2.5rem);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }
}

.plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
}

.plan-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}

.plan-title-divider {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0.75rem auto 1.1rem;
  background: var(--teal);
  border-radius: 2px;
}

.plan-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(33, 49, 79, 0.65);
  margin-bottom: 1.35rem;
}

.plan-features {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-block: 1.1rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(33, 49, 79, 0.1);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
}

.plan-features i {
  flex-shrink: 0;
  color: var(--teal);
  font-size: 1.05rem;
}

.plan-btn {
  width: 100%;
}

.plans-note {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
}

.plans-note i {
  color: var(--teal);
  margin-right: 0.5rem;
  font-style: normal;
}

.plans-note-accent {
  color: var(--teal);
  font-weight: 600;
}

/* ============ Areas We Serve ============ */

.areas {
  background: var(--white);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.areas-content .section-eyebrow,
.areas-content .section-title {
  text-align: left;
}

.areas-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(33, 49, 79, 0.68);
  margin-block: 1.25rem 1.75rem;
  max-width: 52ch;
}

.areas-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.25rem;
}

.areas-cities li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 180ms ease;
}

.areas-cities i {
  flex-shrink: 0;
  color: var(--teal);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .areas-cities li:hover,
  .areas-cities li:hover i {
    color: var(--teal-deep);
  }
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ============ Footer ============ */

.site-footer {
  background: var(--navy);
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* On the services page, the footer CTA directly follows a service-detail
   section, so its top padding is matched to that section's reduced top
   padding for a uniform gap between all stacked sections. */
.page-services .footer-cta {
  padding-top: clamp(2rem, 4vw, 2.75rem);
}

.footer-cta-inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.footer-cta-slogan {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.footer-cta-slogan-break {
  display: none;
}

.footer-cta-desc {
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}

.footer-main {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-logo-badge {
  display: inline-flex;
  background: var(--white);
  border-radius: 12px;
  padding: 0.65rem;
  margin-bottom: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-logo-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

.footer-logo {
  display: block;
  width: 140px;
  height: auto;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 34ch;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 180ms ease;
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--teal);
  transition: transform 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover {
    color: var(--teal);
  }

  .footer-links a:hover i {
    transform: translateX(3px);
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.footer-contact a {
  transition: color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-contact a:hover {
    color: var(--teal);
  }
}

.footer-contact i {
  flex-shrink: 0;
  width: 16px;
  margin-top: 0.15rem;
  color: var(--teal);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.95rem;
  transition: background-color 180ms ease, transform 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-social-link:hover {
    background: var(--teal);
    transform: translateY(-3px);
  }
}

.footer-social-glyph {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.footer-bottom {
  background: var(--navy-700);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  text-align: center;
}

.footer-bottom-inner p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============ Interior Page Hero ============ */

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2vh, 1.25rem);
}

.page-hero-eyebrow {
  color: var(--white);
}

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4.25rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.page-hero-desc {
  max-width: 1180px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-hero-trust {
  align-self: stretch;
  width: 100%;
  margin-top: 0.5rem;
}

/* ============ Service Detail ============ */

.service-detail {
  background: var(--white);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.service-detail .container {
  max-width: 1350px;
  padding-inline: clamp(1rem, 1.5vw, 1.5rem);
}

.service-detail .section-head {
  max-width: 950px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}

@media (min-width: 961px) {
  .service-detail-alt .service-detail-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .service-detail-alt .service-detail-media {
    order: 2;
  }

  .service-detail-alt .service-detail-content {
    order: 1;
  }
}

.service-detail-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.service-detail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.25rem;
}

.service-block:not(:first-child) {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(33, 49, 79, 0.1);
}

.service-block-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.service-block-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 1.1rem;
}

.service-block-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.service-block-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(33, 49, 79, 0.68);
}

.internal-link {
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(33, 49, 79, 0.3);
  text-underline-offset: 2px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .internal-link:hover {
    color: var(--teal-deep);
    text-decoration-color: var(--teal-deep);
  }
}

/* On the About page, the footer CTA follows a content section directly,
   so its top padding is matched for a uniform gap, same approach as
   .page-services. */
.page-about .footer-cta,
.page-faq .footer-cta,
.page-estimate .footer-cta {
  padding-top: clamp(2rem, 4vw, 2.75rem);
}

/* ============ About: Our Story ============ */

.story-section {
  background: var(--white);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.story-section .container {
  max-width: 1350px;
  padding-inline: clamp(1rem, 1.5vw, 1.5rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-title {
  margin-bottom: 1.25rem;
}

.story-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(33, 49, 79, 0.68);
  margin-bottom: 1.15rem;
}

.story-text:last-of-type {
  margin-bottom: 1.25rem;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--teal-deep);
}

.story-signature i {
  color: var(--teal);
  font-size: 0.9rem;
}

.story-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.story-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ About: Mission & Values ============ */

.mission-values {
  background: #f7f9fb;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.mission-values .container {
  max-width: 1350px;
  padding-inline: clamp(1rem, 1.5vw, 1.5rem);
}

.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 2.5rem);
}

.mission-values-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: clamp(2rem, 3.5vw, 2.75rem);
}

.mission-values-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-block: 0.4rem 1rem;
}

.mission-values-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(33, 49, 79, 0.68);
  margin-bottom: 1.5rem;
}

.mission-values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}

.check-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
}

.mission-values-list strong {
  font-weight: 700;
}

/* ============ About: Stats ============ */

.about-stats {
  background: var(--navy);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.about-stats .container {
  max-width: 1350px;
  padding-inline: clamp(1rem, 1.5vw, 1.5rem);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.stat-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 16px;
}

.stat-icon-circle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
  font-size: 1.5rem;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.25rem);
  color: var(--white);
  line-height: 1.1;
}

.stat-caption {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.25rem;
}

/* ============ About: Why Choose Us ============ */

.why-choose {
  background: var(--white);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.why-choose .section-head {
  max-width: 950px;
}

.why-choose .container {
  max-width: 1350px;
  padding-inline: clamp(1rem, 1.5vw, 1.5rem);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.why-choose-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: clamp(2rem, 3vw, 2.5rem) 1.5rem;
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
  }
}

.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 1.15rem;
}

.why-choose-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.why-choose-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(33, 49, 79, 0.65);
}

/* ============ FAQ ============ */

.faq-section {
  background: var(--white);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.faq-section .container {
  max-width: 1350px;
  padding-inline: clamp(1rem, 1.5vw, 1.5rem);
}

.faq-section .section-head {
  max-width: 750px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.faq-sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(var(--topbar-h) + var(--nav-h) + 1.25rem);
}

.faq-categories-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.faq-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  background: #f7f9fb;
  border: 1px solid rgba(33, 49, 79, 0.08);
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  transition: color 200ms var(--ease-out), background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.faq-category-count {
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(33, 49, 79, 0.5);
  white-space: nowrap;
}

.faq-category:hover {
  color: var(--teal-deep);
}

.faq-category.is-active {
  background: var(--teal-tint);
  border-color: var(--teal);
  color: var(--teal-deep);
}

.faq-category.is-active .faq-category-count {
  color: var(--teal-deep);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-accordion[hidden] {
  display: none;
}

.faq-item {
  background: #f7f9fb;
  border: 1px solid rgba(33, 49, 79, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
}

.faq-question i {
  flex-shrink: 0;
  color: var(--teal);
  font-size: 0.95rem;
  transition: transform 280ms var(--ease-in-out);
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-in-out);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(33, 49, 79, 0.68);
}

.faq-support-card {
  margin-top: 1.5rem;
  text-align: center;
  background: #f7f9fb;
  border-radius: 16px;
  padding: 1.75rem 1.4rem;
}

.faq-support-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.faq-support-desc {
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(33, 49, 79, 0.65);
}

.faq-support-card .btn-primary {
  width: 100%;
}

/* ============ Estimate Form ============ */

.estimate-form-section {
  background: #f7f9fb;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.estimate-form-section .container {
  max-width: 1350px;
  padding-inline: clamp(1rem, 1.5vw, 1.5rem);
}

.estimate-form-section .section-head {
  max-width: 800px;
}

.estimate-form {
  max-width: 960px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.form-step {
  padding-block: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(33, 49, 79, 0.1);
}

.form-step:first-child {
  padding-top: 0;
  border-top: none;
}

.form-step-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-step-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field-full {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
}

.form-field label,
.form-field-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.form-field-label {
  margin-bottom: 0.9rem;
}

.form-field-hint {
  font-weight: 500;
  color: rgba(33, 49, 79, 0.5);
}

.required {
  color: var(--teal-deep);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(33, 49, 79, 0.15);
  border-radius: 10px;
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2321314f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(76, 170, 172, 0.18);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(33, 49, 79, 0.55);
}

.form-note a {
  color: var(--teal-deep);
  font-weight: 600;
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.form-checkbox,
.form-radio {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--navy);
  cursor: pointer;
}

.form-checkbox input,
.form-radio input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--teal);
  cursor: pointer;
}

.form-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.form-agreement {
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(33, 49, 79, 0.75);
  margin-bottom: 1.75rem;
}

.form-submit {
  width: 100%;
}

.estimate-form-footnote {
  max-width: 960px;
  margin-inline: auto;
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(33, 49, 79, 0.6);
}

.estimate-form-footnote a {
  color: var(--teal-deep);
  font-weight: 600;
}

/* ============ Back to Top ============ */

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 90;
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    transform: translateY(0) scale(1.1);
    box-shadow: var(--shadow-teal);
  }
}

/* ============ Chat Widget ============ */

.chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 95;
}

.chat-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-teal);
  }
}

.chat-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  width: min(300px, calc(100vw - 40px));
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.chat-popup.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.chat-popup-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.chat-popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f7f9fb;
  color: var(--navy);
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.chat-popup-close:hover {
  background: var(--teal-tint);
  color: var(--teal-deep);
}

.chat-popup-actions {
  display: flex;
  gap: 0.65rem;
}

.chat-popup-btn {
  flex: 1 1 0;
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(33, 49, 79, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline-navy:hover {
    background: var(--teal-tint);
    border-color: var(--teal);
    color: var(--teal-deep);
    transform: translateY(-3px);
  }
}

/* ============ Responsive ============ */

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .navbar-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    box-shadow: -12px 0 36px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    padding: 0.5rem clamp(1.5rem, 6vw, 2rem) 1.5rem;
    transform: translateX(100%);
    transition: transform 360ms var(--ease-in-out);
    z-index: 200;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.25rem 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-panel-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
  }

  .nav-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 180ms ease, transform 160ms var(--ease-out);
  }

  .nav-panel-close:active {
    transform: scale(0.92);
  }

  @media (hover: hover) and (pointer: fine) {
    .nav-panel-close:hover {
      background: rgba(255, 255, 255, 0.2);
    }
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1.15rem 0.25rem;
    font-size: 1rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .nav-link:hover {
      color: var(--teal);
    }
  }

  .nav-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
  }

  .nav-panel-btn {
    width: 100%;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
    z-index: 150;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta span,
  .nav-cta {
    white-space: nowrap;
  }

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

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

  .about-content .section-eyebrow,
  .about-content .section-title {
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-checklist li {
    text-align: left;
  }

  .about-content .btn {
    margin-inline: auto;
  }

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

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

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat-item {
    flex-basis: 45%;
    padding-right: 0;
  }

  .stat-item::after {
    display: none;
  }

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

  .cta-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content {
    max-width: 560px;
    margin-inline: auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-media {
    margin-top: 1rem;
  }

  .cta-image {
    max-width: 290px;
  }

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

  .areas-content .section-eyebrow,
  .areas-content .section-title {
    text-align: center;
  }

  .areas-desc {
    margin-inline: auto;
  }

  .areas-cities {
    max-width: 400px;
    margin-inline: auto;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    min-height: 320px;
    max-height: 420px;
  }

  .story-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 2.75rem);
  }

  .story-content {
    align-items: center;
    max-width: 760px;
    text-align: center;
  }

  .story-signature {
    justify-content: center;
  }

  .story-media {
    width: 100%;
    max-width: 700px;
    min-height: 320px;
    max-height: 420px;
  }

  .mission-values-grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    display: contents;
  }

  .faq-categories {
    order: 1;
    position: static;
  }

  .faq-answers {
    order: 2;
  }

  .faq-support-card {
    order: 3;
    margin-top: 0;
  }

  .faq-category-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-category {
    width: auto;
    flex: 1 1 auto;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-about-text {
    max-width: 60ch;
  }

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

  .form-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --topbar-h: 36px;
    --nav-h: 104px;
  }

  .topbar-inner {
    font-size: 0.72rem;
  }

  .footer-cta-slogan-break {
    display: inline;
  }

  .brand-logo {
    height: 86px;
  }

  .nav-cta {
    padding: 0.7rem 1.1rem;
    font-size: 0.82rem;
  }

  .nav-cta i {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-cities {
    font-size: 0.78rem;
  }

  .hero-description {
    font-size: clamp(0.5rem, calc(2.9vw - 1px), 0.95rem);
  }

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

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

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

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .faq-category-list {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .cta-image {
    max-width: 240px;
  }

  .cta-trust {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-trust-item {
    justify-content: center;
  }

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

  .stat-item {
    flex-basis: 100%;
  }

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

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

  .lightbox {
    padding: 1rem;
  }

  .lightbox-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

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

  .footer-about {
    grid-column: auto;
  }

  .footer-logo-badge {
    margin-inline: auto;
  }

  .footer-about-text {
    margin-inline: auto;
  }

  .footer-links a,
  .footer-contact li,
  .footer-contact a {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .form-grid,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    margin-top: 0.5rem;
  }

  .form-radio-row {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============ Reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-io {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .hero-slide {
    transition: opacity 400ms linear;
  }

  .btn,
  .brand,
  .nav-toggle,
  .nav-link::after,
  .feature-card,
  .service-card,
  .service-media img,
  .service-link::after,
  .gallery-item,
  .gallery-item img,
  .gallery-overlay,
  .lightbox,
  .lightbox-image,
  .lightbox-btn,
  .review-card,
  .plan-card,
  .footer-links a i,
  .footer-social-link,
  .why-choose-card,
  .faq-category,
  .faq-question i,
  .faq-answer,
  .back-to-top,
  .form-input,
  .form-select,
  .form-textarea,
  .chat-toggle,
  .chat-popup,
  .chat-popup-close,
  .btn-outline-navy,
  .footer-logo-badge,
  .nav-links,
  .nav-panel-close,
  .nav-backdrop {
    transition: none;
  }
}
