/* ==========================================================================
   General Cleaning SF — Shared Stylesheet
   Palette derived from the client logo (red / orange / gray).
   ========================================================================== */

:root {
  /* Brand palette (from logo) */
  --color-primary: #E31E24;        /* logo red */
  --color-primary-dark: #B3151A;
  --color-secondary: #F7941D;      /* logo orange */
  --color-secondary-dark: #D97C00;
  --color-ink: #3A3A3C;            /* logo gray / body text */
  --color-ink-light: #6D6E71;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAF7F5;
  --color-border: #E7E1DE;
  --color-success: #1E7A3D;

  /* Type */
  --font-base: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Layout */
  --container-width: 1160px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 10px rgba(58, 58, 60, 0.08);
  --shadow-lg: 0 12px 32px rgba(58, 58, 60, 0.14);
  --gap: 1.5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.25rem; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.6em; color: var(--color-ink); }
p { margin: 0 0 1em; }
button { font-family: inherit; }

/* ---- Focus states (accessibility) ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 3.5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { max-width: 640px; margin: 0 auto 2.25rem; text-align: center; }
.section-header p { color: var(--color-ink-light); }
.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); box-shadow: var(--shadow); }
.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-secondary:hover { background: var(--color-secondary-dark); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-call {
  background: var(--color-ink);
  color: #fff;
}
.btn-call:hover { background: #222; }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}
.logo-link { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-link img { height: 44px; width: auto; }
.logo-link .logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-ink);
  line-height: 1.1;
}
.logo-link .logo-text span { display: block; font-size: 0.7rem; font-weight: 600; color: var(--color-ink-light); letter-spacing: 0.05em; }

.main-nav { display: none; }
.main-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.call-btn:hover { background: var(--color-primary-dark); text-decoration: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0.5rem 0; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--color-ink);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 900px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, #fff 70%);
  padding: 3rem 0;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.hero p.lead { font-size: 1.1rem; color: var(--color-ink-light); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
  color: var(--color-ink-light);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-badges li { display: flex; align-items: center; gap: 0.4rem; list-style: none; }
.hero-badges svg { width: 18px; height: 18px; color: var(--color-secondary); flex-shrink: 0; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Page header (interior pages) */
.page-hero {
  background: var(--color-ink);
  color: #fff;
  padding: 2.75rem 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.page-hero p { color: #E5E4E4; max-width: 60ch; }
.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.85rem;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--color-ink-light); opacity: 0.6; }
.page-hero .breadcrumbs a { color: #E5E4E4; }
.page-hero .breadcrumbs li:last-child { color: #fff; font-weight: 600; }
.breadcrumbs-light a { color: var(--color-ink-light); }
.breadcrumbs-light li:last-child { color: var(--color-ink); font-weight: 600; }

/* ---- Cards / Grids ---- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  height: 100%;
}
.card h3 { font-size: 1.15rem; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.card-icon svg { width: 26px; height: 26px; }

.service-card { display: flex; flex-direction: column; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ---- Pillars (Why Choose Us) ---- */
.pillars { list-style: none; margin: 0; padding: 0; }

/* ---- Feature list ---- */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.check-list svg { width: 20px; height: 20px; color: var(--color-success); flex-shrink: 0; margin-top: 0.15em; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: #fff; color: var(--color-primary); }
.cta-band .btn-primary:hover { background: #f2f2f2; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.25rem; }

/* ---- Reviews / social proof placeholder ---- */
.reviews-placeholder {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--color-ink-light);
  background: var(--color-bg-alt);
}
.reviews-placeholder svg { width: 32px; height: 32px; margin-bottom: 0.75rem; color: var(--color-ink-light); }
.review-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.25rem; }

/* ---- Forms ---- */
.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .form-grid.two-col { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-weight: 600; font-size: 0.92rem; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--color-ink);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.85rem; color: var(--color-ink-light); margin-top: 0.75rem; }
.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: #EAF6EE; color: var(--color-success); }
.form-status.error { background: #FDEBEC; color: var(--color-primary-dark); }

/* ---- FAQ ---- */
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 1.1rem; color: var(--color-ink-light); }

/* ---- Related services ---- */
.related-services a {
  display: block;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--color-ink);
}
.related-services a:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }

/* ---- Table (service area / hours) ---- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-ink);
  color: #E5E4E4;
  padding: 3rem 0 6.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer a { color: #E5E4E4; }
.site-footer a:hover { color: #fff; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.85rem; }
.footer-logo img { height: 38px; width: auto; }
.footer-nav ul, .footer-social ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li, .footer-social li { margin-bottom: 0.5rem; }
address { font-style: normal; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: #B9B8B8;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

/* ---- Sticky mobile call bar ---- */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--color-primary);
  display: flex;
}
.mobile-call-bar a {
  flex: 1;
  color: #fff;
  text-align: center;
  padding: 0.9rem 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.mobile-call-bar a:hover { text-decoration: none; background: var(--color-primary-dark); }
@media (min-width: 900px) {
  .mobile-call-bar { display: none; }
}

/* ---- 404 ---- */
.error-page { text-align: center; padding: 5rem 1.25rem; }
.error-page h1 { font-size: 5rem; color: var(--color-primary); margin-bottom: 0; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
