/* ==========================================================================
   SR Laundry — Shared Stylesheet
   Brand palette, typography and components used across all 3 pages.
   ========================================================================== */

:root {
  --green: #0A9C48;        /* Signboard Green — primary */
  --green-deep: #075C30;   /* dark sections (hero/footer/CTA bands) */
  --navy: #054C71;         /* secondary text on light bg, service icon color */
  --cyan: #00A8E4;         /* accent only — never large text blocks */
  --ink: #0B2B22;          /* body text on light backgrounds */
  --ink-soft: #5A6B62;     /* captions, meta, muted labels */
  --cream: #FBF8F1;        /* page background */
  --mint: #EAF4EC;         /* alternating section bg, icon circle fills */
  --gold: #E8B84B;         /* review stars / small accents */
  --wa-green: #25D366;     /* WhatsApp buttons only */
  --white: #ffffff;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4, .display { font-family: var(--font-head); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--green-deep); color: #fff;
  padding: 10px 18px; border-radius: 8px; z-index: 1000;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---- Icons ---- */
.ic {
  width: 24px; height: 24px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  display: block; flex: none;
}
.ic-star {
  width: 15px; height: 15px;
  fill: currentColor; stroke: none;
  display: inline-block; vertical-align: middle;
}
.star-row { display: flex; gap: 2px; margin-bottom: 10px; }
.star-row .ic-star.on { color: var(--gold); }
.star-row .ic-star.off { color: #E3E0D4; }
.wa-icon { width: 16px; height: 16px; flex: none; }

/* ---- Top bar ---- */
.topbar { background: var(--green-deep); color: var(--white); font-size: 13px; padding: 8px 0; }
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
.topbar .address { display: flex; align-items: center; gap: 6px; }
.topbar .phones { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .phones a { display: inline-flex; align-items: center; gap: 5px; }
.topbar .phones a:hover { text-decoration: underline; }

/* ---- Nav ---- */
nav.site-nav {
  background: var(--white); padding: 14px 0;
  box-shadow: 0 1px 0 rgba(7, 92, 48, .08);
  position: sticky; top: 0; z-index: 300;
}
nav.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 58px; width: auto; }
.brand-text .name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--green-deep); line-height: 1.1; }
.brand-text .sub { font-size: 11px; color: var(--ink-soft); letter-spacing: .02em; }

.nav-links {
  display: flex; gap: 30px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
}
.nav-links a { padding-bottom: 4px; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--green-deep); }
.nav-links a[aria-current="page"] { color: var(--green-deep); border-bottom-color: var(--cyan); }

.nav-cta {
  background: var(--wa-green); color: #fff; padding: 10px 18px; border-radius: 30px;
  font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .35); flex: none;
}
.nav-cta:hover { filter: brightness(1.05); }

.nav-toggle {
  display: none; background: none; border: none; color: var(--green-deep);
  width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-toggle .ic { width: 26px; height: 26px; }

.nav-mobile {
  display: none;
  flex-direction: column; gap: 2px;
  background: var(--white); border-top: 1px solid rgba(7,92,48,.08);
  padding: 10px 0 4px;
}
.nav-mobile a {
  padding: 12px 24px; font-weight: 600; font-size: 15px; color: var(--ink-soft);
}
.nav-mobile a[aria-current="page"] { color: var(--green-deep); }
.nav-mobile.is-open { display: flex; }

/* ---- Buttons ---- */
.btn-primary {
  background: var(--wa-green); color: #fff; padding: 14px 26px; border-radius: 32px;
  font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18); border: none;
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; padding: 12.5px 24px; border-radius: 32px;
  font-weight: 600; font-size: 15px; display: inline-flex; align-items: center;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.btn-ghost.dark { border-color: rgba(7, 92, 48, .35); color: var(--green-deep); }
.btn-ghost.dark:hover { background: rgba(7, 92, 48, .06); }

/* ---- Section scaffolding ---- */
.section { padding: 60px 0; }
.section.alt { background: var(--white); }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 36px; }
.section-head .kicker {
  color: var(--navy); font-weight: 700; font-size: 12.5px; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 8px; display: block;
}
.section-head h2 { font-size: 28px; color: var(--green-deep); font-weight: 800; }
.section-head p { color: var(--ink-soft); margin-top: 10px; font-size: 15px; }

.wave { display: block; width: 100%; height: 50px; margin-top: -2px; }

/* ---- Image placeholder boxes ---- */
.imgph {
  background: var(--mint); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: var(--navy); font-size: 12px; font-weight: 600; text-align: center; padding: 10px;
  border: 1.5px dashed rgba(7, 92, 48, .3);
}

