/* =================================
   House Cleaning Category — LoadUp-Inspired
   Blue/Teal Palette
   ================================= */

/* ===== Override Variables ===== */
[data-category="house-cleaning"] {
  --hc-primary: #0ea5e9;
  --hc-primary-dark: #0284c7;
  --hc-primary-light: #e0f2fe;
  --hc-accent: #06b6d4;
  --hc-accent-dark: #0891b2;
  --hc-success: #10b981;
  --hc-success-light: #d1fae5;
  --hc-dark: #0f172a;
  --hc-text: #334155;
  --hc-muted: #64748b;
  --hc-light: #f8fafc;
  --hc-border: #e2e8f0;
  --hc-white: #ffffff;
  --hc-radius: 12px;
  --hc-radius-sm: 8px;
  --hc-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --hc-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.04);
  --hc-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --hc-transition: 0.2s ease;
}

/* ===== Logo Icon ===== */
.hc-logo-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.hc-logo-svg {
  width: 32px;
  height: 26px;
}

.hc-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hc-primary);
  letter-spacing: -0.02em;
}

/* ===== Header Actions Bar (right side) ===== */
.hc-header-actions {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.hc-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--hc-dark);
  transition: color var(--hc-transition);
}

.hc-header-icon svg {
  width: 20px;
  height: 20px;
}

.hc-header-icon:hover {
  color: var(--hc-primary);
}

/* ===== Book Button — compact pill ===== */
.hc-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  margin: 0;
  background: var(--hc-primary);
  color: var(--hc-white);
  border: none;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--hc-transition);
  white-space: nowrap;
  line-height: 1;
  height: 34px;
}

.hc-book-btn:hover {
  background: var(--hc-primary-dark);
}

/* Mobile menu button inside actions bar */
.hc-header-actions .mobile-menu-btn {
  position: relative;
  order: 4;
}

@media (min-width: 1024px) {
  .hc-header-actions {
    display: none;
  }
  .hc-logo-svg {
    width: 38px;
    height: 32px;
  }
  .hc-logo-text {
    font-size: 1.35rem;
  }
}

/* ===== Mobile Nav — Book Online + Find My City ===== */
.hc-mobile-book {
  padding: 0.75rem 1rem 0.25rem;
}

.hc-mobile-book-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: var(--hc-primary);
  color: var(--hc-white);
  border: none;
  border-radius: var(--hc-radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: background var(--hc-transition);
}

.hc-mobile-book-btn:hover {
  background: var(--hc-primary-dark);
}

.hc-mobile-find {
  padding: 0.25rem 1rem 0.5rem;
}

.hc-mobile-find button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--hc-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.hc-desktop-book {
  display: none;
}

@media (min-width: 1024px) {
  .hc-mobile-book,
  .hc-mobile-find {
    display: none;
  }
  .hc-desktop-book {
    display: list-item;
  }
}

/* ===== City Finder Overlay ===== */
.hc-finder-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hc-finder-overlay.active {
  display: flex;
}

.hc-finder {
  background: var(--hc-light);
  border-radius: var(--hc-radius);
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: hcModalIn 0.25s ease-out;
}

.hc-finder__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--hc-border);
}

.hc-finder__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hc-primary);
}

.hc-finder__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--hc-transition);
}

.hc-finder__close svg {
  width: 16px;
  height: 16px;
  color: var(--hc-muted);
}

.hc-finder__close:hover {
  border-color: var(--hc-primary);
  background: var(--hc-primary-light);
}

.hc-finder__close:hover svg {
  color: var(--hc-primary);
}

.hc-finder__body {
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
}

.hc-finder__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.hc-finder__icon svg {
  width: 28px;
  height: 28px;
  color: var(--hc-dark);
}

.hc-finder__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hc-dark);
  margin: 0 0 0.375rem;
}

.hc-finder__desc {
  font-size: 0.85rem;
  color: var(--hc-muted);
  font-style: italic;
  margin: 0 0 1.25rem;
}

