/* ==========================================================================
   Doris Cleaning - design tokens
   Layout/type cloned from source template (gogleem.com); palette swapped to
   match palmettomaids.com's two visible brand colors - terracotta accent
   #dd4a38 and charcoal #272727 - so the site reads distinctly from the
   original clone. Remaining accents (star gold, pale tints, muted grey)
   are warm complements chosen to sit naturally alongside those two.
   Futura PT -> Poppins, Dharma Gothic -> Anton (free equivalents; the
   originals are commercial-licensed fonts we can't redistribute).
   ========================================================================== */

:root {
  --color-primary: #DD4A38;
  --color-primary-dark: #BC3F30;
  --color-navy: #272727;
  --color-yellow: #E0A526;
  --color-yellow-light: #EFC873;
  --color-light-blue: #C9A79A;
  --color-bg-tint: #f2f0ee;
  --color-bg-blue-tint: #f4e9e4;
  --color-white: #ffffff;
  --color-text: #222222;
  --color-text-light: #666666;
  --color-text-muted: #8C8C89;
  --color-border: #eeeeee;

  --font-display: 'Anton', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1180px;
  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(39, 39, 39, 0.06);
  --shadow-md: 0 10px 30px rgba(39, 39, 39, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.65;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--color-navy);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.section {
  padding: 80px 0;
}
.section--tint { background: var(--color-bg-tint); }
.section--navy { background: var(--color-navy); color: var(--color-white); }
/* h1 belongs here too - the pricing page header is an h1, and without it the
   heading renders in navy-on-navy and disappears. */
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--color-white); }
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { color: var(--color-text-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #141414; }
.btn--accent {
  background: var(--color-yellow);
  color: var(--color-navy);
}
.btn--accent:hover { background: var(--color-yellow-light); }
.btn--outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn--outline:hover { background: var(--color-white); color: var(--color-navy); }
.btn--outline-navy {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn--outline-navy:hover { background: var(--color-navy); color: var(--color-white); }
.btn--block { width: 100%; justify-content: center; }
.btn--cyan {
  background: var(--color-primary);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 17px 34px;
}
.btn--cyan:hover { background: var(--color-primary-dark); }
.btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 17px 34px;
}
.btn--whatsapp:hover { background: #1ebe57; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.topbar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--color-white); }
.topbar__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contact span i { color: var(--color-primary); margin-right: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
}
.brand img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 100%;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.brand span { color: var(--color-primary-dark); }
.brand .brand__mark { color: var(--color-white); }

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__list {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav__list a {
  padding: 8px 0;
  position: relative;
}
.nav__list a:hover,
.nav__list a.is-active { color: var(--color-primary-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-navy);
  cursor: pointer;
}

@media (max-width: 420px) {
  /* Keep clear of the menu toggle on the narrowest phones */
  .site-header .brand img { height: 28px; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav__list a { display: block; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
  .nav .btn { margin-top: 16px; width: 100%; justify-content: center; }
}

/* ==========================================================================
   Hero - full-bleed background photo, dark overlay, quote form up front
   (matches source template)
   ========================================================================== */
.hero-full {
  position: relative;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
}
.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(39,39,39,0.82);
  z-index: 0;
}
.hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(39,39,39,0.55) 0%, rgba(39,39,39,0) 22%, rgba(39,39,39,0) 78%, rgba(39,39,39,0.75) 100%);
  z-index: 0;
}
.hero-full .container { position: relative; z-index: 2; max-width: 1000px; }
.hero-full__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--color-yellow-light);
}
.hero-full__rating i { color: var(--color-yellow); }
.hero-full h1 {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  max-width: 20ch;
}
.hero-full p.lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  max-width: 680px;
}
.hero-full__form-card {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 30px 32px;
  max-width: 820px;
  margin-top: 40px;
}
.quick-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
}
.quick-form__row .field { flex: 1 1 160px; margin-bottom: 0; }
.quick-form__row .field--grow { flex: 2 1 260px; }
.quick-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.quick-form__actions .btn { flex: 1 1 200px; justify-content: center; }
@media (max-width: 700px) {
  .hero-full__form-card { padding: 24px 20px; }
}