/* ---- Hero (home) ---- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green) 65%, var(--cyan) 145%);
  padding: 56px 0 80px;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .12);
}
.hero::before { right: -120px; top: -120px; width: 380px; height: 380px; }
.hero::after { right: -40px; bottom: -150px; width: 300px; height: 300px; border-color: rgba(255,255,255,.08); }
.hero .wrap {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center;
  position: relative; z-index: 2;
}
.eyebrow {
  display: inline-block; background: rgba(255, 255, 255, .15); padding: 6px 14px;
  border-radius: 20px; font-size: 12.5px; font-weight: 600; letter-spacing: .03em; margin-bottom: 18px;
}
.hero h1 { font-size: 36px; line-height: 1.16; font-weight: 800; margin-bottom: 16px; }
.hero h1 .accent { display: block; font-size: 18px; font-weight: 600; color: var(--gold); margin-top: 10px; }
.hero p.lead { font-size: 16px; color: rgba(255, 255, 255, .9); max-width: 460px; line-height: 1.6; margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 26px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats div { border-left: 2px solid rgba(255, 255, 255, .3); padding-left: 14px; }
.hero-stats b { font-family: var(--font-head); font-size: 20px; display: block; }
.hero-stats span { font-size: 12px; color: rgba(255, 255, 255, .78); }

.hero-card { background: #fff; border-radius: var(--radius-lg); padding: 22px; color: var(--ink); box-shadow: 0 24px 50px rgba(0, 0, 0, .22); }
.hero-card .imgrow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.hero-card .imgph { height: 104px; }
.hero-card .imgph.tall { height: 218px; grid-row: span 2; }
.hero-card .caption { font-size: 12px; color: var(--ink-soft); text-align: center; }

/* ---- Highlights strip ---- */
.highlights .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hcard { background: var(--mint); border-radius: 16px; padding: 26px; text-align: center; }
.hcard .ico { margin-bottom: 10px; color: var(--navy); display: flex; justify-content: center; }
.hcard h3 { font-size: 15px; color: var(--green-deep); margin-bottom: 6px; }
.hcard p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* ---- Popular services preview ---- */
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.pcard {
  background: #fff; border-radius: 14px; padding: 22px 14px; text-align: center;
  box-shadow: 0 6px 16px rgba(7, 92, 48, .06); border: 1px solid rgba(7, 92, 48, .06);
}
.pcard .icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 12px;
  background: var(--mint); display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.pcard h3 { font-size: 13.5px; color: var(--green-deep); font-weight: 700; }
.preview-cta { text-align: center; }

