/* ============================================
   Go Cleaners — Stripe-inspired stylesheet
   ============================================ */

:root {
  /* Colors */
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-gradient: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  --hero-gradient: linear-gradient(135deg, #0a2540 0%, #1a3a6c 50%, #2a8fcf 100%);
  --ink: #0a2540;          /* Stripe-style deep navy */
  --ink-soft: #425466;
  --muted: #697386;
  --line: #e3e8ee;
  --line-soft: #f1f4f8;
  --brand: #1fb6ff;        /* From Go Cleaners logo cyan */
  --brand-dark: #0a8ed1;
  --brand-deep: #0d4f8a;
  --accent: #4cd6b1;       /* From logo green bubbles */
  --accent-dark: #2eb893;
  --warning: #ffb81c;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04), 0 1px 3px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(10, 37, 64, 0.06), 0 2px 4px -1px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  --shadow-xl: 0 25px 50px -12px rgba(50, 50, 93, 0.15), 0 10px 24px rgba(0, 0, 0, 0.08);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --container: 1180px;
  --gutter: 24px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.03em; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-gradient { background: var(--bg-gradient); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--brand-deep);
  background: rgba(31, 182, 255, 0.12);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--ink-soft); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.eyebrow { color: var(--brand-dark); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: #14375f; color: var(--white); box-shadow: var(--shadow-md); }
.btn-brand {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(31, 182, 255, 0.35);
}
.btn-brand:hover { background: var(--brand-dark); color: var(--white); box-shadow: 0 6px 20px rgba(31, 182, 255, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { background: var(--bg-soft); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 16px; }
.btn-ghost:hover { color: var(--brand-dark); }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1fb155; color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn .icon { width: 18px; height: 18px; }

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 10px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-info { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-info .item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info .icon { width: 14px; height: 14px; color: var(--brand); }
.topbar-info a { color: rgba(255, 255, 255, 0.85); }
.topbar-info a:hover { color: var(--brand); }
.topbar-actions { display: flex; align-items: center; gap: 14px; }
.topbar-actions a { color: rgba(255, 255, 255, 0.85); display: inline-flex; align-items: center; gap: 6px; }
.topbar-actions a:hover { color: var(--white); }
.topbar-actions .icon { width: 16px; height: 16px; }
.wa-pill {
  background: #25d366;
  color: var(--white) !important;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
}
.wa-pill:hover { background: #1fb155; color: var(--white) !important; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 44px; width: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-list a:hover { background: var(--bg-soft); color: var(--brand-dark); }
.nav-list a.active { color: var(--brand-dark); }
.nav-list a.active::after {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto 0;
  background: var(--brand);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--ink);
}
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform var(--t-base), opacity var(--t-base); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-gradient);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(31, 182, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(76, 214, 177, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 182, 255, 0.1);
  color: var(--brand-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a6c 60%, #2a8fcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 0.875rem; color: var(--muted); }
.hero-trust .item { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .icon { width: 18px; height: 18px; color: var(--accent-dark); }

/* Hero carousel */
.carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--ink);
  aspect-ratio: 4 / 3;
}
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: var(--white);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity var(--t-slow), transform var(--t-slow);
  background-size: cover;
  background-position: center;
}
.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0) 30%, rgba(10, 37, 64, 0.85) 100%);
}
.carousel-slide.is-active { opacity: 1; transform: scale(1); }
.carousel-slide-content { position: relative; z-index: 1; }
.carousel-slide h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 6px; }
.carousel-slide p { color: rgba(255,255,255,0.85); margin: 0; }
.carousel-slide .pill {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.carousel-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.carousel-btn:hover { background: var(--white); transform: scale(1.06); }
.carousel-dots {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-fast), width var(--t-fast);
}
.carousel-dot.is-active { background: var(--white); width: 40px; }

/* ---------- Logo strip / trust ---------- */
.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
}
.trust-strip .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.trust-stat .num { font-size: 2rem; font-weight: 800; color: var(--ink); }
.trust-stat .label { font-size: 0.875rem; color: var(--muted); margin-top: 4px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .icon-box svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.card-link:hover { gap: 8px; }

/* Service card with image */
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,37,64,0.4) 100%);
}
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); margin: 0 0 16px; flex: 1; }