/* ==========================================================================
   Trust badges strip
   ========================================================================== */
.trust-badges {
  background: var(--color-navy);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-badges__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  row-gap: 12px;
}
.trust-badges__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-badges__item i { color: var(--color-primary); font-size: 1.1rem; }

/* ==========================================================================
   Pricing & Guarantee
   ========================================================================== */
.pricing-guarantee {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-guarantee__col {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}
.pricing-guarantee__col i {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  display: block;
}
.pricing-guarantee__col p { color: var(--color-text-light); margin: 0; }
.pricing-guarantee__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-decoration: none;
}
.pricing-guarantee__link:hover { text-decoration: underline; }
/* reset the big block icon style inherited from the column heading icon */
.pricing-guarantee__link i {
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0;
  transition: transform 0.2s ease;
}
.pricing-guarantee__link:hover i { transform: translateX(3px); }
@media (max-width: 760px) {
  .pricing-guarantee { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Founder / story block
   ========================================================================== */
.story-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.story-block__photo {
  margin: 0;
  text-align: center;
}
.story-block__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}
.story-block__photo figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.story-block__copy p { color: var(--color-text-light); }
.story-block__copy p strong { color: var(--color-navy); }
@media (max-width: 700px) {
  .story-block { grid-template-columns: 1fr; text-align: center; }
  .story-block__photo { max-width: 240px; margin: 0 auto; }
}

/* ==========================================================================
   Areas we serve
   ========================================================================== */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
}
.area-list li i { color: var(--color-primary-dark); }

/* ==========================================================================
   Before/After drag-to-reveal slider
   (used directly inside .showcase-panel, which supplies the sized,
   rounded, drop-shadowed box)
   ========================================================================== */
.ba-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}
.ba-slider__after,
.ba-slider__before {
  position: absolute;
  inset: 0;
}
.ba-slider__after img,
.ba-slider__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-slider__before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-slider__before img {
  /* Placeholder "before" look - same photo, dulled down, until real
     before/after photography replaces these images */
  filter: grayscale(55%) brightness(0.72) contrast(0.95) saturate(0.8);
}
/* Sliders holding genuine paired photography show both frames untouched */
.ba-slider--real .ba-slider__before img { filter: none; }
.ba-slider__label {
  position: absolute;
  top: 14px;
  z-index: 2;
  background: rgba(39,39,39,0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  pointer-events: none;
}
.ba-slider__label--before { left: 14px; }
.ba-slider__label--after { right: 14px; }
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transform: translateX(-50%);
  z-index: 3;
}
.ba-slider__handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  cursor: ew-resize;
}
.ba-slider__handle-icon:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ==========================================================================
   "Why Doris Cleaning" band - full-width colour block (matches source)
   ========================================================================== */