.hc-finder__search-box {
  background: var(--hc-white);
  border-radius: var(--hc-radius);
  box-shadow: var(--hc-shadow-md);
  padding: 1rem;
  text-align: left;
}

.hc-finder__input-wrap {
  position: relative;
}

.hc-finder__input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 0.875rem;
  border: 2px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--hc-dark);
  background: var(--hc-white);
  transition: border-color var(--hc-transition);
  box-sizing: border-box;
}

.hc-finder__input:focus {
  outline: none;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.hc-finder__search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--hc-muted);
  pointer-events: none;
}

.hc-finder__results {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-finder__results li {
  border-top: 1px solid var(--hc-border);
}

.hc-finder__results li:first-child {
  border-top: none;
  margin-top: 0.5rem;
}

.hc-finder__result-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.25rem;
  color: var(--hc-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--hc-transition);
}

.hc-finder__result-item:hover {
  color: var(--hc-primary);
}

.hc-finder__no-result {
  padding: 0.75rem 0.25rem 0.25rem;
  color: var(--hc-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.hc-finder__browse {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--hc-muted);
}

.hc-finder__browse a {
  color: var(--hc-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hc-finder__browse a:hover {
  color: var(--hc-primary);
}

/* ===== Promo Strips ===== */
.promo-strips {
  width: 100%;
  font-size: 0;
  line-height: 0;
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 6px 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--hc-transition);
  line-height: 1.4;
  text-align: center;
}

.promo-strip:nth-child(1) {
  background: #0f172a;
  color: #e0f2fe;
}
.promo-strip:nth-child(2) {
  background: var(--hc-primary);
  color: var(--hc-white);
}
.promo-strip:nth-child(3) {
  background: var(--hc-accent);
  color: var(--hc-white);
}
.promo-strip:nth-child(4) {
  background: #f0fdf4;
  color: #166534;
}

.promo-strip:hover {
  filter: brightness(1.08);
}

.promo-strip__arrow {
  font-size: 0.7em;
  opacity: 0.7;
}

/* Mobile: show only 2 strips */
@media (max-width: 767px) {
  .promo-strip:nth-child(1),
  .promo-strip:nth-child(4) {
    display: none;
  }
  .promo-strip {
    font-size: 0.7rem;
    padding: 5px 0.75rem;
  }
}

/* ===== Enhanced Header ===== */
[data-category="house-cleaning"] .header {
  box-shadow: none;
  border-bottom: 1px solid var(--hc-border);
}

/* Utility Bar */
.hc-utility-bar {
  display: none;
  background: var(--hc-light);
  border-bottom: 1px solid var(--hc-border);
  font-size: 0.8rem;
  color: var(--hc-muted);
}

.hc-utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 2rem;
}

.hc-utility-bar__links {
  display: flex;
  gap: 1.25rem;
}

.hc-utility-bar__link {
  color: var(--hc-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--hc-transition);
}

.hc-utility-bar__link:hover {
  color: var(--hc-primary);
}

.hc-utility-bar__phone {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hc-utility-bar__phone a {
  color: var(--hc-dark);
  text-decoration: none;
  font-weight: 600;
}

.hc-utility-bar__phone a:hover {
  color: var(--hc-primary);
}

@media (min-width: 1024px) {
  .hc-utility-bar {
    display: block;
  }
}

/* Main Nav — enhanced for cleaning */
[data-category="house-cleaning"] .nav {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-category="house-cleaning"] .logo {
  font-size: 1.375rem;
  color: var(--hc-primary);
  font-weight: 800;
}

/* (old book-btn overridden above) */

/* Nav CTA button (desktop only, inside nav-list) */
.hc-nav-cta {
  display: none;
  padding: 0.5rem 1.25rem;
  background: #5cc8c8;
  color: var(--hc-white);
  border: none;
  border-radius: var(--hc-radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--hc-transition);
  white-space: nowrap;
}

.hc-nav-cta:hover {
  background: #4ab8b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(92, 200, 200, 0.3);
}

@media (min-width: 1024px) {
  .hc-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
  }
}

/* ===== Quote Modal ===== */
.hc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hc-modal-overlay.active {
  display: flex;
}

.hc-modal {
  position: relative;
  background: var(--hc-white);
  border-radius: var(--hc-radius);
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: hcModalIn 0.25s ease-out;
}

@keyframes hcModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hc-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-light);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--hc-muted);
  cursor: pointer;
  transition: all var(--hc-transition);
}

