/* ==========================================================================
   PrestigePro Cleaning — stylesheet
   Layout/design system inspired by pickuplaundry.co.nz, content by PrestigePro
   ========================================================================== */

:root {
  --primary: #ff5146;
  --primary-dark: #e63e34;
  --primary-rgb: 255, 81, 70;
  --dark: #1c2027;
  --dark-soft: #4a4f5a;
  --gray: #6d727c;
  --light-bg: #f7f7f9;
  --white: #ffffff;
  --border: #ececef;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(28, 32, 39, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 32, 39, 0.12);
  --container: 1200px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark-soft);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
svg { fill: currentColor; }

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

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-light {
  background: #fff;
  color: var(--primary);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
}
.topbar-left, .topbar-right { display: flex; gap: 26px; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; opacity: 0.85; }
.topbar-right a:hover { color: var(--primary); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.logo-mark span { position: absolute; font-size: 0.7rem; bottom: 4px; right: 5px; opacity: 0.85; }
.logo-text {
  display: flex; flex-direction: column;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.1;
}
.logo-text strong { color: var(--primary); font-weight: 800; }
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray);
}

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--dark);
}
.phone-pill svg { width: 18px; height: 18px; color: var(--primary); }
.phone-pill:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fff5f4 0%, #ffffff 65%);
  padding: 90px 0 60px;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--primary);
}
.hero-shape-1 { width: 420px; height: 420px; top: -160px; right: -120px; }
.hero-shape-2 { width: 280px; height: 280px; bottom: -120px; left: -100px; opacity: 0.08; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
  font-size: 1.08rem;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 16px; margin-bottom: 42px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-badge { display: flex; flex-direction: column; }
.hero-badge strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--dark); font-weight: 800; }
.hero-badge span { font-size: 0.82rem; color: var(--gray); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 420px; }
.hero-visual-blob {
  width: 340px; height: 340px;
  border-radius: 43% 57% 61% 39% / 45% 43% 57% 55%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: blobmove 8s ease-in-out infinite;
  overflow: hidden;
  padding: 6px;
}
.hero-visual-blob img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
@keyframes blobmove {
  0%, 100% { border-radius: 43% 57% 61% 39% / 45% 43% 57% 55%; }
  50% { border-radius: 57% 43% 39% 61% / 55% 57% 43% 45%; }
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  animation: floaty 5s ease-in-out infinite;
}
.float-card svg { width: 26px; height: 26px; color: var(--primary); flex-shrink: 0; }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-family: var(--font-head); color: var(--dark); font-size: 0.9rem; }
.float-card span { color: var(--gray); }
.float-card-1 { top: 10px; left: -10px; animation-delay: 0.3s; }
.float-card-2 { bottom: 20px; right: -20px; animation-delay: 1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(255,245,244,0.94), rgba(255,255,255,0.96)),
    url("images/page-hero-bg.jpg") center / cover no-repeat;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-pricing {
  background:
    linear-gradient(160deg, rgba(255,245,244,0.94), rgba(255,255,255,0.96)),
    url("images/pricing-hero-bg.jpg") center / cover no-repeat;
}
.page-hero-about {
  background:
    linear-gradient(160deg, rgba(255,245,244,0.94), rgba(255,255,255,0.96)),
    url("images/about-hero-bg.jpg") center / cover no-repeat;
}
.page-hero-areas {
  background:
    linear-gradient(160deg, rgba(255,245,244,0.94), rgba(255,255,255,0.96)),
    url("images/areas-hero-bg.jpg") center / cover no-repeat;
}
.page-hero-contact {
  background:
    linear-gradient(160deg, rgba(255,245,244,0.94), rgba(255,255,255,0.96)),
    url("images/contact-hero-bg.jpg") center / cover no-repeat;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span:last-child { color: var(--primary); }
.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 18px 0 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 30px;
}
.page-hero .hero-btns { justify-content: center; margin-bottom: 0; }

