/* ===========================================================
   GIGI CARE — Main Stylesheet
   Brand: warm magenta/pink, serif + rounded sans, heart-in-hands motif
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Mulish:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette */
  --pink: #EC008C;
  --pink-deep: #A8005F;
  --pink-mid: #D6007A;
  --pink-soft: #FDEEF6;
  --blush: #FFF8FB;
  --pink-line: #F6C9E2;

  --ink: #2B2730;
  --ink-soft: #6B6470;
  --ink-faint: #9B93A0;
  --white: #FFFFFF;
  --cream: #FFFCFD;

  --success: #1E8E5A;
  --warn: #B8860B;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(168, 0, 95, 0.08);
  --shadow-card: 0 4px 20px rgba(168, 0, 95, 0.10);
  --shadow-lift: 0 18px 40px rgba(168, 0, 95, 0.16);

  --container: min(1320px, 94vw);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); margin: 0; color: var(--ink); font-weight: 600; }
p { margin: 0; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

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

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.section {
  padding: var(--space-2xl) 0;
}
.section--tight { padding: var(--space-xl) 0; }
.section--soft { background: var(--pink-soft); }
.section--ink {
  background: linear-gradient(160deg, #3D0A26 0%, #6E0140 55%, var(--pink-deep) 100%);
  color: var(--white);
}
.section--ink h2, .section--ink h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.section-head {
  max-width: 680px;
  margin-bottom: var(--space-lg);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.15; }
.section-head p { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1.08rem; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }

.btn-light {
  background: var(--white);
  color: var(--pink-deep);
}
.btn-light:hover { background: var(--pink-soft); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* -------------------- Header / Nav -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pink-line);
}

.topbar {
  background: var(--pink-deep);
  color: var(--white);
  font-size: 1.08rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--white); font-weight: 700; }
.topbar-links { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar-links span { opacity: 0.85; margin-right: 0.3rem; }
.topbar-links:last-child span { font-weight: 500; opacity: 0.9; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav-logo img { height: 104px; width: auto; flex-shrink: 0; }
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.nav-logo .logo-text strong {
  font-family: var(--font-display);
  font-size: 1.68rem;
  color: var(--pink-deep);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-logo .logo-text span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: nowrap;
}
.nav-mobile-cta { display: none; }
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--pink-deep); }
.nav-links a.is-active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2.5px;
  background: var(--pink-deep);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -9px; }
.nav-toggle span::after { top: 9px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* -------------------- Hero / Slider -------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #2A0A1A;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.hero-slider {
  position: relative;
  height: clamp(480px, 60vh, 620px);
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  background: var(--pink-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}
.hero-slide.is-active { transform: translateX(0); z-index: 2; pointer-events: auto; }

.hero-slide-panel {
  flex: 0 0 44%;
  max-width: 44%;
  background: linear-gradient(160deg, var(--pink-deep) 0%, #6b0a44 100%);
  display: flex;
  align-items: center;
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
  position: relative;
  z-index: 3;
  order: 2;
}
.hero-slide-media {
  flex: 1;
  position: relative;
  overflow: hidden;
  order: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-text { max-width: 480px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.95);
  color: var(--pink-deep);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.4rem;
}
.hero-slide h1 {
  font-size: clamp(2rem, 2.6vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: var(--white);
}
.hero-slide h1 em {
  font-style: italic;
  color: #FF9FD2;
}
.hero-slide p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 4.2rem;
  right: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 250px;
  z-index: 3;
}
.hero-badge .heart-icon { flex-shrink: 0; width: 38px; height: 38px; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--pink-deep); }
.hero-badge span { font-size: 0.82rem; color: var(--ink-soft); }

.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 20;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.hero-dots button.is-active { background: var(--white); transform: scale(1.2); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 1.75rem; }
.hero-arrow.next { right: 1.75rem; }

/* Image placeholder system (used until real photography is added) */
.img-placeholder {
  background: linear-gradient(150deg, #FFD9EC 0%, var(--pink-soft) 45%, #FBC8E3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--pink);
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  width: 78%;
  height: 78%;
  max-width: 320px;
  max-height: 320px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(168,0,95,0.10);
}
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  background: rgba(255,255,255,0.92);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(168,0,95,0.08);
}
.img-placeholder svg {
  position: relative;
  width: 42%;
  max-width: 150px;
  opacity: 0.85;
  filter: drop-shadow(0 8px 18px rgba(168,0,95,0.18));
}

/* -------------------- Trust strip -------------------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--pink-line);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.trust-item svg { color: var(--pink); flex-shrink: 0; width: 26px; height: 26px; }

/* -------------------- Service boxes (clickable cards) -------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--pink-line);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: block;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  color: var(--pink-deep);
  transition: background 0.25s ease, color 0.25s ease;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--pink); color: var(--white); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.1rem; }
.service-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--pink-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* -------------------- Stat band -------------------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  color: var(--white);
}
.stat-item span { font-size: 0.92rem; opacity: 0.85; }

/* -------------------- Steps -------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.step-card {
  position: relative;
  padding: 1.8rem 1.6rem;
  background: var(--blush);
  border-radius: var(--radius-md);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--pink-line);
  line-height: 1;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.step-card h4 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* -------------------- Testimonials -------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.testimonial-stars { color: var(--pink); display: flex; gap: 3px; }
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--ink-faint); }

/* -------------------- Cards / generic -------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-line);
  padding: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.check-list svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--pink); margin-top: 1px; }
.check-list strong { color: var(--ink); }

/* -------------------- Heart divider (signature element) -------------------- */
.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--space-lg) 0;
}
.heart-divider .line { height: 1px; width: 90px; background: var(--pink-line); }
.heart-divider svg { width: 22px; height: 22px; color: var(--pink); }

