/* ============================================================
   Emergency Cleanings — Shared Brand Styles
   Color palette verified from live site (May 2026)
   ============================================================ */

:root {
  --navy-dark:   #0f1f38;   /* hero, nav, footer backgrounds */
  --navy:        #234372;   /* H2 headings, primary on light */
  --body-text:   #1a1a2e;   /* body copy */
  --yellow:      #fef22e;   /* buttons, badges, CTAs — always use --navy-dark text on top */
  --blue-accent: #2f64e7;   /* section eyebrow labels / tags */
  --white:       #ffffff;
  --light-bg:    #f8f9fb;
  --border:      #e2e6ef;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
}

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy-dark); }
p  { font-size: 1rem; font-weight: 400; }

/* ---- Utility ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--light { background: var(--light-bg); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn--primary   { background: var(--yellow); color: var(--navy-dark); }
.btn--secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn--outline   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }

/* ---- Nav ---- */
.nav {
  background: var(--navy-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo img { height: 44px; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
.nav__phone:hover { color: var(--yellow); }

/* ---- Hero ---- */
.hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 72px;
}
.hero__label { color: var(--blue-accent); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

/* ---- Stats bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
}
.stat {
  background: rgba(255,255,255,0.06);
  padding: 20px 16px;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ---- Steps ---- */
.steps { display: flex; flex-direction: column; gap: 32px; }
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__body h3 { margin-bottom: 6px; }
.step__body p  { color: #4a5568; font-size: 0.97rem; }

/* ---- Feature grid ---- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}
.feature__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.feature h3 { margin-bottom: 8px; }
.feature p  { color: #4a5568; font-size: 0.95rem; }

/* ---- Scope scale ---- */
.scope-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.scope-table th, .scope-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.scope-table th { font-weight: 700; color: var(--navy); background: var(--light-bg); }
.scope-badge {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  font-size: 0.85rem;
}

/* ---- Cities ---- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.city-pill {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ---- Testimonials ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 28px 24px;
}
.testimonial__stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; }
.testimonial__text  { color: rgba(255,255,255,0.85); font-size: 0.97rem; line-height: 1.65; margin-bottom: 16px; }
.testimonial__name  { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testimonial__loc   { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  padding: 20px 0;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue-accent);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding-bottom: 20px; color: #4a5568; font-size: 0.97rem; line-height: 1.7; }

/* ---- CTA section ---- */
.cta-section {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- Footer ---- */
.footer {
  background: #0a1628;
  color: rgba(255,255,255,0.55);
  padding: 32px 0;
  font-size: 0.85rem;
  text-align: center;
}
.footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer a:hover { color: var(--yellow); }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .hero { padding: 56px 0 52px; }
  .hero__ctas { flex-direction: column; }
  .step { flex-direction: column; }
  .cta-section .cta-buttons { flex-direction: column; align-items: center; }
}
