/* ===== Fresh Commercial Cleaning — navy & green ===== */

:root {
  --navy: #16294e;
  --navy-deep: #0e1c38;
  --navy-soft: #1d3563;
  --green: #41842b;
  --green-dark: #356d22;
  --green-tint: #eef6ea;
  --ink: #233048;
  --slate: #5a6b85;
  --line: #e2e7ef;
  --bg: #ffffff;
  --bg-tint: #f3f6fa;
  --radius: 10px;
  --shadow: 0 8px 28px rgba(14, 28, 56, 0.1);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 860px; }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.5em; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--navy); }

.section { padding: 72px 0; }
.section-tint { background: var(--bg-tint); }
.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.icon-inline {
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.18em;
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-navy-outline {
  background: rgba(22, 41, 78, 0.55);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.btn-navy-outline:hover { background: var(--navy-soft); border-color: #fff; }
.btn-navy-ghost {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
  padding: 10px 28px;
}
.btn-navy-ghost:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  line-height: 1;
}
.brand-script {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  color: var(--navy);
}
.brand-caps {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 2px;
  white-space: nowrap;
}
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.93rem;
}
.main-nav a:hover { color: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(100deg, rgba(11, 23, 48, 0.92) 0%, rgba(13, 28, 58, 0.78) 45%, rgba(15, 32, 66, 0.45) 100%),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=70") center / cover no-repeat;
  background-color: var(--navy-deep);
  color: #fff;
  padding: 96px 0 104px;
}
.hero-copy { max-width: 600px; }
.hero h1 { color: #fff; margin-bottom: 0.45em; }
.hero-lead {
  font-size: 1.08rem;
  color: #dbe3f0;
  margin-bottom: 1.8em;
  max-width: 540px;
}
.hero-lead em, .hero-pin em { color: #fff; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-pin {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #c8d3e6;
  max-width: 480px;
  margin: 0;
}
.hero-pin .icon-inline { margin-top: 3px; color: #fff; }

/* ===== Statement ===== */
.statement { text-align: center; padding: 76px 0; }
.statement h2 { margin-bottom: 0.8em; }
.statement p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--slate);
}

/* ===== Why cards ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
}
.why-card p { color: var(--slate); font-size: 0.9rem; margin: 0; }
.icon-circle {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
}
.icon-circle svg { width: 26px; height: 26px; }

/* ===== Service cards ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-grid-more { margin-top: 24px; }
.service-grid-more[hidden] { display: none; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 2px 10px rgba(14, 28, 56, 0.05);
}
.service-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-tint);
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-badge {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: 3px solid #fff;
  z-index: 2;
}
.service-badge svg { width: 22px; height: 22px; }
.service-body {
  padding: 36px 22px 26px;
  text-align: center;
}
.service-body p { color: var(--slate); font-size: 0.9rem; margin: 0; }
.services-action { text-align: center; margin-top: 36px; }

/* ===== Who we work with ===== */
.clients-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.client {
  padding: 28px 16px;
  text-align: center;
  color: var(--green);
}
.client + .client { border-left: 1px solid var(--line); }
.client svg { width: 34px; height: 34px; }
.client p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.process-card {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
}
.process-card h3 { font-size: 0.98rem; margin-bottom: 0.35em; }
.process-card p { color: var(--slate); font-size: 0.88rem; margin: 0; }
.process-num {
  position: absolute;
  top: -16px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 3px solid #fff;
}
.process-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.process-icon svg { width: 30px; height: 30px; }
.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  width: 36px;
  border-top: 2px dotted #b9c4d6;
}

/* ===== Service area ===== */
.area-wrap { text-align: center; }
.area-wrap .section-title { margin-bottom: 28px; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.area-list li {
  background: var(--green-tint);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 999px;
}
.area-note { color: var(--slate); font-size: 0.92rem; margin: 0; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item p {
  margin: 0;
  padding: 0 0 16px;
  color: var(--slate);
  font-size: 0.92rem;
}

/* ===== CTA ===== */
.cta {
  background:
    linear-gradient(rgba(11, 23, 48, 0.93), rgba(11, 23, 48, 0.93)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=60") center / cover no-repeat;
  background-color: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 76px 0;
}
.cta h2 { color: #fff; }
.cta-lead { color: #c8d3e6; margin-bottom: 2em; }
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.cta-email { margin: 0; color: #c8d3e6; font-size: 0.95rem; }
.cta-email a { color: #fff; text-decoration: none; font-weight: 600; }
.cta-email a:hover { text-decoration: underline; }
.cta-email .icon-inline { margin-right: 6px; }

/* ===== Quote page ===== */
.page-banner {
  background:
    linear-gradient(rgba(11, 23, 48, 0.92), rgba(11, 23, 48, 0.92)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=60") center / cover no-repeat;
  background-color: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.4em;
}
.page-banner p {
  color: #c8d3e6;
  max-width: 520px;
  margin: 0 auto;
}
.quote-section { background: var(--bg-tint); }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
  padding: 38px 34px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(65, 132, 43, 0.18);
}
.form-field textarea { resize: vertical; }
.btn-block { width: 100%; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  min-height: 1.4em;
}
.form-status.error { color: #b3402f; }
.form-alt {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.88rem;
  color: var(--slate);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: #aebad0;
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { width: fit-content; margin: 0 0 14px; }
.footer-brand .brand-script { color: #fff; font-size: 1.9rem; }
.footer-brand .brand-caps { color: #aebad0; }
.footer-blurb { font-size: 0.88rem; margin: 0; max-width: 320px; }
.site-footer h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
}
.footer-list li { display: flex; align-items: flex-start; gap: 9px; }
.footer-list .icon-inline { margin-top: 3px; color: #8fa3c4; }
.footer-list a { color: #dbe3f0; text-decoration: none; }
.footer-list a:hover { color: #fff; text-decoration: underline; }
.footer-legal {
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
}
.footer-legal p { margin: 0; }

/* ===== Mobile call bar ===== */
.mobile-call-bar { display: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .clients-strip { grid-template-columns: repeat(2, 1fr); }
  .client + .client { border-left: 0; }
  .client { border-top: 1px solid var(--line); }
  .clients-strip .client:nth-child(-n+2) { border-top: 0; }
  .clients-strip .client:nth-child(2n) { border-left: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; gap: 28px; max-width: 480px; margin: 0 auto; }
  .process-card:not(:last-child)::after { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 24px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  body { padding-bottom: 56px; }
  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(14, 28, 56, 0.18);
  }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 72px; }
  .why-grid { grid-template-columns: 1fr; }
  .clients-strip { grid-template-columns: 1fr; }
  .clients-strip .client { border-left: 0 !important; }
  .clients-strip .client:nth-child(-n+2) { border-top: 1px solid var(--line); }
  .clients-strip .client:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .btn-sm { padding: 9px 14px; font-size: 0.82rem; }
  .brand-script { font-size: 1.6rem; }
  .brand-caps { font-size: 0.46rem; letter-spacing: 0.2em; }
}