/* -------------------- CTA banner -------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-deep) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.9rem; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 1.8rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -------------------- Service Areas / Map -------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--pink-line);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.area-card svg { color: var(--pink); width: 22px; height: 22px; flex-shrink: 0; }
.area-card strong { display: block; font-size: 1rem; }
.area-card span { font-size: 0.82rem; color: var(--ink-faint); }

/* -------------------- Forms -------------------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--pink-line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--pink-deep);
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--pink-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.form-grid.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field.span-2 { grid-column: span 2; }
.field label { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.field .hint { font-weight: 400; color: var(--ink-faint); font-size: 0.8rem; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field select,
.field textarea {
  border: 1.5px solid var(--pink-line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }

.radio-row, .check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.radio-pill, .check-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--pink-line);
  border-radius: 50px;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.radio-pill:has(input:checked), .check-pill:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-soft);
}
.radio-pill input, .check-pill input { accent-color: var(--pink); }

.form-note {
  background: var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  display: flex;
  gap: 0.7rem;
}
.form-note svg { color: var(--pink-deep); flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.consent-row input { margin-top: 4px; accent-color: var(--pink); flex-shrink: 0; }

.form-error {
  background: #FDECEC;
  border: 1px solid #F3B4B4;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #9A2A2A;
}
.form-error svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }

.btn[disabled] { opacity: 0.7; cursor: not-allowed; transform: none !important; }

.waive-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--pink-soft);
  border: 1.5px solid var(--pink-line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.waive-toggle input { margin-top: 3px; accent-color: var(--pink); flex-shrink: 0; width: 18px; height: 18px; }
.waive-toggle span { font-weight: 400; display: block; margin-top: 0.15rem; color: var(--ink-soft); font-size: 0.85rem; }
.rp-fields.is-hidden { display: none; }

.file-field {
  border: 1.5px dashed var(--pink-line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: var(--cream);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.file-field:has(input:focus) { border-color: var(--pink); }
.file-field input[type="file"] {
  width: 100%;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.file-field input[type="file"]::file-selector-button {
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.file-field input[type="file"]::file-selector-button:hover { background: var(--pink-deep); }

/* -------------------- Contact -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact-item .icon-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon-circle svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }
.contact-item a:hover { color: var(--pink-deep); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--pink-line);
  height: 280px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* -------------------- Policies / accordion -------------------- */
.accordion-item {
  border: 1px solid var(--pink-line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}
.accordion-trigger svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--pink);
  transition: transform 0.25s ease;
}
.accordion-item.is-open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--blush);
}
.accordion-item.is-open .accordion-panel { max-height: 600px; }
.accordion-panel-inner {
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}
.accordion-panel-inner p { margin-bottom: 0.8rem; }
.accordion-panel-inner ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 0.8rem; }
.accordion-panel-inner li { margin-bottom: 0.4rem; }

.license-box {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--white);
  border: 1.5px dashed var(--pink);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
}
.license-box svg { color: var(--pink-deep); width: 34px; height: 34px; flex-shrink: 0; }
.license-box strong { display: block; font-size: 0.98rem; }
.license-box span { font-size: 0.86rem; color: var(--ink-soft); }