/* ---- Photo gallery (drag/swipe carousel) ---- */
.gallery-shell { position: relative; }
.gallery-strip {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 4px 4px 16px; margin: 0 -4px; cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--green) var(--mint);
  -webkit-overflow-scrolling: touch; user-select: none;
}
.gallery-strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery-strip::-webkit-scrollbar { height: 8px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--mint); border-radius: 8px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--green); border-radius: 8px; }
.gallery-card {
  flex: 0 0 auto; width: 260px; scroll-snap-align: start;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: 0 6px 18px rgba(7, 92, 48, .1); border: 1px solid rgba(7, 92, 48, .08);
  background: #fff;
}
.gallery-card img {
  width: 100%; height: 190px; object-fit: cover; pointer-events: none;
}
.gallery-card .cap { padding: 10px 14px; font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.gallery-nav {
  display: none; align-items: center; justify-content: center;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid rgba(7,92,48,.15);
  color: var(--green-deep); box-shadow: 0 6px 16px rgba(7,92,48,.18); z-index: 2;
}
.gallery-nav:hover { background: var(--mint); }
.gallery-nav.prev { left: -18px; }
.gallery-nav.next { right: -18px; }

/* ---- Reviews ---- */
.reviews-strip { background: var(--mint); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: #fff; border-radius: 16px; padding: 22px;
  border: 1px solid rgba(7, 92, 48, .08); box-shadow: 0 6px 18px rgba(7, 92, 48, .05);
}
.review-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.review-card .who { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
  font-family: var(--font-head); flex: none;
}
.who b { font-size: 13.5px; display: block; }
.who span { font-size: 11.5px; color: var(--ink-soft); }
.review-link-card {
  background: var(--green-deep); border-radius: 16px; padding: 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; gap: 10px;
}
.review-link-card .stars-lg { font-size: 22px; font-weight: 800; font-family: var(--font-head); }
.review-link-card p { color: rgba(255, 255, 255, .85); font-size: 13px; margin: 0; }
.review-link-card .btn-ghost { padding: 9px 18px; font-size: 13px; margin-top: 4px; }
.google-badge {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 26px; font-size: 13.5px; color: var(--ink-soft); font-weight: 600; text-align: center;
}

/* ---- CTA band ---- */
.cta-band { background: var(--green-deep); color: #fff; text-align: center; padding: 54px 0; }
.cta-band h2 { font-size: 25px; font-weight: 800; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, .82); margin-bottom: 22px; font-size: 15px; }

/* ---- Page header band (services / contact) ---- */
.pagehead {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green) 100%);
  color: #fff; padding: 48px 0 60px; text-align: center;
}
.pagehead .kicker { color: var(--gold); font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.pagehead h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.pagehead p { color: rgba(255, 255, 255, .87); max-width: 520px; margin: 0 auto; font-size: 15px; }

/* ---- Services groups ---- */
.groupblock { margin-bottom: 48px; }
.groupblock:last-child { margin-bottom: 0; }
.group-label { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.group-label .num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green-deep); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-weight: 700; font-size: 14px; flex: none;
}
.group-label h2 { font-size: 20px; color: var(--green-deep); font-weight: 800; }
.group-label span { font-size: 13px; color: var(--ink-soft); display: block; margin-top: 2px; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 6px 18px rgba(7, 92, 48, .06); border: 1px solid rgba(7, 92, 48, .07);
}
.svc-card .icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--mint);
  display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 14px;
}
.svc-card h3 { font-size: 15.5px; color: var(--green-deep); font-weight: 700; margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

.svc-note {
  background: var(--mint); border-radius: 14px; padding: 20px 24px; margin-top: 22px;
  font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 12px; align-items: flex-start;
}
.svc-note b { color: var(--green-deep); }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.info-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 10px 30px rgba(7, 92, 48, .08); border: 1px solid rgba(7, 92, 48, .07);
  margin-bottom: 20px;
}
.info-row { display: flex; gap: 14px; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--mint); flex: none;
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.info-row h4 { font-size: 14px; color: var(--green-deep); margin-bottom: 3px; font-weight: 700; }
.info-row p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 6px 0; font-size: 13.5px; color: var(--ink-soft); border-bottom: 1px solid rgba(7, 92, 48, .08); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 600; }

.map-embed {
  border-radius: var(--radius-md); overflow: hidden; height: 260px;
  border: 1px solid rgba(7, 92, 48, .1);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.wa-block {
  background: var(--green-deep); border-radius: var(--radius-lg); padding: 30px; color: #fff; text-align: center;
}
.wa-block h3 { font-size: 19px; margin-bottom: 8px; font-weight: 800; }
.wa-block p { color: rgba(255, 255, 255, .82); font-size: 13.5px; margin-bottom: 20px; }
.wa-block .btn-primary { background: #fff; color: var(--green-deep); }

.reviews-full { margin-top: 54px; }

/* ---- Footer ---- */
footer.site-footer { background: #06371F; color: rgba(255, 255, 255, .78); padding: 40px 0 22px; font-size: 13.5px; }
footer.site-footer .wrap {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center;
}
footer.site-footer .fbrand { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
footer.site-footer .faddr { max-width: 360px; }
footer.site-footer .fphones a:hover { text-decoration: underline; }
.fnote { text-align: center; margin-top: 22px; font-size: 12px; opacity: .55; }
.fnote a:hover { text-decoration: underline; }

/* ---- Floating WhatsApp button ---- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { filter: brightness(1.05); }

/* ==========================================================================
   Responsive — mobile-first overrides (tablet: >=768px, desktop: >=1024px)
   ========================================================================== */
@media (min-width: 901px) {
  .gallery-nav { display: flex; }
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .highlights .grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar .address { display: none; }
  .topbar .wrap { justify-content: center; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta span.label { display: none; }
  .nav-cta { padding: 10px 14px; }
  .brand img { height: 46px; }

  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 28px; }
  .hero h1 .accent { font-size: 15px; }
  .hero-stats { gap: 18px; }

  .section { padding: 44px 0; }
  .section-head h2 { font-size: 23px; }

  .highlights .grid,
  .preview-grid,
  .svc-grid { grid-template-columns: 1fr; }

  .gallery-card { width: 210px; }
  .gallery-card img { height: 150px; }

  .pagehead h1 { font-size: 26px; }

  footer.site-footer .wrap { flex-direction: column; text-align: center; align-items: center; }

  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}
