/* ============================================
   TRUSTED MAIDS — Design System
   Mobile-First CSS (320px base)
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Lora:wght@400;500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --navy-dark: #1C2340;
  --navy: #2D3561;
  --navy-light: #3D4571;
  --pink-primary: #E75B97;
  --pink-light: #F4A6C4;
  --pink-lightest: #F8C8DC;
  --pink-bg: #FFF0F5;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-text: #6B7280;
  --text-dark: #1C2340;
  --success: #10B981;
  --warning: #F59E0B;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --font-family: 'Lora', Georgia, 'Times New Roman', serif;
  --h1-size: clamp(2.5rem, 5vw, 4rem);
  --h2-size: clamp(1.8rem, 3vw, 2.8rem);
  --h3-size: clamp(1.25rem, 2vw, 1.5rem);
  --body-size: 1rem;
  --small-size: 0.875rem;

  /* Spacing */
  --section-padding: 3.5rem 0;
  --container-padding: 0 1.25rem;
  --card-padding: 1.5rem;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28, 35, 64, 0.08);
  --shadow-md: 0 4px 12px rgba(28, 35, 64, 0.1);
  --shadow-lg: 0 8px 30px rgba(28, 35, 64, 0.12);
  --shadow-xl: 0 12px 40px rgba(28, 35, 64, 0.16);

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-spring);
  --transition-base: 0.3s var(--ease-spring);
  --transition-slow: 0.4s var(--ease-spring);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--body-size);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }

p {
  color: var(--gray-text);
  line-height: 1.7;
}

.section-label {
  font-family: var(--font-heading);
  font-size: var(--small-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pink-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-text);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white p { color: rgba(255, 255, 255, 0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  min-height: 48px;
  min-width: 44px;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background-color var(--transition-base);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45, 53, 97, 0.3);
}

.btn-primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(45, 53, 97, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45, 53, 97, 0.3);
}

.btn-secondary--white {
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary--white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-pink {
  background: var(--pink-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(231, 91, 151, 0.3);
}

.btn-pink:hover {
  background: #d44a86;
  box-shadow: 0 6px 20px rgba(231, 91, 151, 0.4);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--small-size);
  min-height: 44px;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-text .trusted {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-primary);
}

.navbar__logo-text .maids {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--navy);
}

.navbar__links {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__links a:hover {
  color: var(--pink-primary);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-primary);
  transition: width var(--transition-base);
}

.navbar__links a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown__trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  padding-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: all var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

.nav-dropdown__menu a:hover {
  background: var(--pink-bg);
}

.nav-dropdown__menu a::after {
  display: none;
}

.navbar__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
}

.mobile-menu a:hover {
  color: var(--pink-primary);
}

.mobile-menu .btn {
  margin-top: 1.5rem;
  text-align: center;
}

.mobile-menu__services {
  padding-left: 1rem;
}

.mobile-menu__services a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-text);
}

/* ---------- Promo Banner ---------- */
.promo-banner {
  background: linear-gradient(90deg, rgba(28,35,64,0.65), rgba(45,53,97,0.65));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 0.85rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.promo-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-banner__text {
  color: rgba(255, 255, 255, 0.9);
}

.promo-banner__text strong {
  color: #E75B97;
}

.promo-banner__link {
  background: #E75B97;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.promo-banner__link:hover {
  background: #d14a85;
}

.promo-banner__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.promo-banner__close:hover {
  color: #fff;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--pink-lightest);
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Homepage hero: position maids to the right, keep heads visible */
.hero--home .hero__bg img {
  object-position: right top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 35, 64, 0.88) 0%, rgba(45, 53, 97, 0.82) 100%);
  z-index: -1;
}

/* Homepage hero: subtle left-fade gradient — text card handles readability */
.hero--home .hero__overlay {
  background: linear-gradient(90deg, rgba(28, 35, 64, 0.35) 0%, rgba(28, 35, 64, 0.15) 40%, rgba(28, 35, 64, 0.0) 65%);
}

.hero__content {
  max-width: 480px;
  text-align: left;
}

/* Homepage hero: frosted background card behind copy */
.hero--home .hero__content {
  max-width: 620px;
  background: rgba(28, 35, 64, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.25rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pink-light);
  margin-bottom: 1rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(244, 166, 196, 0.3);
  border-radius: 100px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  transition: transform var(--transition-base);
}

.trust-badge:hover {
  transform: translateY(-2px);
}

.trust-badge__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--pink-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge__icon svg {
  width: 24px;
  height: 24px;
  color: var(--pink-primary);
}

.trust-badge__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ---------- Services Section ---------- */
.services {
  padding: var(--section-padding);
  background: var(--gray-light);
}

.services__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-lightest);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--pink-lightest), var(--pink-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.service-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition-base);
}

.service-card__link:hover {
  gap: 0.625rem;
}

/* ---------- Why Trust Us Section ---------- */
.why-trust {
  padding: var(--section-padding);
  background: var(--navy-dark);
}

.why-trust__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-trust__header h2 {
  color: var(--white);
}

.why-trust__header .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.why-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  transition: transform var(--transition-base),
              background var(--transition-base);
}

.trust-feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.trust-feature__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.trust-feature__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.trust-feature h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.trust-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat__number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--pink-primary);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ---------- Meet Our Maids ---------- */
.meet-maids {
  padding: var(--section-padding);
  background: var(--white);
}

.meet-maids__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.meet-maids__header .section-subtitle {
  margin: 0 auto;
}

