/* ==========================================================================
   EasyKilo Laundry — design tokens
   ========================================================================== */
:root {
  --navy: #1e40af;
  --navy-600: #2563eb;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --teal-light: #5eead4;

  --ink: #1f2937;
  --ink-strong: #111827;
  --muted: #6b7280;

  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-blue: #eff6ff;
  --bg-teal: #f0fdfa;
  --footer-bg: #0f172a;

  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.04);
  --shadow: 0 4px 16px rgb(15 23 42 / 0.06);
  --shadow-lg: 0 12px 32px rgb(15 23 42 / 0.10);

  --container: 72rem;
  --header-h: 4.5rem;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3 {
  color: var(--ink-strong);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* Skip link — keyboard accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow { max-width: 56rem; }

.section { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.section--soft { background: var(--bg-soft); }
.section--tealfade { background: linear-gradient(180deg, #fff 0%, var(--bg-teal) 100%); }

.section__head {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section__title { font-size: clamp(1.875rem, 1.2rem + 2.6vw, 2.5rem); font-weight: 800; }
.section__sub { color: var(--muted); font-size: 1.0625rem; margin-top: 0.75rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 18px rgb(20 184 166 / 0.28);
}
.btn--wa:hover { background: var(--teal-dark); box-shadow: 0 10px 24px rgb(20 184 166 / 0.34); }

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 18px rgb(30 64 175 / 0.24);
}
.btn--navy:hover { background: #1b399c; }

.btn--pill { border-radius: 999px; padding: 0.75rem 1.375rem; font-size: 0.9375rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header__logo { height: 3.5rem; width: auto; }

.nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a { transition: color 0.15s ease; }
.nav a:hover { color: var(--navy); }
@media (min-width: 62rem) { .nav { display: flex; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { background: var(--bg-soft); padding-block: clamp(3rem, 7vw, 5rem); }
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 56rem) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
}

.hero__title {
  font-size: clamp(2.125rem, 1.2rem + 3.6vw, 3.25rem);
  font-weight: 800;
}
.hero__lead {
  color: #4b5563;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1875rem);
  margin-top: 1.25rem;
}

.pills { display: grid; gap: 0.75rem; margin-top: 1.75rem; }
.pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.8125rem 1.25rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* Promo pill — reads as an offer, not another feature bullet */
.pill--promo {
  background: var(--bg-teal);
  border-color: var(--teal);
  color: var(--teal-dark);
}
.pill--promo strong { color: var(--teal-dark); font-weight: 700; }
.pill__gift { font-size: 1.125rem; line-height: 1; flex-shrink: 0; }

.hero__cta { margin-top: 1.75rem; }

.hero__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__media img { width: 100%; object-fit: cover; }

/* Teal check icon */
.check { color: var(--teal); flex-shrink: 0; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 40rem) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 56rem) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Stacks on mobile, side-by-side once each item has room to breathe */
.grid--auto { grid-template-columns: 1fr; }
@media (min-width: 40rem) {
  .grid--auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { font-size: 2.75rem; line-height: 1; margin-bottom: 1rem; }
.card__title { font-size: 1.1875rem; font-weight: 700; margin-bottom: 0.5rem; }
.card__text { color: var(--muted); }
.card--center { text-align: center; }

/* Testimonials */
.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.quote__stars { color: #facc15; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.quote__text { font-style: italic; color: #374151; }
.quote__author { font-weight: 600; margin-top: 0.75rem; font-size: 0.9375rem; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 2.5rem;
}

.plan { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 1.75rem; }
.plan__name { text-align: center; font-size: 1.25rem; font-weight: 700; }
.plan__for { text-align: center; color: var(--muted); font-size: 0.9375rem; margin-top: 0.25rem; }
.plan__price {
  background: linear-gradient(90deg, var(--navy-600), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  padding: 2rem 1rem;
  margin-block: 1.25rem;
}
.plan__amount { font-size: clamp(2rem, 1.4rem + 2.4vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; }
.plan__from { font-size: 0.875rem; opacity: 0.92; }

.ticks { display: grid; gap: 0.625rem; }
.ticks li { display: flex; align-items: flex-start; gap: 0.625rem; color: #374151; }

.subhead { text-align: center; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }

.speed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  background: #fff;
}
.speed__icon { font-size: 1.75rem; }
.speed__name { font-weight: 600; margin-top: 0.5rem; }
.speed__value { color: var(--teal); font-weight: 700; font-size: 1.125rem; }

.info-grid { display: grid; gap: 2rem; }
@media (min-width: 40rem) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
.info__title { font-weight: 700; margin-bottom: 0.875rem; }
/* Stacked info rows — used by payment methods and opening hours */
.info-rows { display: grid; gap: 0.75rem; }
.info-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
}
.info-row__emoji { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.info-row__icon { color: var(--navy); flex-shrink: 0; }
.info-row__label { display: block; font-weight: 600; color: var(--ink-strong); }
.info-row__meta { display: block; color: var(--muted); font-size: 0.9375rem; }

/* Pickup terms — the flex bug fix lives here: text is wrapped in its own span */
.terms {
  background: var(--bg-blue);
  border: 1px solid #dbeafe;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.terms__title {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.terms__list { display: grid; gap: 0.75rem; font-size: 0.9375rem; color: #374151; }
.terms__list li { display: flex; align-items: flex-start; gap: 0.625rem; }

.closing { text-align: center; }
.closing p { color: var(--muted); margin-bottom: 1.25rem; }

/* ==========================================================================
   Feature banner (solid navy)
   ========================================================================== */
.banner {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 4.5rem);
}
.banner h2 { color: #fff; font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.5rem); font-weight: 800; }
.banner p { color: #c7d7fb; margin-top: 1rem; max-width: 40rem; }
.banner ul { display: grid; gap: 0.75rem; margin-top: 1.75rem; }
.banner li { display: flex; align-items: center; gap: 0.625rem; }
.banner .check { color: var(--teal-light); }

/* ==========================================================================
   Service areas
   ========================================================================== */
.areas { display: grid; gap: 0.875rem; }
@media (min-width: 40rem) { .areas { grid-template-columns: repeat(2, 1fr); } }
.area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-blue);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 500;
}
.area svg { color: var(--navy); flex-shrink: 0; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; gap: 1.5rem; }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
}
.step__num {
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.step__text { color: var(--muted); font-size: 0.9375rem; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  background: linear-gradient(90deg, var(--navy-600), var(--teal));
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5rem);
}
.cta h2 { color: #fff; font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.5rem); font-weight: 800; }
.cta p { color: #e6f4ff; margin-top: 1rem; margin-bottom: 2rem; }
.cta .btn--wa { background: #fff; color: var(--teal-dark); }
.cta .btn--wa:hover { background: #f0fdfa; }

/* ==========================================================================
   Map
   ========================================================================== */
.map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
  aspect-ratio: 16 / 9;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--footer-bg); color: #cbd5e1; }
.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4rem);
}
@media (min-width: 56rem) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.footer__logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.375rem 0.625rem;
}
.footer__about { font-size: 0.9375rem; color: #94a3b8; }
.footer h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer__links { display: grid; gap: 0.625rem; font-size: 0.9375rem; }
.footer__links a { transition: color 0.15s ease; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: 0.75rem; font-size: 0.9375rem; }
.footer__contact li { display: flex; gap: 0.625rem; align-items: flex-start; }
.footer__contact svg { color: var(--teal); flex-shrink: 0; margin-top: 0.2rem; }
.footer__contact a:hover { color: #fff; }

.footer__bottom { border-top: 1px solid #1e293b; }
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}
@media (min-width: 40rem) { .footer__bottom-inner { flex-direction: row; } }
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a:hover { color: #fff; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgb(37 211 102 / 0.4);
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.08); }

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */
.prose { max-width: 46rem; margin-inline: auto; }
.prose h1 { font-size: clamp(1.875rem, 1.3rem + 2.2vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.prose .updated { color: var(--muted); font-size: 0.9375rem; margin-bottom: 2.5rem; }
.prose h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2.25rem; margin-bottom: 0.75rem; }
.prose p, .prose li { color: #374151; }
.prose p { margin-bottom: 1rem; }
.prose ul { display: grid; gap: 0.5rem; margin-bottom: 1rem; padding-left: 1.25rem; list-style: disc; }
.prose ul ul { margin-top: 0.5rem; margin-bottom: 0; list-style: circle; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}
.back-link:hover { text-decoration: underline; }