/* About / split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}
.split h2 { margin-bottom: 16px; }
.split .checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.team-stats.team-stats-2 { grid-template-columns: repeat(2, 1fr); }
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 8px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.team-stat { text-align: center; }
.team-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.team-stat .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 540px) {
  .team-stats { grid-template-columns: 1fr; gap: 10px; padding: 14px 16px; }
  .team-stat { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
  .team-stat .label { margin-top: 0; }
}
.split .checklist li,
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}
.split .checklist .check,
.checklist .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(76, 214, 177, 0.15);
  color: var(--accent-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.split .checklist svg,
.checklist .check svg { width: 12px; height: 12px; stroke-width: 3; }

/* Promo banner */
.promo-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(76, 214, 177, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.promo-banner h2 { color: var(--white); margin-bottom: 8px; }
.promo-banner h2 .highlight { color: var(--accent); }
.promo-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.promo-banner .btn { position: relative; z-index: 1; }

/* Why us */
.why-card {
  text-align: center;
  padding: 32px 24px;
}
.why-card .icon {
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center; justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(31, 182, 255, 0.32);
  transform: rotate(-4deg);
  transition: transform var(--t-base);
}
.why-card .icon svg {
  width: 32px; height: 32px;
  transform: rotate(4deg);
}
.why-card:hover .icon {
  transform: rotate(0deg) scale(1.05);
}
.why-card .icon-3d {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(31, 182, 255, 0.28));
  transition: transform var(--t-base);
}
.why-card:hover .icon-3d {
  transform: translateY(-4px) scale(1.06);
}
.why-card .icon-photo {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px rgba(31, 182, 255, 0.35), 0 14px 28px rgba(10, 37, 64, 0.12);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.why-card .icon-photo--contain {
  object-fit: contain;
  padding: 14px;
}
.why-card:hover .icon-photo {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 0 2px rgba(31, 182, 255, 0.55), 0 18px 32px rgba(10, 37, 64, 0.18);
}
.why-card .num {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(31, 182, 255, 0.3);
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial .stars {
  display: flex;
  gap: 2px;
  color: var(--warning);
  margin-bottom: 16px;
}
.testimonial .stars svg { width: 18px; height: 18px; }
.testimonial blockquote {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial .author .name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.testimonial .author .source { font-size: 0.8rem; color: var(--muted); }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: scale(1.02);
}
.pricing-card.featured h3,
.pricing-card.featured .price-num { color: var(--white); }
.pricing-card.featured .price-meta,
.pricing-card.featured ul li { color: rgba(255,255,255,0.8); }
.pricing-card.featured .badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--brand);
  color: var(--white);
}
.pricing-card .badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(76,214,177,0.15);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.pricing-card h3 { margin-bottom: 20px; font-size: 1.25rem; }
.pricing-card .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pricing-card .price-num { font-size: 2.75rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.pricing-card .price-suffix { font-weight: 600; color: var(--muted); }
.pricing-card .price-meta { color: var(--muted); font-size: 0.875rem; margin-bottom: 24px; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.pricing-card ul li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent-dark); margin-top: 3px; }
.pricing-card.featured ul li svg { color: var(--accent); }
.pricing-card .btn { width: 100%; }

/* Blog cards */
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card .media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .date { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { color: var(--ink-soft); margin: 0 0 16px; font-size: 0.95rem; flex: 1; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item.open { border-color: var(--brand); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background var(--t-fast), transform var(--t-base);
}
.faq-item.open .faq-question .toggle { background: var(--brand); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) ease;
}
.faq-answer-inner { padding: 0 24px 22px; color: var(--ink-soft); }

/* Page header (sub-pages) */
.page-header {
  background: var(--bg-gradient);
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(31, 182, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { margin-bottom: 12px; display: inline-block; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--ink-soft); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }
.breadcrumb { color: var(--muted); font-size: 0.875rem; margin-top: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand-dark); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31, 182, 255, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(31,182,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: var(--white); margin-bottom: 20px; }
.contact-info ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 16px; }
.contact-info li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.85); }
.contact-info li .ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.contact-info li svg { width: 18px; height: 18px; }
.contact-info li .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }
.contact-info li .val { color: var(--white); font-weight: 500; }
.contact-info li a { color: var(--white); }
.contact-info li a:hover { color: var(--brand); }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.alert-success { background: rgba(76,214,177,0.15); color: #1a7a5e; border: 1px solid rgba(76,214,177,0.3); }
.alert-error { background: rgba(255,107,107,0.1); color: #c0392b; border: 1px solid rgba(255,107,107,0.25); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover { background: var(--brand); transform: translateY(-2px); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.uen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}
.uen-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base), background var(--t-fast);
  z-index: 89;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--brand-dark); }
.scroll-top svg { width: 18px; height: 18px; }