.meet-maids__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Maid Profile Card */
.maid-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.maid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.maid-card__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-lightest), var(--pink-light));
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 4px 14px rgba(231, 91, 151, 0.2);
}

.maid-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maid-card h3 {
  margin-bottom: 0.25rem;
}

.maid-card__years {
  font-size: var(--small-size);
  color: var(--gray-text);
  margin-bottom: 0.75rem;
}

.maid-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.maid-card__rating svg {
  width: 18px;
  height: 18px;
  color: var(--warning);
  fill: var(--warning);
}

.maid-card__fact {
  font-size: var(--small-size);
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
}

.maid-card .btn {
  width: 100%;
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: var(--section-padding);
  background: var(--gray-light);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.how-it-works__header .section-subtitle {
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.step__icon {
  width: 64px;
  height: 64px;
  background: var(--pink-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step__icon svg {
  width: 28px;
  height: 28px;
  color: var(--pink-primary);
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Step connector arrow (hidden on mobile) */
.step__connector {
  display: none;
}

/* ---------- Before & After ---------- */
.before-after {
  padding: var(--section-padding);
  background: var(--white);
}

.before-after__header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.before-after__card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.before-after__card img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after__label {
  text-align: center;
  padding: 0.75rem 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.before-after__label--before {
  color: #dc3545;
}

.before-after__label--after {
  color: #10B981;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials__header .section-subtitle {
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--warning);
  fill: var(--warning);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--pink-light);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pink-primary);
  font-size: 1.125rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.testimonial-card__detail {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

/* ---------- Gift Voucher CTA ---------- */
.gift-cta {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-light) 100%);
  text-align: center;
}

.gift-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.gift-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.gift-cta .btn {
  background: var(--white);
  color: var(--pink-primary);
  font-weight: 700;
}

.gift-cta .btn:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Gift Voucher Card */
.voucher-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--pink-lightest);
  position: relative;
  overflow: hidden;
}

.voucher-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--pink-light));
}

.voucher-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pink-primary);
  margin-bottom: 0.5rem;
}

.voucher-card__occasion {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
}

/* ---------- Blog / Cleaning Tips ---------- */
.blog-preview {
  padding: var(--section-padding);
  background: var(--white);
}

.blog-preview__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-preview__header .section-subtitle {
  margin: 0 auto;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Blog Post Card */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  height: 220px;
  background: var(--pink-lightest);
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.blog-card__body {
  padding: 1.25rem;
}

.blog-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-primary);
  background: var(--pink-bg);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.blog-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition-base);
}

.blog-card__link:hover {
  gap: 0.625rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: var(--section-padding);
  background: var(--navy);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.final-cta__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.final-cta .btn-group {
  align-items: center;
  margin-bottom: 1.5rem;
}

.final-cta__trust {
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  padding: 3rem 0 0;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--pink-primary);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--pink-light);
}

.footer__col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer__phone {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pink-light) !important;
  display: block;
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--small-size);
  margin-top: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast),
              transform var(--transition-fast);
}

.footer__social a:hover {
  background: var(--pink-primary);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 0.625rem;
  gap: 0.5rem;
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--border-radius-sm);
  min-height: 48px;
}

.sticky-cta__call {
  background: var(--pink-primary);
  color: var(--white);
}

.sticky-cta__book {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Multi-Step Form ---------- */
.form-section {
  padding: var(--section-padding);
}

.booking-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.form-progress__step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.form-progress__step.active {
  background: var(--navy);
  color: var(--white);
}

.form-progress__step.completed {
  background: var(--success);
  color: var(--white);
}

.form-progress__line {
  width: 40px;
  height: 2px;
  background: var(--gray-light);
  transition: background var(--transition-base);
}

.form-progress__line.active {
  background: var(--navy);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(231, 91, 151, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder {
  color: var(--gray-text);
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.form-actions .btn {
  flex: 1;
}

/* ---------- FAQ Accordion ---------- */
.faq {
  padding: var(--section-padding);
}

.faq__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--pink-primary);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
}


/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-spring),
              transform 0.6s var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-spring),
              transform 0.5s var(--ease-spring);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility Classes ---------- */
.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;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Add bottom padding on mobile for sticky CTA */
body {
  padding-bottom: 80px;
}

/* ============================================
   TABLET — min-width: 768px
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-padding: 4.5rem 0;
    --card-padding: 1.75rem;
  }

  body {
    padding-bottom: 0;
  }

  .btn-group {
    flex-direction: row;
    align-items: center;
  }

  /* Navbar */
  .navbar__inner {
    height: 72px;
  }

  .promo-banner {
    top: 72px;
  }

  .hamburger {
    display: none;
  }

  .navbar__links {
    display: flex;
  }

  .navbar__cta {
    display: inline-flex;
  }

  .mobile-menu {
    display: none !important;
  }

  /* Trust Strip */
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Why Trust */
  .why-trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Meet Maids */
  .meet-maids__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* How It Works */
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .step__connector {
    display: block;
    position: absolute;
    top: 28px;
    right: -1rem;
    color: var(--pink-light);
  }

  .step:last-child .step__connector {
    display: none;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Blog */
  .blog-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Sticky CTA — hide on tablet+ */
  .sticky-cta {
    display: none;
  }
}

/* ============================================
   DESKTOP — min-width: 1024px
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-padding: 5.5rem 0;
    --card-padding: 2rem;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Hero */
  .hero__content {
    max-width: 620px;
  }
}

/* ============================================
   LARGE DESKTOP — min-width: 1280px
   ============================================ */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar, .sticky-cta, .mobile-menu {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