/* -------------------- Team / About -------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.value-card { text-align: center; padding: 1.6rem 1.2rem; }
.value-card .service-icon { margin: 0 auto 1.1rem; }
.value-card h4 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.88rem; color: var(--ink-soft); }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--pink-line);
}
.timeline-item { position: relative; padding-bottom: 1.8rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--pink-line);
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* -------------------- FAQ small lists / pricing-style notes -------------------- */
.note-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--pink-soft);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
}
.note-banner svg { color: var(--pink-deep); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.note-banner p { font-size: 0.92rem; color: var(--ink-soft); }
.note-banner strong { color: var(--ink); }

/* -------------------- Footer -------------------- */
.site-footer {
  background: linear-gradient(160deg, #3D0526 0%, #24041A 100%);
  color: rgba(255,255,255,0.82);
  padding-top: var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; }
.footer-logo img { height: 84px; }
.footer-logo strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); }
.footer-about p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.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.2s ease;
}
.footer-social a:hover { background: var(--pink); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col li { margin-bottom: 0.75rem; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-col a { color: rgba(255,255,255,0.72); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* -------------------- Page hero (interior pages) -------------------- */
.page-hero {
  background: linear-gradient(160deg, #3D0A26 0%, #6E0140 55%, var(--pink-deep) 100%);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}
.page-hero .eyebrow { color: var(--pink-line); }
.page-hero .eyebrow::before { background: var(--pink-line); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.9rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1.1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }

/* -------------------- Floating call button (mobile) -------------------- */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 600;
  background: var(--pink);
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
}
.float-call svg { width: 24px; height: 24px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1240px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .topbar .container { justify-content: center; text-align: center; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: var(--white);
    padding: 1.5rem;
    gap: 1.1rem;
    box-shadow: var(--shadow-card);
    border-top: 1px solid var(--pink-line);
  }
  .nav-links.is-open .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--pink-soft);
  }
  .nav-links.is-open .nav-mobile-cta .btn { width: 100%; }
  .nav-cta { display: none; }

  .hero-slide { flex-direction: column; }
  .hero-slide-panel { flex: 0 0 auto; max-width: 100%; padding: 1.6rem 1.25rem 1.9rem; order: 2; }
  .hero-slide-media { flex: 1; min-height: 0; order: 1; }
  .hero-text { max-width: 100%; }
  .hero-slider { height: clamp(600px, 92vh, 760px); }
  .hero-slide-bg { object-position: center 18%; }
  .hero-eyebrow { font-size: 0.7rem; padding: 0.4rem 0.85rem; margin-bottom: 1rem; }
  .hero-slide h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 0.8rem; }
  .hero-slide p { font-size: 1rem; margin-bottom: 1.4rem; }
  .hero-arrow { display: none; }
  .hero-badge { display: none; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .two-col .hero-media, .two-col img, .two-col .img-placeholder { order: -1; }

  .float-call { display: flex; }
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.span-2 { grid-column: span 1; }
  .section { padding: var(--space-xl) 0; }
  .section-head h2 { font-size: 1.65rem; }
  .cta-banner { padding: var(--space-lg) 1.4rem; }
  .nav-cta.is-open { top: calc(100% + 280px); }

  /* "Who We Are" mixed-photo collage: side-by-side on mobile instead of corner overlap */
  .two-col > .hero-media[style*="position:relative"] {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0.6rem;
    align-items: stretch;
    aspect-ratio: 4/3.2;
  }
  .two-col > .hero-media[style*="position:relative"] > img {
    aspect-ratio: auto !important;
    border-radius: 20px !important;
    width: 100% !important;
    height: 100% !important;
  }
  .two-col > .hero-media[style*="position:relative"] > div {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px !important;
    border-width: 4px !important;
  }
}

@media (max-width: 480px) {
  .hero-badge { display: none; }
  .topbar-links { justify-content: center; }
  .value-grid { grid-template-columns: 1fr; }
}

/* -------------------- Services quick-nav pills -------------------- */
.svc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.svc-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border: 1.5px solid var(--pink-line);
  border-radius: 50px;
  padding: 0.65rem 1.3rem 0.65rem 0.75rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.svc-nav a:hover { border-color: var(--pink); background: var(--pink-soft); color: var(--pink-deep); transform: translateY(-2px); }
.svc-nav a svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--pink); }

/* -------------------- Services horizontal card list -------------------- */
.svc-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--pink-line);
  display: flex;
  align-items: stretch;
  gap: 1.8rem;
  padding: 1.4rem;
  scroll-margin-top: 110px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.svc-card:nth-child(even) { flex-direction: row-reverse; }
.svc-img {
  flex: 0 0 190px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform 0.4s ease; }
.svc-card:hover .svc-img img { transform: scale(1.04); }
.svc-body { padding: 0.4rem 0.6rem; flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.svc-body .service-icon { margin-bottom: 0.8rem; }
.svc-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.svc-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1rem; }
.svc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.svc-list li { font-size: 0.86rem; color: var(--ink-soft); padding-left: 1.2rem; position: relative; }
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--pink); font-weight: 700; }

@media (max-width: 720px) {
  .svc-card, .svc-card:nth-child(even) { flex-direction: column; padding: 1.1rem; gap: 1.1rem; }
  .svc-img { width: 100%; height: 170px; flex: none; }
  .svc-body { padding: 0; }
}