/* ---------- Service detail rows ---------- */
.service-card-link { cursor: pointer; }
.service-details { padding-top: 20px; }
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.service-details .service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail.reverse .service-detail-body { order: 1; }
.service-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-body h2 { font-size: 1.9rem; margin-bottom: 16px; }
.service-detail-body p { color: var(--gray); margin-bottom: 20px; }
.service-detail-list { margin-bottom: 26px; }
.service-detail-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--dark-soft);
  font-weight: 500;
}
.service-detail-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Price highlight / table (pricing detail sections) ---------- */
.price-highlight {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.price-highlight p { margin-bottom: 0; color: var(--gray); font-size: 0.88rem; }
.price-table {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 24px;
  margin-bottom: 24px;
}
.price-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}
.price-table-row:last-child { border-bottom: none; }
.price-table-row span { color: var(--dark-soft); }
.price-table-row strong { color: var(--primary); font-family: var(--font-head); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--dark);
  color: #fff;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 24px;
  gap: 16px;
}
.trust-strip-inner div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.trust-strip-inner svg { width: 20px; height: 20px; color: var(--primary); }
.promise-strip { background: var(--primary); }
.promise-strip .trust-strip-inner svg { color: #fff; }

/* ---------- Section head ---------- */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: 2.1rem; margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 1.02rem; }
.section-head.light h2, .section-head.light .section-tag { color: #fff; }
.section-head.light p { color: rgba(255,255,255,0.75); }
.section-head .btn { margin-top: 20px; }

section { padding: 90px 0; }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; height: 380px; }
.about-shape {
  position: absolute; inset: 0;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-shape img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-stat-card {
  position: absolute;
  bottom: 24px; right: -10px;
  background: #fff;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-stat-card strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--primary); font-weight: 800; }
.about-stat-card span { font-size: 0.82rem; color: var(--gray); }
.about-content h2 { font-size: 2.1rem; margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: var(--gray); }
.about-content p a { color: var(--primary); font-weight: 600; }
.about-checklist { margin: 22px 0 28px; }
.about-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--dark-soft);
  font-weight: 500;
}
.about-checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Pricing ---------- */
.pricing { background: var(--light-bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card-link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.price-card-link .btn { pointer-events: none; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  color: #fff;
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
}
.price-card-head { margin-bottom: 22px; }
.price-card-head h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card.featured h3 { color: #fff; }
.price-card-head p { color: var(--gray); font-size: 0.92rem; margin-bottom: 16px; }
.price-card.featured .price-card-head p { color: rgba(255,255,255,0.85); }
.price-tag { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.8rem; color: var(--gray); font-weight: 600; }
.price-amount { font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; color: var(--primary); }
.price-unit { font-size: 0.85rem; color: var(--gray); font-weight: 600; }
.price-card.featured .price-from,
.price-card.featured .price-unit { color: rgba(255,255,255,0.8); }
.price-card.featured .price-amount { color: #fff; }
.price-card ul { margin-bottom: 28px; }
.price-card li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--border);
}
.price-card.featured li { border-color: rgba(255,255,255,0.2); }
.price-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--primary);
  font-weight: 700;
}
.price-card.featured li::before { color: #fff; }
.price-card.featured .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.price-card.featured .btn-outline:hover { background: #fff; color: var(--primary); }
.pricing-note {
  text-align: center;
  margin-top: 34px;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ---------- How it works ---------- */
.how-it-works { background: var(--dark); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step {
  text-align: center;
  color: #fff;
  position: relative;
  padding: 30px 20px;
}
.step-num {
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
}
.step-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-icon svg { width: 30px; height: 30px; }
.step h4 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.how-cta { text-align: center; margin-top: 20px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-photo {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-icon {
  position: absolute;
  left: 24px; bottom: -26px;
  width: 62px; height: 62px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; margin: 44px 30px 12px; }
.service-card p { color: var(--gray); font-size: 0.95rem; padding: 0 30px; }

/* ---------- Why us ---------- */
.why-us { background: var(--light-bg); }
.why-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.why-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-visual h2 { font-size: 2rem; margin: 14px 0 18px; }
.why-visual p { color: var(--gray); margin-bottom: 26px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 0.87rem; }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
}
.stat span { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; }

/* ---------- Areas ---------- */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.area-pills span {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-soft);
  transition: all 0.25s ease;
}
.area-pills span:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.area-pills-block { justify-content: flex-start; margin-bottom: 26px; }
.area-pills-block span { font-size: 0.82rem; padding: 8px 16px; }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.serve-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.serve-card h4 { font-size: 1.02rem; margin-bottom: 10px; }
.serve-card p { color: var(--gray); font-size: 0.88rem; }
.areas-note { text-align: center; margin-top: 34px; color: var(--gray); }
.areas-note a { color: var(--primary); font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 30px;
}
.stars { color: #ffb43c; letter-spacing: 3px; margin-bottom: 14px; font-size: 0.95rem; }
.testi-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin-bottom: 20px; }
.testi-author strong { display: block; color: #fff; font-family: var(--font-head); font-size: 0.95rem; }
.testi-author span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ---------- FAQ ---------- */
.faq-inner { max-width: 800px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.acc-head {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.acc-head span {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}
.acc-item.open .acc-head span { background: var(--primary); color: #fff; transform: rotate(45deg); }
.acc-item.open .acc-head { color: var(--primary); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.acc-item.open .acc-body { max-height: 500px; }
.acc-body p { padding: 0 26px 22px; color: var(--gray); font-size: 0.94rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(255,81,70,0.92), rgba(230,62,52,0.92)),
    url("images/cta-spray-bottle.jpg") center / cover no-repeat;
  text-align: center;
}
.cta-inner h2 { color: #fff; font-size: 2.2rem; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Newsletter ---------- */
.newsletter { padding: 60px 0; background: var(--light-bg); }
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter-inner h3 { font-size: 1.5rem; margin-bottom: 8px; }
.newsletter-inner p { color: var(--gray); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  min-width: 280px;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-text { color: #fff; }
.footer-about p { font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-social a:hover { background: var(--primary); }
.footer-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.hours-title { margin-top: 24px; }
.hours { font-size: 0.9rem; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 998;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top:hover { background: var(--primary-dark); }

/* ---------- Reviews page: stat-driven hero ---------- */
.review-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #fff5f4 0%, #ffffff 65%);
}
.review-hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.review-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 18px 0 16px;
}
.review-hero > .container > p,
.review-hero-inner p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 34px;
}
.review-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.review-hero-stat { display: flex; flex-direction: column; }
.review-hero-stat strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}
.review-hero-stat span { font-size: 0.85rem; color: var(--gray); font-weight: 600; }

/* ---------- Ring stats ("By The Numbers") ---------- */
.ring-stats { background: var(--light-bg); }
.ring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.ring-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  box-shadow: var(--shadow);
}
.ring {
  width: 130px; height: 130px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: conic-gradient(var(--primary) calc(var(--pct) * 1%), var(--light-bg) 0);
}
.ring-solid { background: conic-gradient(var(--primary) 100%, var(--primary) 0); }
.ring-inner {
  width: 102px; height: 102px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ring-inner strong { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.ring-card h4 { font-size: 1rem; }

/* ---------- Review filters ---------- */
.review-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--dark-soft);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------- Masonry review wall ---------- */
.review-wall {
  column-count: 3;
  column-gap: 24px;
}
.review-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 24px;
  display: block;
}
.review-card .stars { color: #ffb43c; letter-spacing: 2px; margin-bottom: 12px; font-size: 0.9rem; }
.review-card p { color: var(--dark-soft); font-size: 0.94rem; margin-bottom: 16px; }
.review-meta strong { display: block; font-family: var(--font-head); font-size: 0.92rem; color: var(--dark); }
.review-meta span { font-size: 0.8rem; color: var(--gray); }
.review-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 14px;
}
.review-card.featured {
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}
.review-card.featured p { color: rgba(255,255,255,0.92); }
.review-card.featured .review-tag { background: rgba(255,255,255,0.2); color: #fff; }
.review-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.6); }
.review-card-head strong { display: block; color: #fff; font-family: var(--font-head); font-size: 0.95rem; }
.review-card-head span { font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.review-empty { text-align: center; color: var(--gray); padding: 40px 0; }

/* ---------- FAQ hub page ---------- */
.faq-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 30px;
}
.faq-search svg {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--gray);
}
.faq-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--light-bg);
}
.faq-search input:focus { outline: none; border-color: var(--primary); background: #fff; }
.faq-group { max-width: 800px; margin: 0 auto 50px; }
.faq-group-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* ---------- Contact page ---------- */
.contact-main { background: var(--light-bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 1.8rem; margin: 10px 0 12px; }
.contact-form-card > p { color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.94rem;
  background: var(--light-bg);
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; }
.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray);
}
.form-note svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.form-success {
  text-align: center;
  padding: 30px 10px;
}
.form-success svg {
  width: 56px; height: 56px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  padding: 14px;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 12px; }
.form-success p { color: var(--gray); max-width: 420px; margin: 0 auto; }
.form-success a { color: var(--primary); font-weight: 600; }

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.office-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
}
.office-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 18px; }
.office-contact li { color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.office-contact svg { color: var(--primary); }
.office-contact a { color: rgba(255,255,255,0.85); }
.office-hours { margin: 22px 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
.office-hours h4 { color: #fff; font-size: 0.95rem; margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.86rem; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.office-social a { background: rgba(255,255,255,0.1); }
.office-social a:hover { background: var(--primary); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 260px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Quick FAQ teaser ---------- */
.quick-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quick-faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.quick-faq-card h4 { font-size: 1.02rem; margin-bottom: 10px; }
.quick-faq-card p { color: var(--gray); font-size: 0.9rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 20px; }
  .about-inner, .why-inner { grid-template-columns: 1fr; }
  .pricing-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .why-grid, .serve-grid, .testi-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-media,
  .service-detail.reverse .service-detail-body { order: initial; }
  .service-detail-media { height: 300px; }
  .ring-grid { grid-template-columns: repeat(2, 1fr); }
  .review-wall { column-count: 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .quick-faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: #fff; flex-direction: column; padding: 100px 30px; box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: right 0.3s ease; z-index: 1000; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .nav-toggle { display: flex; }
  .header-cta .phone-pill { display: none; }
  .topbar-hide-sm { display: none; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 50px 0 40px; }
  .hero-content h1 { font-size: 2rem; }
  .page-hero { padding: 50px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .service-detail { padding: 50px 0; gap: 30px; }
  .service-detail-media { height: 240px; }
  .pricing-grid, .services-grid, .steps-grid, .why-grid, .serve-grid, .testi-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .trust-strip-inner { justify-content: center; text-align: center; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; min-width: 0; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .float-card { display: none; }
  .review-hero h1 { font-size: 2rem; }
  .review-hero-stats { gap: 28px; }
  .review-hero-stat strong { font-size: 1.7rem; }
  .ring-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ring { width: 100px; height: 100px; }
  .ring-inner { width: 78px; height: 78px; }
  .ring-inner strong { font-size: 1rem; }
  .review-wall { column-count: 1; }
  .contact-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .quick-faq-grid { grid-template-columns: 1fr; }
}
