:root {
  --ink: #10233b;
  --muted: #5f6f7d;
  --line: #dce5e7;
  --paper: #ffffff;
  --mist: #f4f8f7;
  --teal: #047d78;
  --teal-dark: #045f5b;
  --coral: #f2a33a;
  --leaf: #2f8b2f;
  --navy: #172a46;
  --shadow: 0 18px 45px rgba(16, 35, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 35, 59, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  flex: 0 0 auto;
  width: 86px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #263e59;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover,
.contact-options a:hover {
  text-decoration: underline;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 78vh;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 26, 46, 0.9) 0%, rgba(8, 26, 46, 0.7) 45%, rgba(8, 26, 46, 0.16) 100%),
    url("assets/domestic-cleaning-hero.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(9, 24, 42, 0.52), rgba(9, 24, 42, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo {
  display: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff08a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.slogan {
  margin-bottom: 18px;
  color: #8ff08a;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--leaf);
  box-shadow: 0 12px 26px rgba(47, 139, 47, 0.28);
}

.button.primary:hover {
  background: #247025;
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.full-width {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 140px));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 1.3rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: var(--paper);
  font-weight: 800;
}

.trust-icon,
.service-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.trust-icon {
  color: var(--leaf);
  background: #e5f5f3;
}

.trust-icon svg,
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 720px;
}

.services-section {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 240px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p,
.package-card p,
.proof-grid p,
.faq-grid p,
.review-ready-card p,
.process-list p,
.contact-copy p,
.fine-print {
  color: var(--muted);
}

.service-icon {
  margin-bottom: 24px;
  color: #ffffff;
  background: var(--navy);
}

.feature-service {
  border-color: rgba(47, 139, 47, 0.32);
  box-shadow: 0 18px 36px rgba(47, 139, 47, 0.12);
}

.service-card:nth-child(2) .service-icon {
  background: #1272c4;
}

.service-card:nth-child(3) .service-icon {
  background: var(--leaf);
}

.service-card:nth-child(4) .service-icon {
  background: var(--teal);
}

.service-card:nth-child(5) .service-icon {
  background: #16599c;
}

.service-card:nth-child(6) .service-icon {
  background: #4f8a5b;
}

.packages-section {
  background: #ffffff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 360px;
  padding: 0 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 35, 59, 0.08);
}

.package-photo {
  width: calc(100% + 48px);
  height: 190px;
  margin: 0 -24px 22px;
  object-fit: cover;
  background: #e7eef0;
}

.highlight-package {
  border-color: rgba(47, 139, 47, 0.38);
  box-shadow: 0 18px 42px rgba(47, 139, 47, 0.16);
}

.package-kicker {
  margin-bottom: 14px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 20px;
  padding-left: 20px;
  color: #23394f;
}

.package-card li::marker {
  color: var(--leaf);
}

.text-link {
  align-self: end;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eco-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(54px, 8vw, 88px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: linear-gradient(135deg, #0f2d4f 0%, #047d78 56%, #2f8b2f 100%);
}

.eco-section .eyebrow {
  color: #d9ffd7;
}

.eco-section p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.proof-section {
  background: var(--mist);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.photo-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.photo-proof-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  background: #dce5e7;
  border-radius: 8px;
}

.photo-proof-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.photo-proof-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(15, 45, 79, 0.86);
  border-radius: 8px;
  font-weight: 900;
}

.proof-grid article {
  min-height: 240px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--leaf);
  border-radius: 8px;
}

.proof-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(54px, 8vw, 88px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: var(--navy);
}

.reviews-section .eyebrow {
  color: #8ff08a;
}

.review-ready-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.review-stars {
  margin-bottom: 14px;
  color: #f2a33a;
  font-size: 1.8rem;
  font-weight: 900;
}

.review-ready-card p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-section {
  background: #ffffff;
}

.areas-section {
  background: #ffffff;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--navy);
  background: #e9f8e8;
  border: 1px solid rgba(47, 139, 47, 0.24);
  border-radius: 8px;
  font-weight: 800;
}

.faq-section {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.quote-form,
.estimate-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 0;
  background: #ffffff;
}

legend {
  padding: 0;
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #22384f;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid #cddadd;
  border-radius: 8px;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(47, 139, 47, 0.16);
}

.split-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.55fr);
  gap: 14px;
}

.input-with-unit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  background: #fbfdfc;
  border: 1px solid #cddadd;
  border-radius: 8px;
}

.input-with-unit input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.input-with-unit span {
  padding: 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.check-row {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 700;
}

.check-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--leaf);
}

.estimate-panel {
  position: sticky;
  top: 92px;
  padding: 26px;
}

.panel-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.price-line span:first-child {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}

.monthly-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
}

.monthly-line span:first-child {
  color: var(--leaf);
  font-weight: 900;
}

.promo-status {
  margin: -8px 0 18px;
  padding: 10px 12px;
  color: #174f1a;
  background: #e9f8e8;
  border: 1px solid rgba(47, 139, 47, 0.24);
  border-radius: 8px;
  font-weight: 900;
}

.estimate-details {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.estimate-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.estimate-details span {
  color: var(--muted);
}

.fine-print {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.process-section {
  background: var(--navy);
  color: #ffffff;
}

.process-section .section-heading p,
.process-list p {
  color: rgba(255, 255, 255, 0.74);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #ffffff;
  background: var(--leaf);
  border-radius: 8px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--mist);
}

.contact-copy {
  max-width: 620px;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 900;
}

.contact-options a {
  color: var(--leaf);
}

.contact-form {
  padding: 24px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--leaf);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #0b1726;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  color: #ffffff;
  background: #25d366;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 35, 59, 0.24);
  font-weight: 900;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-float:hover {
  background: #1fb85a;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .service-grid,
  .package-grid,
  .photo-proof-grid,
  .quote-layout,
  .process-list,
  .contact-section,
  .eco-section,
  .proof-grid,
  .reviews-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand img {
    width: 58px;
    height: 50px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 82vh;
    padding: 104px 18px 42px;
    background-position: 60% center;
  }

  .hero-stats,
  .trust-band,
  .split-fields {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .trust-item,
  .service-card,
  .process-list li {
    min-height: auto;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  fieldset,
  .estimate-panel,
  .contact-form {
    padding: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 14px;
  }

  .whatsapp-float span {
    display: none;
  }
}