/* ---------- MOM license badge ---------- */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.license-badge .seal {
  width: 96px;
  height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.license-badge .seal svg { width: 24px; height: 24px; }
.license-badge .seal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.license-badge .text .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-dark); }
.license-badge .text .val { font-weight: 600; color: var(--ink); }

/* ---------- Team portrait (studio shot) ---------- */
.team-portrait {
  max-width: 560px;
  margin: 0 auto 56px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.08);
  text-align: center;
}
.team-portrait picture,
.team-portrait img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.team-portrait figcaption {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 720px) {
  .team-portrait { max-width: 100%; margin-bottom: 36px; border-radius: 14px; }
  .team-portrait figcaption { font-size: 12px; padding: 12px 16px; }
}

/* ---------- Team grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card .photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center top;
  background-color: var(--bg-soft);
}
.team-card .name { font-weight: 700; color: var(--ink); margin-top: 16px; font-size: 1rem; }
.team-card .role { color: var(--muted); font-size: 0.8125rem; padding: 0 12px; }

@media (max-width: 1100px) { .team-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .team-grid-5 { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

/* ---------- Team support pills ---------- */
.team-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.support-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.support-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
}
.support-icon svg { width: 20px; height: 20px; }
.support-title { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.support-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 900px) { .team-support-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.floating-wa:hover,
.floating-wa:focus-visible {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37,211,102,0.55);
}
.floating-wa:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.floating-wa svg { width: 28px; height: 28px; position: relative; z-index: 2; }

/* Pulsing ring around the bubble */
.floating-wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: 1;
  animation: floatingWaRing 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes floatingWaRing {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.55); opacity: 0;    }
  100% { transform: scale(1.55); opacity: 0;    }
}

/* Small green "online" dot in the corner */
.floating-wa-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px; height: 12px;
  background: #b9ffce;
  border: 2px solid #25d366;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(185,255,206,0.85);
  animation: floatingWaDot 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes floatingWaDot {
  0%   { box-shadow: 0 0 0 0 rgba(185,255,206,0.85); }
  70%  { box-shadow: 0 0 0 8px rgba(185,255,206,0);  }
  100% { box-shadow: 0 0 0 0 rgba(185,255,206,0);    }
}

/* "We reply in minutes" tooltip */
.floating-wa-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink, #0a2540);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 12px 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(10,37,64,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 4;
}
.floating-wa-tip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--ink, #0a2540);
  border-radius: 2px;
}
.floating-wa-tip-pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.85);
  animation: floatingWaDot 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.floating-wa:hover .floating-wa-tip,
.floating-wa:focus-visible .floating-wa-tip,
.floating-wa.is-nudged .floating-wa-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .floating-wa-ring,
  .floating-wa-dot,
  .floating-wa-tip-pulse { animation: none; }
  .floating-wa-ring { display: none; }
  .floating-wa-tip { transition: opacity 120ms linear; }
}

@media (max-width: 600px) {
  .floating-wa { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .floating-wa svg { width: 26px; height: 26px; }
  .floating-wa-tip { font-size: 0.75rem; padding: 7px 10px 7px 8px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding: 56px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .topbar { font-size: 0.78rem; padding: 8px 0; }
  .topbar-info { gap: 14px; }
  .topbar-info .item:nth-child(2) { display: none; }
  .nav-list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base), opacity var(--t-base);
  }
  .nav-list.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list a { padding: 12px 14px; }
  .nav-list a.active::after { display: none; }
  .nav-list a.active { background: var(--bg-soft); }
  .nav-toggle { display: inline-flex; flex-direction: column; }
  .nav-cta .btn:not(.wa-pill):not(.nav-toggle) { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .promo-banner { padding: 32px 24px; }
  .carousel-slide { padding: 24px; }
  .carousel-slide h3 { font-size: 1.3rem; }
}

/* ---------- Blog post (single article) ---------- */
.post-article { max-width: 760px; margin: 0 auto; }
.post-hero { width: 100%; aspect-ratio: 16/8; background-size: cover; background-position: center; border-radius: var(--radius-lg); margin-bottom: 32px; box-shadow: var(--shadow-md); }
.post-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.post-content { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.post-content h2 { color: var(--ink); font-size: 1.5rem; margin: 40px 0 14px; }
.post-content h3 { color: var(--ink); font-size: 1.2rem; margin: 28px 0 10px; }
.post-content p { margin: 0 0 18px; }
.post-content ul, .post-content ol { padding-left: 22px; margin: 0 0 20px; }
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--ink); }
.post-content a { color: var(--brand-dark); }
.post-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; color: var(--brand-dark); font-weight: 500; }
.post-back:hover { color: var(--brand); }
.post-cta { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; margin-top: 48px; text-align: center; }
.post-cta h3 { margin: 0 0 8px; color: var(--ink); }
.post-cta p { color: var(--ink-soft); margin: 0 0 18px; }