.why-band {
  background: var(--color-text-muted);
  text-align: center;
  padding: 110px 0;
}
.why-band .eyebrow { color: rgba(255,255,255,0.75); }
.why-band h2 { color: var(--color-white); }
.why-band__statement {
  max-width: 1000px;
  margin: 0 auto 90px;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.4;
  color: #f2f2f2;
  font-weight: 500;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.why-item i {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 22px;
  display: block;
}
.why-item h3 {
  color: #f2f2f2;
  text-transform: uppercase;
  font-size: 1.3rem;
}
.why-item p {
  color: #e7e7e7;
  opacity: 0.9;
  font-size: 1rem;
  margin-top: 12px;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Services showcase - alternating giant image + overlapping card
   (this is the signature layout from the source template)
   ========================================================================== */
.showcase { padding: 60px 0 10px; overflow: hidden; }
.showcase-row {
  display: flex;
  align-items: center;
  margin-bottom: 130px;
}
.showcase-row:last-child { margin-bottom: 40px; }
.showcase-row--reverse { flex-direction: row-reverse; }

.showcase-img {
  width: 54%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.showcase-panel {
  aspect-ratio: 768 / 844;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  background: var(--color-bg-tint);
}

.showcase-card {
  width: 54%;
  margin-left: -11%;
  background: var(--color-bg-blue-tint);
  padding: 70px 60px;
  box-shadow: 0 0 25px rgba(0,0,0,0.07);
  position: relative;
  z-index: 2;
}
.showcase-row--reverse .showcase-card { margin-left: 0; margin-right: -11%; }
.showcase-card .eyebrow-tiny {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.showcase-card h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 22px;
}
.showcase-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 0;
}
.showcase-card .btn { margin-top: 32px; }

@media (max-width: 860px) {
  .showcase-row,
  .showcase-row--reverse { flex-direction: column; margin-bottom: 60px; }
  .showcase-img { width: 100%; }
  .showcase-card {
    width: 92%;
    margin: -60px auto 0;
    padding: 40px 30px;
  }
  .showcase-row--reverse .showcase-card { margin: -60px auto 0; }
}

/* ==========================================================================
   Process / steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step { text-align: center; }
.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-bg-blue-tint);
  -webkit-text-stroke: 1px var(--color-primary);
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Looping card line (Why Us / Testimonials)
   ========================================================================== */
/* Full-bleed single line of cards that loops forever. The track holds two
   identical sets; shifting it left by exactly one set + one gap lands the
   second set where the first started, so the reset is invisible. */
.loop-marquee {
  --marquee-gap: 24px;
  --marquee-speed: 60s;
  overflow: hidden;
  padding: 4px 0 8px;   /* room for the card shadow */
  /* soften both edges so cards fade in and out instead of clipping */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.loop-track {
  display: flex;
  align-items: stretch;
  gap: var(--marquee-gap);
  width: max-content;
  animation: loop-scroll var(--marquee-speed) linear infinite;
}
.loop-set {
  display: flex;
  align-items: stretch;
  gap: var(--marquee-gap);
}
@keyframes loop-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - (var(--marquee-gap) / 2))); }
}
/* let people stop it to read */
.loop-marquee:hover .loop-track,
.loop-marquee:focus-within .loop-track {
  animation-play-state: paused;
}

/* Cards currently in the line: a claim the business can stand behind. */
.trust-card {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.trust-card i {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-navy);
}
.trust-card p {
  font-size: 0.94rem;
  color: var(--color-text-light);
  margin: 0;
}
.loop-invite {
  text-align: center;
  margin-top: 26px;
  font-size: 0.94rem;
  color: var(--color-text-light);
}
.loop-invite a { font-weight: 600; }

/* Review cards - unused until real reviews arrive, then swap them into
   .loop-set in place of the .trust-card blocks. */
.testimonial-card {
  flex: 0 0 340px;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--color-yellow); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card .stars .star--dim { color: #d5d2cd; }
.testimonial-card p.quote {
  font-style: italic;
  color: var(--color-text-light);
}
.testimonial-card .who {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.9rem;
}
.testimonial-card .placeholder-flag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: var(--color-bg-blue-tint);
  padding: 4px 10px;
  border-radius: 100px;
}
@media (max-width: 600px) {
  .loop-marquee { --marquee-gap: 16px; --marquee-speed: 45s; }
  .trust-card { flex-basis: 265px; padding: 24px; }
  .testimonial-card { flex-basis: 280px; padding: 24px; }
}
/* No motion: drop the animation and let the line be swiped instead. */
@media (prefers-reduced-motion: reduce) {
  .loop-track {
    animation: none;
    width: auto;
  }
  .loop-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .loop-set[aria-hidden="true"] { display: none; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: var(--color-white); }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ==========================================================================
   Contact details
   ========================================================================== */
/* Four equal cards on one row. Equal widths (1fr, not auto-fit) keep the
   column edges lined up even though the address is far longer than the hours. */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-bg-tint);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-size: 1.1rem;
}
.contact-card__label {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-card__value {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}
a.contact-card__value:hover { color: var(--color-primary-dark); }
/* the email is one long unbreakable token - let it wrap rather than overflow */
.contact-card__value--email { overflow-wrap: anywhere; }
.contact-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-decoration: none;
  white-space: nowrap;   /* never split "Chat on WhatsApp" across lines */
}
.contact-card__action:hover { text-decoration: underline; }
/* push the WhatsApp link to the bottom so all four cards end on the same line */
.contact-card__action { margin-top: auto; padding-top: 12px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { padding: 22px; }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-grid--full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--color-navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-bg-tint);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}
.field-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 24px;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--color-primary); }
.footer-sep { opacity: 0.45; margin: 0 2px; }
.footer-brand .brand { color: var(--color-white); margin-bottom: 14px; }
.footer-brand .brand img { height: 38px; }
.footer-brand .brand span { color: var(--color-primary); }
.footer-brand .brand .brand__mark { color: var(--color-white); }
.footer-brand p { font-size: 0.9rem; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pricing page - main services pricing table
   ========================================================================== */
.pricing-table-wrap {
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}
.pricing-table thead th {
  background: var(--color-navy);
  color: var(--color-white);
  text-align: left;
  padding: 16px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.pricing-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--color-bg-tint); }