.hc-modal__close:hover {
  background: var(--hc-border);
  color: var(--hc-dark);
}

.hc-modal__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--hc-dark);
  margin: 0 0 0.25rem;
}

.hc-modal__subtitle {
  font-size: 0.875rem;
  color: var(--hc-muted);
  margin: 0 0 1.5rem;
}

.hc-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hc-modal__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hc-text, #334155);
}

.hc-modal__req {
  color: #ef4444;
}

.hc-modal__field input,
.hc-modal__field select {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 2px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
  font-size: 0.95rem;
  color: var(--hc-dark);
  font-family: inherit;
  background: var(--hc-white);
  transition: border-color var(--hc-transition);
  box-sizing: border-box;
  -webkit-appearance: none;
}

.hc-modal__field input:focus,
.hc-modal__field select:focus {
  outline: none;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.hc-modal__row {
  display: flex;
  gap: 0.75rem;
}

.hc-modal__field--half {
  flex: 1;
  min-width: 0;
}

.hc-city-dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 10;
  background: var(--hc-white, #fff);
  border: 2px solid var(--hc-border, #e2e8f0);
  border-top: none;
  border-radius: 0 0 var(--hc-radius-sm, 8px) var(--hc-radius-sm, 8px);
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hc-city-dropdown.active {
  display: block;
}

.hc-city-dropdown li {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--hc-text, #334155);
  transition: background 0.15s;
}

.hc-city-dropdown li:hover {
  background: var(--hc-bg, #f1f5f9);
}

.hc-city-dropdown li.no-result {
  color: #94a3b8;
  cursor: default;
  font-style: italic;
}

@media (max-width: 480px) {
  .hc-modal__row {
    flex-direction: column;
    gap: 0;
  }
}

.hc-modal__submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, #8ac746 0%, #6ec047 100%);
  color: var(--hc-white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--hc-transition);
  margin-top: 0.25rem;
}

.hc-modal__submit:hover {
  background: linear-gradient(135deg, #7bb83c 0%, #5fad3a 100%);
  box-shadow: 0 4px 16px rgba(138, 199, 70, 0.35);
}

.hc-modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===== Hero Section — Cleaning (LoadUp-inspired light design) ===== */
.hc-hero {
  position: relative;
  background: var(--hc-white);
  color: var(--hc-dark);
  padding: 1.5rem 0 0;
  overflow: hidden;
}

.hc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.hc-hero__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  order: 2;
}

/* Label above title — hidden on mobile like LoadUp */
.hc-hero__label {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hc-accent-dark);
  margin: 0;
}

.hc-hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04rem;
  color: var(--hc-dark);
  margin: 0;
}

.hc-hero__title span {
  color: var(--hc-primary);
}

.hc-hero__subtitle {
  font-size: 1.1rem;
  color: var(--hc-muted);
  line-height: 1.65;
  margin: 0;
}

/* Actions */
.hc-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
  width: 100%;
}

.hc-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #8ac746 0%, #6ec047 100%);
  color: var(--hc-white);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--hc-transition);
  width: 100%;
}

