/* Apartment Cleaning Pros — styles.css */
:root {
  --deep: #0b3b4a;      /* petrol blue: headers, footer */
  --deep-2: #0e4a5c;
  --teal: #13a89e;      /* fresh aqua: links, accents */
  --teal-soft: #e2f4f2;
  --citrus: #f5a524;    /* CTA */
  --citrus-dark: #d98c0a;
  --paper: #f6faf9;     /* page background */
  --card: #ffffff;
  --ink: #142428;
  --muted: #4c6167;
  --line: #dce9e7;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 59, 74, 0.10);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--citrus);
  outline-offset: 2px;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; color: var(--deep); }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

/* ---------- Top bar + header ---------- */
.topbar {
  background: var(--deep);
  color: #cfe7e4;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--deep);
  line-height: 1.1;
}
nav.main { display: flex; gap: 22px; }
nav.main a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
nav.main a:hover { color: var(--teal); }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-cta {
  background: var(--citrus);
  color: #3a2800;
  box-shadow: 0 6px 18px rgba(245, 165, 36, 0.35);
}
.btn-cta:hover { background: #ffb63a; }
.btn-ghost {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--deep);
}
.btn-call {
  background: var(--teal);
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, var(--teal-soft) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  padding: 56px 0 64px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero p.lead { font-size: 1.15rem; color: var(--muted); margin: 18px 0 26px; max-width: 34rem; }
.hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 0.88rem;
  color: var(--muted);
}
.trust span { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.trust svg { width: 18px; height: 18px; flex: none; }

/* Quote card (signature element) */
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.quote-card h3 { margin-bottom: 4px; }
.quote-card p.sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.quote-card form { display: grid; gap: 12px; }
.quote-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 0.82rem; font-weight: 600; color: var(--deep); display: block; margin-bottom: 4px; }
input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); }
.quote-card .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }
.form-status { font-size: 0.9rem; font-weight: 600; text-align: center; display: none; }
.form-status.ok { display: block; color: #0d7a52; }
.form-status.err { display: block; color: #b3261e; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* Pricing */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card.popular { border: 2px solid var(--teal); box-shadow: var(--shadow); }
.badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep);
  margin: 6px 0 2px;
}
.price small { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.card p.desc { color: var(--muted); font-size: 0.93rem; margin: 10px 0 16px; }
.card ul { list-style: none; margin: 0 0 22px; flex: 1; }
.card ul li, .checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 9px;
  font-size: 0.93rem;
}
.card ul li::before, .checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--teal-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230b8f86" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-11"/></svg>') center/11px no-repeat;
}

/* Checklist section */
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.checklist { list-style: none; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: var(--citrus); letter-spacing: 2px; margin-bottom: 10px; font-size: 1rem; }
.review p { font-size: 0.95rem; }
.review footer { margin-top: 14px; font-weight: 700; color: var(--deep); font-size: 0.9rem; }

/* Service areas */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas a {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  color: var(--deep);
  font-weight: 600;
  font-size: 0.9rem;
}
.areas a:hover { border-color: var(--teal); color: var(--teal); }

/* Big CTA band */
.cta-band {
  background: var(--deep);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 48px 28px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #bcd9d5; margin: 12px auto 24px; max-width: 34rem; }

/* Footer */
footer.site {
  background: var(--deep);
  color: #a8c8c4;
  padding: 48px 0 90px;
  font-size: 0.9rem;
}
footer.site .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
footer.site h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
footer.site a { color: #cfe7e4; text-decoration: none; display: block; margin-bottom: 8px; }
footer.site a:hover { color: #fff; }
.legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; font-size: 0.8rem; }

/* Sticky mobile call bar */
.callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(11,59,74,0.12);
}
.callbar a { flex: 1; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .cards, .reviews { grid-template-columns: 1fr; }
  .check-cols { grid-template-columns: 1fr; gap: 20px; }
  nav.main { display: none; }
  header.site .header-cta { display: none; }
  .callbar { display: flex; }
  footer.site .wrap { grid-template-columns: 1fr; gap: 26px; }
  section { padding: 48px 0; }
}