.pricing-table .service-name { font-weight: 700; color: var(--color-navy); }
.pricing-table .price { font-weight: 700; color: var(--color-primary-dark); white-space: nowrap; }
.pricing-table .suitable-for,
.pricing-table .est-time { color: var(--color-text-light); font-size: 0.92rem; }
.pricing-table .book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background .15s ease;
}
.pricing-table .book-btn:hover { background: var(--color-primary-dark); }

/* ==========================================================================
   Pricing page - recurring plans strip
   ========================================================================== */
.recurring-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.recurring-plans__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.recurring-plans__pct {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-primary);
  line-height: 1;
}
.recurring-plans__label {
  margin-top: 8px;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .recurring-plans { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pricing page - detailed cleaning checklist
   ========================================================================== */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.checklist-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(39,39,39,0.04), 0 12px 28px -18px rgba(39,39,39,0.28);
  padding: 34px 38px 26px;
}
.checklist-card--wide { grid-column: 1 / -1; }
.checklist-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--color-navy);
}
.checklist-card__header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
/* the count reads as a spec-sheet badge rather than loose red text */
.checklist-card__points {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--color-bg-blue-tint);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
/* One column per card, deliberately. The old layout was a two-column grid, so
   every row stood as tall as its taller cell and short items left large ragged
   voids. At full card width almost every item fits on a single line, which
   makes the rows uniform and the divider rules line up all the way down. */
.checklist-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* The wide card carries the long add-on list, and every entry there is short
   enough to sit on one line - so two columns stay uniform and halve its height. */
.checklist-card--wide .checklist-card__list {
  columns: 2;
  column-gap: 56px;
  column-rule: 1px solid var(--color-border);
}
.checklist-card--wide .checklist-card__list li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
/* opt a wide card back to one column - for short lists whose entries are long
   enough to wrap, where two columns would split unevenly */
.checklist-card--wide .checklist-card__list--single {
  columns: 1;
  column-rule: none;
  max-width: 760px;
  margin: 0 auto;
}
.checklist-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 0;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.45;
}
/* hairline check in a soft disc - lines up with the first line of text */
.checklist-card__list li i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--color-bg-blue-tint);
  color: var(--color-primary);
  font-size: 0.72rem;
}
@media (max-width: 860px) {
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-card { padding: 28px 24px 20px; }
}
@media (max-width: 860px) {
  .checklist-card--wide .checklist-card__list { columns: 1; column-rule: none; }
}
@media (max-width: 560px) {
  .checklist-card__list li { font-size: 0.89rem; padding: 10px 0; }
  .checklist-card__header h3 { font-size: 1.12rem; }
}

/* ==========================================================================
   Pricing page - extra services checklist
   ========================================================================== */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.extras-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
}
.extras-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Pricing page - what we don't do
   ========================================================================== */
.dont-do {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-bg-tint);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
}
.dont-do p { color: var(--color-text-light); margin: 0; }

/* ==========================================================================
   Pricing page - explore services grid
   ========================================================================== */
.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-mini-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.service-mini-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-mini-card i {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-bg-blue-tint);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-mini-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-mini-card p { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 0; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-note {
  display: inline-block;
  background: #fbeed9;
  border: 1px dashed var(--color-yellow);
  color: #8a5a12;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 6px;
}