.hc-hero__cta:hover {
  background: linear-gradient(135deg, #7bb83c 0%, #5fad3a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 199, 70, 0.35);
}

/* Reviews row */
.hc-hero__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hc-hero__reviews-stars {
  display: flex;
  gap: 2px;
}

.hc-hero__reviews-stars svg {
  width: 18px;
  height: 18px;
  color: #fbbf24;
}

.hc-hero__reviews-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hc-muted);
}

/* Illustration (right col) — visible on mobile, above text */
.hc-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}

.hc-hero__illustration {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.hc-hero__illustration-svg {
  width: 100%;
  height: auto;
}

/* Sparkle animation */
@keyframes hcSparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hc-hero__sparkle--1 { animation: hcSparkle 2s ease-in-out infinite; }
.hc-hero__sparkle--2 { animation: hcSparkle 2s ease-in-out 0.4s infinite; }
.hc-hero__sparkle--3 { animation: hcSparkle 2s ease-in-out 0.8s infinite; }
.hc-hero__sparkle--4 { animation: hcSparkle 2s ease-in-out 1.2s infinite; }

/* Benefits strip — hidden on mobile like LoadUp */
.hc-hero__benefits-wrap {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hc-hero__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hc-border);
  margin-top: 2.5rem;
}

.hc-hero__benefit {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--hc-border);
}

.hc-hero__benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-primary-light);
  border-radius: 10px;
  flex-shrink: 0;
}

.hc-hero__benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--hc-primary);
}

.hc-hero__benefit-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hc-hero__benefit-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hc-dark);
}

.hc-hero__benefit-desc {
  font-size: 0.8rem;
  color: var(--hc-muted);
}

/* Tablet hero */
@media (min-width: 768px) {
  .hc-hero {
    padding: 4rem 0 0;
  }
  .hc-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
    text-align: left;
  }
  .hc-hero__left {
    flex: 1;
    gap: 1.25rem;
    order: 1;
    align-items: flex-start;
  }
  .hc-hero__label {
    display: inline-block;
  }
  .hc-hero__right {
    flex: 1;
    order: 2;
  }
  .hc-hero__illustration {
    max-width: 460px;
  }
  .hc-hero__title {
    font-size: 3rem;
  }
  .hc-hero__subtitle {
    max-width: 480px;
  }
  .hc-hero__cta {
    width: fit-content;
    border-radius: var(--hc-radius-sm);
    text-transform: none;
    padding: 0.9rem 2.25rem;
  }
  .hc-hero__reviews {
    justify-content: flex-start;
  }
  .hc-hero__benefits-wrap {
    display: block;
    padding: 0 2rem;
  }
  .hc-hero__benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .hc-hero__benefit {
    padding: 1.5rem 1.25rem;
    border-bottom: none;
    border-right: 1px solid var(--hc-border);
  }
  .hc-hero__benefit:last-child {
    border-right: none;
  }
}

/* Desktop hero */
@media (min-width: 1024px) {
  .hc-hero {
    padding: 5rem 0 0;
  }
  .hc-hero__title {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
  }
  .hc-hero__subtitle {
    font-size: 1.15rem;
  }
}

/* ===== Section Base ===== */
.hc-section {
  padding: 3rem 0;
}

.hc-section--alt {
  background: var(--hc-light);
}

.hc-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hc-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hc-section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hc-primary);
  background: var(--hc-primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.hc-section__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--hc-dark);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.hc-section__subtitle {
  font-size: 1.05rem;
  color: var(--hc-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hc-section {
    padding: 4.5rem 0;
  }
  .hc-section__inner {
    padding: 0 2rem;
  }
  .hc-section__title {
    font-size: 2.5rem;
  }
}

/* ===== Wave Divider ===== */
.hc-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}

.hc-wave--flip {
  transform: scaleY(-1);
  margin-top: -2px;
  margin-bottom: 0;
}

/* ===== Services Overview ===== */
.hc-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.hc-service-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 1.5rem;
  transition: all var(--hc-transition);
  position: relative;
  overflow: hidden;
}