/* Google Reviews credibility strip on testimonials page */
.google-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}
.google-strip .g-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-soft);
}
.google-strip .g-meta { flex: 1 1 auto; min-width: 0; }
.google-strip .g-stars { display: inline-flex; align-items: center; gap: 4px; }
.google-strip .g-stars svg { width: 18px; height: 18px; }
.google-strip .g-stars strong { margin-left: 6px; color: var(--ink); font-size: 1rem; }
.google-strip .g-text { color: var(--ink-soft); font-size: 0.92rem; margin-top: 2px; }
.google-strip .btn { flex: 0 0 auto; }
@media (max-width: 640px) {
  .google-strip { flex-direction: column; text-align: center; gap: 12px; padding: 18px; }
  .google-strip .g-stars { justify-content: center; }
}

/* Original Google Review screenshots gallery */
.reviews-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reviews-gallery .review-shot {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.reviews-gallery .review-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.reviews-gallery .review-shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .reviews-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reviews-gallery { grid-template-columns: 1fr; } }

/* ---------- Cleaners marquee (testimonials page) ---------- */
.cleaners-marquee-section {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}
.cleaners-marquee-section .section-header { margin-bottom: 32px; }
.cleaners-marquee-section .section-header h2 { margin: 6px 0 10px; }
.cleaners-marquee-section .section-header p { color: var(--muted); max-width: 620px; margin: 0 auto; }

.cleaners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.cleaners-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: cleaners-scroll 80s linear infinite;
  will-change: transform;
}
.cleaners-marquee:hover .cleaners-marquee-track { animation-play-state: paused; }

.cleaner-card {
  flex: 0 0 auto;
  width: 200px;
  height: 266px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cleaner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(10, 37, 64, 0.14);
}
.cleaner-card picture,
.cleaner-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes cleaners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .cleaners-marquee-section { padding: 44px 0 32px; }
  .cleaner-card { width: 150px; height: 200px; border-radius: 14px; }
  .cleaners-marquee-track { gap: 14px; animation-duration: 60s; }
  .cleaners-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cleaners-marquee-track { animation: none; }
  .cleaners-marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .cleaner-card { scroll-snap-align: start; }
}

/* ---------- Move-in/out pricing table ---------- */
.moveinout-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.06);
}
.moveinout-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.moveinout-table thead {
  background: linear-gradient(180deg, #f1f7ff 0%, #e8f1fb 100%);
}
.moveinout-table th {
  text-align: left;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.moveinout-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}
.moveinout-table tr:last-child td { border-bottom: 0; }
.moveinout-table tbody tr:hover { background: #f8fbff; }
.moveinout-table .num {
  text-align: right;
  font-weight: 700;
  color: var(--brand);
  font-size: 17px;
  white-space: nowrap;
}
.moveinout-table .num.enquire {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.moveinout-note {
  margin: 16px 4px 0;
  color: var(--muted);
  font-size: 13.5px;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .moveinout-table-wrap { border-radius: 14px; }
  .moveinout-table thead { display: none; }
  .moveinout-table, .moveinout-table tbody, .moveinout-table tr, .moveinout-table td { display: block; width: 100%; }
  .moveinout-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }
  .moveinout-table tr:last-child { border-bottom: 0; }
  .moveinout-table td {
    padding: 6px 0;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-size: 14.5px;
  }
  .moveinout-table td::before {
    content: attr(data-label);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    flex-shrink: 0;
  }
  .moveinout-table .num { text-align: right; font-size: 16px; }
}

/* ---------- Stronger eyebrow on service rows ---------- */
.split .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
  padding: 6px 14px;
  background: rgba(31, 182, 255, 0.10);
  border: 1px solid rgba(31, 182, 255, 0.25);
  border-radius: 999px;
}
@media (max-width: 720px) {
  .split .eyebrow { font-size: 0.85rem; padding: 5px 12px; }
}

/* ---------- Home Cleaning Services page ---------- */
.hcs-hero-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.08);
  aspect-ratio: 1 / 1;
}
.hcs-hero-photo picture, .hcs-hero-photo img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}

.hcs-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) { .hcs-package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .hcs-package-grid { grid-template-columns: 1fr; } }

.hcs-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 720px) { .hcs-includes-grid { grid-template-columns: 1fr; } }

