/* ============================================================
   YassClean Instant Quote v2 — brand re-theme 2026-09-03
   Palette: #0a0a0a (bg), #ffffff (text), #ddff00 (electric yellow accent)
   Fonts: Inter (body) / Manrope (display) — per website brand system
   ============================================================ */

:root {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --green: #ddff00;
  --green-dark: #ddff00;
  --mint: rgba(221, 255, 0, 0.10);
  --mint-pale: rgba(255, 255, 255, 0.035);
  --gold: #d4af37;
  --cream: #0a0a0a;
  --white: #0a0a0a;
  --border: rgba(255, 255, 255, 0.08);
  --danger: #ff6b5e;
  --card: rgba(255, 255, 255, 0.035);
  --card-solid: rgba(14, 14, 14, 0.92);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --accent-glow: rgba(221, 255, 0, 0.25);
  --accent-dim: rgba(221, 255, 0, 0.15);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #0a0a0a;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.ambient { position: fixed; border-radius: 50%; pointer-events: none; z-index: -1; filter: blur(1px); }
.ambient-one { width: 480px; height: 480px; top: 4rem; right: -220px; background: rgba(221, 255, 0, 0.05); }
.ambient-two { width: 340px; height: 340px; bottom: -140px; left: -160px; background: rgba(221, 255, 0, 0.03); }
.hidden { display: none !important; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.site-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 168px; height: auto; display: block; }
.header-trust { display: flex; gap: 12px; align-items: center; font-size: .86rem; color: var(--muted); }
/* call CTA: reads as a button */
.header-trust a.call-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #ddff00; background: rgba(221, 255, 0, 0.08);
  border: 1.5px solid rgba(221, 255, 0, 0.45);
  border-radius: 999px;
  padding: 9px 16px; font-weight: 800; font-size: .9rem; text-decoration: none;
  transition: background .2s, border-color .2s, transform .18s;
}
.header-trust a.call-cta:hover { background: rgba(221, 255, 0, 0.16); border-color: #ddff00; transform: translateY(-1px); }
.header-trust a.call-cta svg { flex-shrink: 0; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddff00; box-shadow: 0 0 0 5px rgba(221, 255, 0, 0.12); }

.progress {
  max-width: 580px;
  margin: 8px auto 18px;
  display: flex;
  align-items: flex-start;
  padding: 0 22px;
}
.progress i { height: 2px; background: var(--border); flex: 1; margin-top: 17px; transition: .25s; }
.progress i.complete { background: #ddff00; }
.progress-item { display: grid; justify-items: center; gap: 5px; color: rgba(255, 255, 255, 0.5); min-width: 54px; }
.progress-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--border);
  background: var(--card);
  border-radius: 50%;
  font-weight: 800;
  transition: .25s;
}
.progress-item small { font-size: .72rem; font-weight: 700; }
.progress-item.active, .progress-item.complete { color: #ddff00; }
.progress-item.active span, .progress-item.complete span { border-color: #ddff00; background: #ddff00; color: #0a0a0a; box-shadow: 0 0 14px var(--accent-glow); }

.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto 40px; }
.step { display: none; animation: rise .35s ease both; }
.step.active { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.hero-grid { min-height: 620px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; }
.hero-copy h1, .section-heading h2, .confirmation h2 {
  font-family: Manrope, "Inter", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.08;
  margin: 10px 0 16px;
}
.hero-copy h1 { font-size: clamp(2.55rem, 5vw, 4.7rem); max-width: 760px; }
.hero-copy > p { color: var(--muted); font-size: 1.15rem; max-width: 610px; }
.eyebrow { color: #ddff00; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; font-size: .73rem; display: flex; gap: 9px; align-items: center; }
.eyebrow span { display: inline-block; width: 26px; height: 2px; background: var(--gold); }
.address-panel, .form-card, .quote-card, .booking-summary {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}
.address-panel { margin-top: 30px; padding: 24px; max-width: 650px; }
.address-panel > label, .field > label { display: block; font-weight: 700; margin-bottom: 7px; font-size: .9rem; }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; left: 15px; top: 50%; width: 22px; height: 22px; transform: translateY(-50%); fill: none; stroke: #ddff00; stroke-width: 2; }
.input-with-icon input { padding-left: 48px; }
select { color-scheme: dark; }
select option { color: #ffffff; background: #141414; }
input, select, textarea {
  color-scheme: dark;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transition: border .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
input:focus, select:focus, textarea:focus { outline: 0; border-color: #ddff00; box-shadow: 0 0 0 4px rgba(221, 255, 0, 0.12); }
textarea { resize: vertical; }
.field-help, .field small { display: block; color: var(--muted); font-size: .76rem; margin-top: 6px; }
.field label em { float: right; color: #ddff00; font-style: normal; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.field-message { min-height: 22px; font-size: .8rem; margin-top: 5px; }
.field-message.good { color: #ddff00; }
.field-message.bad { color: var(--danger); }
.button {
  border: 0;
  border-radius: 12px;
  padding: 13px 21px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  transition: transform .18s, box-shadow .18s, opacity .18s;
  text-decoration: none;
}
.button.primary { color: #0a0a0a; background: #ddff00; box-shadow: 0 8px 20px rgba(221, 255, 0, 0.18); }
.button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 11px 25px rgba(221, 255, 0, 0.25); }
.button:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.button.wide { width: 100%; margin-top: 14px; }
.micro-trust { display: flex; gap: 22px; margin-top: 18px; font-size: .79rem; color: var(--muted); flex-wrap: wrap; }
.micro-trust span::first-letter { color: #ddff00; }
.hero-proof { position: relative; max-width: 440px; justify-self: end; }
.hero-proof > img { width: 100%; aspect-ratio: .86; object-fit: cover; object-position: top center; border-radius: 34px 34px 120px 34px; box-shadow: var(--shadow); }
.proof-card { width: 92%; margin: -74px 0 0 -34px; position: relative; padding: 22px; background: var(--card-solid); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.proof-card strong { display: block; margin: 4px 0 6px; }
.proof-card p { margin: 0; color: var(--muted); font-size: .82rem; }
/* Google review trust element */
.review-head { display: flex; align-items: center; gap: 10px; }
.review-head small { color: var(--muted); font-weight: 700; font-size: .74rem; }
.review-quote { margin: 0 0 9px; font-size: .92rem; line-height: 1.45; color: #ffffff; }
.review-by { font-size: .74rem; }
.stars { color: var(--gold); letter-spacing: .1em; }

.back { background: none; border: 0; padding: 10px 0; margin: 10px 0 8px; color: #ddff00; font-weight: 700; cursor: pointer; }
.section-heading { max-width: 760px; margin: 26px 0 28px; }
.section-heading.compact { margin-bottom: 22px; }
.section-heading h2, .confirmation h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.section-heading p { color: var(--muted); margin: 0; }
.form-card { padding: 30px; }
.field-grid { display: grid; gap: 18px; }
.field-grid.three { grid-template-columns: 1.4fr .8fr .8fr; }
.field-grid.two { grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 18px; }
.divider { height: 1px; background: var(--border); margin: 12px 0 24px; }
.lookup-notice { display: none; background: var(--mint); color: #ddff00; padding: 12px 15px; margin: -5px 0 22px; border-radius: 10px; font-size: .82rem; border: 1px solid rgba(221, 255, 0, 0.2); }
.lookup-notice.show { display: block; }
.error-box { display: none; color: var(--danger); background: rgba(255, 107, 94, 0.08); border: 1px solid rgba(255, 107, 94, 0.3); border-radius: 10px; padding: 11px 13px; margin: 10px 0; font-size: .83rem; }
.error-box.show { display: block; }

.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 28px; }
.choice-title { font-family: Manrope, "Inter", sans-serif; font-size: 1.03rem; margin: 0 0 12px; }
.choice-help { color: var(--muted); font-size: .82rem; margin-top: -5px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.choice-card {
  min-height: 180px;
  position: relative;
  text-align: left;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 17px;
  padding: 21px 18px;
  cursor: pointer;
  transition: .2s;
}
.choice-card:hover { transform: translateY(-3px); border-color: rgba(221, 255, 0, 0.4); box-shadow: var(--soft-shadow); }
.choice-card.selected { border-color: #ddff00; background: rgba(221, 255, 0, 0.07); box-shadow: 0 0 0 3px rgba(221, 255, 0, 0.10); }
.choice-card strong, .choice-card small { display: block; }
.choice-card small { color: var(--muted); margin-top: 7px; line-height: 1.4; }
.choice-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--mint); color: #ddff00; margin-bottom: 15px; font-size: 1.25rem; font-weight: 800; }
.pill { position: absolute; top: -10px; right: 12px; background: var(--gold); color: #1a1612; border-radius: 99px; padding: 4px 9px; text-transform: uppercase; letter-spacing: .06em; font-size: .58rem; font-weight: 800; }
.option-section { margin-top: 28px; animation: rise .25s ease; }
.frequency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.frequency-grid button { background: var(--card); border: 1.5px solid var(--border); border-radius: 13px; padding: 14px; cursor: pointer; }
.frequency-grid button strong, .frequency-grid button small { display: block; }
.frequency-grid button small { color: var(--muted); margin-top: 3px; }
.frequency-grid button.selected { border-color: #ddff00; background: rgba(221, 255, 0, 0.07); }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.addon-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 13px; background: var(--card); border: 1.5px solid var(--border); border-radius: 13px; cursor: pointer; }
.addon-row:has(input[type="checkbox"]:checked) { border-color: #ddff00; background: rgba(221, 255, 0, 0.07); }
.addon-row input[type="checkbox"], .check-card input { width: 19px; height: 19px; accent-color: #ddff00; }
.addon-row strong, .addon-row small { display: block; }
.addon-row small { color: var(--muted); font-size: .69rem; }
.addon-row b { color: #ddff00; font-size: .8rem; }
.addon-row .quantity { width: 72px; padding: 9px; }
.quote-card { position: sticky; top: 20px; padding: 26px; }
.quote-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; color: #ddff00; margin-bottom: 15px; }
.quote-empty { color: var(--muted); padding: 20px 0; }
.price-row { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding-bottom: 17px; border-bottom: 1px solid var(--border); }
.price-row span { font-weight: 700; }
.price-row strong { font: 800 2.2rem/1 Manrope, "Inter", sans-serif; color: #ddff00; }
.recurring-result { margin-top: 15px; background: rgba(221, 255, 0, 0.06); padding: 14px; border-radius: 12px; display: grid; grid-template-columns: 1fr auto; }
.recurring-result span { font-weight: 700; }
.recurring-result strong { color: #ddff00; }
.recurring-result small { grid-column: 1/-1; color: var(--muted); font-size: .7rem; }
.addon-summary { font-size: .76rem; color: var(--muted); margin-top: 13px; }
.addon-summary div { display: flex; justify-content: space-between; padding: 3px 0; }
.estimate-note { margin: 15px 0 4px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.manual-result strong { font: 800 1.35rem Manrope, "Inter", sans-serif; }
.manual-result p { color: var(--muted); font-size: .84rem; }

.booking-layout { display: grid; grid-template-columns: 1fr 340px; align-items: start; gap: 28px; }
.check-card { display: flex; align-items: center; gap: 12px; background: rgba(221, 255, 0, 0.06); border: 1px solid rgba(221, 255, 0, 0.25); border-radius: 13px; padding: 14px; margin-bottom: 17px; cursor: pointer; }
.check-card strong, .check-card small { display: block; }
.check-card small { color: var(--muted); }
.slot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.booking-summary { padding: 24px; position: sticky; top: 20px; }
.booking-summary h3 { margin: 0 0 4px; font-family: Manrope, "Inter", sans-serif; }
.summary-address { color: var(--muted); font-size: .78rem; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-line { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; font-size: .86rem; }
.summary-line.total { margin-top: 5px; padding-top: 15px; border-top: 1px solid var(--border); font-weight: 800; font-size: 1rem; }
.summary-recurring { background: rgba(221, 255, 0, 0.06); border-radius: 11px; padding: 11px; margin-top: 10px; font-size: .8rem; }
.submit-note { text-align: center; color: var(--muted); font-size: .7rem; }
.confirmation { max-width: 700px; margin: 70px auto; text-align: center; background: var(--card-solid); border: 1px solid var(--border); border-radius: 28px; padding: 46px; box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.confirmation .eyebrow { justify-content: center; }
.confirmation > p { color: var(--muted); }
.confirmation-icon { width: 68px; height: 68px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: #ddff00; font-size: 2rem; font-weight: 800; }
.confirmation-details { margin: 22px 0; padding: 16px; background: var(--mint-pale); border-radius: 13px; }
footer { max-width: 1120px; margin: 0 auto; padding: 20px 16px 34px; display: flex; justify-content: space-between; color: var(--muted); font-size: .76rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; min-height: auto; padding: 40px 0; }
  .hero-proof { max-width: 650px; justify-self: stretch; }
  .hero-proof > img { aspect-ratio: 1.5; object-position: top center; border-radius: 25px 25px 70px 25px; }
  .proof-card { width: calc(100% - 30px); margin: -52px auto 0; }
  .quote-layout, .booking-layout { grid-template-columns: 1fr; }
  .quote-card, .booking-summary { position: static; }
}

@media (max-width: 700px) {
  .site-header { padding: 14px 17px 8px; }
  .brand img { width: 135px; }
  .header-trust > span:not(.trust-dot) { display: none; }
  .header-trust { gap: 8px; font-size: .78rem; }
  .progress { margin-bottom: 5px; }
  .progress-item small { font-size: .62rem; }
  .shell { width: min(100% - 22px, 1120px); }
  .hero-grid { padding-top: 28px; }
  .hero-copy h1 { font-size: 2.55rem; }
  .hero-copy > p { font-size: 1rem; }
  .address-panel, .form-card, .quote-card { padding: 20px; border-radius: 17px; }
  .hero-proof > img { aspect-ratio: 1.15; object-position: top center; }
  .micro-trust { gap: 10px 16px; }
  .field-grid.three, .field-grid.two, .choice-grid, .frequency-grid, .addon-grid, .slot-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 142px; }
  .addon-row { min-height: 68px; }
  .section-heading h2 { font-size: 2.15rem; }
  .quote-card { margin-bottom: 10px; }
  .confirmation { margin: 35px auto; padding: 30px 20px; }
  footer { flex-direction: column; align-items: center; gap: 5px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- cheeky authenticity badge on family photo --- */
.real-photo-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}
.real-photo-badge svg { color: #ddff00; flex-shrink: 0; }