.hc-service-card:hover {
  border-color: var(--hc-primary);
  box-shadow: var(--hc-shadow-lg);
  transform: translateY(-4px);
}

.hc-service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-primary-light);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.hc-service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--hc-primary);
}

.hc-service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 0.5rem;
}

.hc-service-card__text {
  font-size: 0.875rem;
  color: var(--hc-muted);
  line-height: 1.65;
  margin: 0;
}

.hc-service-card__price {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hc-primary);
}

@media (min-width: 640px) {
  .hc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hc-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ===== Why Choose Us ===== */
.hc-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.hc-benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hc-benefit-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-primary-light);
  border-radius: 10px;
  flex-shrink: 0;
}

.hc-benefit-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--hc-primary);
}

.hc-benefit-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 0.25rem;
}

.hc-benefit-item__text {
  font-size: 0.85rem;
  color: var(--hc-muted);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .hc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hc-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ===== How It Works ===== */
.hc-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.hc-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--hc-border);
}

.hc-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
}

.hc-step__number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-primary);
  color: var(--hc-white);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--hc-white);
}

.hc-section--alt .hc-step__number {
  box-shadow: 0 0 0 4px var(--hc-light);
}

.hc-step__content {
  padding-top: 0.5rem;
}

.hc-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 0.25rem;
}

.hc-step__text {
  font-size: 0.875rem;
  color: var(--hc-muted);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 768px) {
  .hc-steps {
    gap: 2.5rem;
  }
  .hc-steps::before {
    left: 27px;
  }
  .hc-step__number {
    width: 54px;
    height: 54px;
    font-size: 1.125rem;
  }
}

/* ===== Pricing Preview ===== */
.hc-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.hc-pricing-card {
  background: var(--hc-white);
  border: 2px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--hc-transition);
  position: relative;
}

.hc-pricing-card--featured {
  border-color: var(--hc-primary);
  box-shadow: var(--hc-shadow-lg);
}

.hc-pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hc-primary);
  color: var(--hc-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.hc-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hc-shadow-lg);
}

.hc-pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 0.5rem;
}

.hc-pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--hc-primary);
  margin-bottom: 0.25rem;
}

.hc-pricing-card__price small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hc-muted);
}

.hc-pricing-card__desc {
  font-size: 0.825rem;
  color: var(--hc-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.hc-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.hc-pricing-card__features li {
  padding: 0.375rem 0;
  font-size: 0.85rem;
  color: var(--hc-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-pricing-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--hc-success-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.hc-pricing-card__btn {
  display: block;
  width: 100%;
  padding: 0.625rem;
  border-radius: var(--hc-radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all var(--hc-transition);
  border: 2px solid var(--hc-primary);
  color: var(--hc-primary);
  background: transparent;
  cursor: pointer;
}

.hc-pricing-card__btn:hover {
  background: var(--hc-primary);
  color: var(--hc-white);
}

.hc-pricing-card--featured .hc-pricing-card__btn {
  background: var(--hc-primary);
  color: var(--hc-white);
}

.hc-pricing-card--featured .hc-pricing-card__btn:hover {
  background: var(--hc-primary-dark);
  border-color: var(--hc-primary-dark);
}

@media (min-width: 640px) {
  .hc-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hc-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ===== Social Proof / Testimonials ===== */
.hc-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.hc-testimonial {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 1.5rem;
}

.hc-testimonial__stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.hc-testimonial__text {
  font-size: 0.9rem;
  color: var(--hc-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.hc-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hc-testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hc-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--hc-primary);
  flex-shrink: 0;
}

.hc-testimonial__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hc-dark);
}

.hc-testimonial__location {
  font-size: 0.75rem;
  color: var(--hc-muted);
}

@media (min-width: 640px) {
  .hc-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hc-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ===== Trust Badges ===== */
.hc-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hc-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  transition: all var(--hc-transition);
}

.hc-trust-badge:hover {
  box-shadow: var(--hc-shadow-md);
  border-color: var(--hc-primary);
}

.hc-trust-badge__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-primary-light);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.hc-trust-badge__icon svg {
  width: 24px;
  height: 24px;
  color: var(--hc-primary);
}

.hc-trust-badge__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hc-dark);
  margin-bottom: 0.25rem;
}

.hc-trust-badge__text {
  font-size: 0.75rem;
  color: var(--hc-muted);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 640px) {
  .hc-trust-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hc-trust-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

/* ===== Service Areas ===== */
.hc-areas-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hc-areas-text p {
  font-size: 0.95rem;
  color: var(--hc-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hc-areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.hc-areas-list li {
  padding: 0.5rem 0.75rem;
  background: var(--hc-light);
  border-radius: var(--hc-radius-sm);
  font-size: 0.85rem;
  color: var(--hc-text);
  text-align: center;
}

@media (min-width: 768px) {
  .hc-areas-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .hc-areas-text {
    flex: 1;
  }
  .hc-areas-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== FAQ Accordion ===== */
.hc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.hc-faq-item {
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--hc-white);
}

.hc-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hc-dark);
  list-style: none;
  transition: background var(--hc-transition);
}

.hc-faq-item summary::-webkit-details-marker {
  display: none;
}

.hc-faq-item summary:hover {
  background: var(--hc-light);
}

.hc-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--hc-muted);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--hc-transition);
}