.hcs-include-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.06);
}
.hcs-include-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.hcs-include-head h3 { margin: 0; font-size: 1.25rem; }
.hcs-include-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(31, 182, 255, 0.12);
  color: var(--brand-dark);
}
.hcs-include-icon svg { width: 22px; height: 22px; }
.hcs-include-card .checklist { margin: 0; }
.hcs-include-card .checklist li { padding: 6px 0; font-size: 14.5px; }

/* ===========================
   404 Page
   =========================== */
.notfound-hero { position: relative; }
.notfound-code {
  font-size: clamp(96px, 18vw, 220px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand) 0%, #0a8ed1 50%, var(--ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  user-select: none;
}
.notfound-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  border: 1px solid rgba(10,37,64,0.08);
}
.notfound-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,37,64,0.10);
  border-color: rgba(31,182,255,0.35);
}
.notfound-card h3 { color: var(--ink); margin-bottom: 8px; }
.notfound-card p { color: rgba(10,37,64,0.7); margin-bottom: 16px; flex: 1; }
.notfound-link {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 0.95rem;
}
.notfound-card:hover .notfound-link { color: var(--brand); }

/* ===========================
   WhatsApp CTA decoration (used site-wide)
   =========================== */
.wa-quote-cta { text-align: center; margin-top: 32px; }
.wa-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.wa-quote-btn .wa-icon { width: 22px; height: 22px; flex-shrink: 0; }
.wa-quote-btn:not(.btn-lg) .wa-icon { width: 18px; height: 18px; }
.wa-quote-btn.btn-sm .wa-icon { width: 16px; height: 16px; }
/* Outline variant: badge needs a darker tint so text remains legible */
.wa-quote-btn.btn-outline .wa-instant-badge {
  background: rgba(37,211,102,0.12);
  color: #157a3a;
}
.wa-quote-btn.btn-outline .wa-pulse {
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
}
.wa-quote-btn.btn-outline .wa-pulse {
  animation-name: waPulseDark;
}
@keyframes waPulseDark {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* Helper line colours: dark on light backgrounds, light on dark promo banners */
.promo-banner .wa-quote-helper { color: rgba(255,255,255,0.78); }
/* Inline WhatsApp icon used in plain text links (footer list, contact details) */
.wa-inline-icon {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  color: #25d366;
  flex-shrink: 0;
}
.wa-instant-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  line-height: 1;
  margin-left: 4px;
}
.wa-pulse {
  width: 8px; height: 8px;
  background: #b9ffce;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 0 0 rgba(185,255,206,0.85);
  animation: waPulse 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(185,255,206,0.85); }
  70%  { box-shadow: 0 0 0 8px rgba(185,255,206,0); }
  100% { box-shadow: 0 0 0 0 rgba(185,255,206,0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-pulse { animation: none; }
}
.wa-quote-btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
.wa-quote-helper {
  margin: 14px 0 0;
  font-size: 0.875rem;
  color: rgba(10,37,64,0.65);
}
@media (max-width: 520px) {
  .wa-quote-btn {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 22px;
    padding-right: 22px;
  }
  .wa-instant-badge {
    margin-left: 0;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* ============================================
   Thank-you page
   ============================================ */
.thank-you-section { padding-top: 64px; padding-bottom: 80px; }
.thank-you-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 30px 60px -30px rgba(10,37,64,.18);
  text-align: center;
}
.thank-you-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6f8ee, #d6f1ff);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: thanksPop .55s cubic-bezier(.2,.8,.2,1) both;
}
.thank-you-icon svg { width: 56px; height: 56px; }
.thank-you-card h1 { margin: 8px 0 12px; font-size: clamp(1.75rem, 3vw + .5rem, 2.5rem); }
.thank-you-card .lead { color: var(--muted); font-size: 1.0625rem; margin: 0 auto 28px; max-width: 560px; }
.thank-you-next {
  text-align: left;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 24px auto 28px;
  max-width: 560px;
}
.thank-you-next h3 { margin: 0 0 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.thank-you-next ol { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.65; }
.thank-you-next ol li { margin-bottom: 8px; }
.thank-you-cta { margin: 8px auto 28px; max-width: 420px; }
.thank-you-cta-text { color: var(--muted); margin: 0 0 12px; font-weight: 500; }
.thank-you-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@keyframes thanksPop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .thank-you-icon { animation: none; }
}
@media (max-width: 560px) {
  .thank-you-card { padding: 36px 22px; }
  .thank-you-next { padding: 18px 18px; }
  .thank-you-links .btn { width: 100%; }
}