.hc-faq-item[open] summary::after {
  content: '-';
}

.hc-faq-item__answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--hc-muted);
  line-height: 1.7;
}

/* ===== CTA Banner ===== */
.hc-cta-banner {
  background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-accent) 100%);
  padding: 3rem 0;
  text-align: center;
  color: var(--hc-white);
}

.hc-cta-banner__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hc-cta-banner__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hc-cta-banner__text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hc-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--hc-white);
  color: var(--hc-primary);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--hc-radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--hc-transition);
}

.hc-cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== Limited Offer Badge ===== */
.hc-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

/* ===== Override header for cleaning ===== */
[data-category="house-cleaning"] .nav-link:hover,
[data-category="house-cleaning"] .nav-link.active {
  color: var(--hc-primary);
}

[data-category="house-cleaning"] .btn-hero {
  background: var(--hc-primary);
  color: var(--hc-white);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

[data-category="house-cleaning"] .btn-hero:hover {
  background: var(--hc-primary-dark);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* ===== Footer override ===== */
[data-category="house-cleaning"] .footer-links a:hover,
[data-category="house-cleaning"] .footer-contact a:hover {
  color: var(--hc-primary);
}

/* ===== Mobile CTA override ===== */
[data-category="house-cleaning"] .mobile-cta-btn {
  background: var(--hc-primary);
}

[data-category="house-cleaning"] .mobile-cta-btn:hover {
  background: var(--hc-primary-dark);
}

/* ===== State/City Hero ===== */
.hc-state-hero {
  background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-accent) 100%);
  color: var(--hc-white);
  padding: 3rem 0;
  text-align: center;
}

.hc-state-hero__title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: var(--hc-white);
  line-height: 1.2;
}

.hc-state-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0 0 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hc-state-hero {
    padding: 4.5rem 0;
  }
  .hc-state-hero__title {
    font-size: 3rem;
  }
}

/* ===== State Cities Grid ===== */
.hc-state-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.hc-state-city-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
  text-decoration: none;
  transition: all var(--hc-transition);
}

.hc-state-city-card:hover {
  border-color: var(--hc-primary);
  box-shadow: var(--hc-shadow-md);
  transform: translateY(-2px);
}

.hc-state-city-name {
  font-weight: 600;
  color: var(--hc-dark);
  font-size: 1rem;
}

.hc-state-city-pop {
  font-size: 0.8rem;
  color: var(--hc-muted);
  margin-top: 0.2rem;
}
