/* =====================================================
   Women and Wellbeing — Custom Stylesheet
   Where Science Meets the Soul
   ===================================================== */

:root {
  --teal: #4A9E9E;
  --teal-deep: #2E7A7A;
  --teal-light: rgba(74,158,158,0.08);
  --sage: #8BAF8D;
  --sage-light: #C4D9C5;
  --sage-pale: #EBF3EB;
  --ocean: #3B7DBF;
  --ocean-deep: #1E5A9C;
  --cream: #FAF8F4;
  --warm-white: #FDFCFA;
  --text-dark: #1E2D2D;
  --text-mid: #4A5E5E;
  --text-soft: #7A9090;
  --divider: #D8E8D8;
}

* { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
  padding: 8px 0;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(74,158,158,0.08);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand em {
  color: var(--teal-deep);
  font-style: italic;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text-mid) !important;
  padding: 8px 14px !important;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--teal-deep) !important;
}
.btn-nav-cta {
  background: var(--teal);
  color: #fff !important;
  border: none;
  border-radius: 99px;
  padding: 8px 22px !important;
  font-size: 0.82rem;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}
.nav-phone {
  font-size: 0.82rem;
  color: var(--teal-deep) !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--warm-white) 0%, var(--sage-pale) 40%, var(--cream) 100%);
  overflow: hidden;
  padding-top: 80px;
}
/* Decorative circles */
.hero-deco-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(139,175,141,0.2);
  pointer-events: none;
}
.hero-deco-2 {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(74,158,158,0.15);
  pointer-events: none;
}
.hero-deco-3 {
  position: absolute;
  top: 50%; right: 8%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,175,141,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin-bottom: 24px;
  color: var(--text-dark);
}
.hero h1 em {
  color: var(--teal-deep);
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 32px;
}

/* Buttons */
.btn-primary-brand {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}
.btn-primary-brand:hover {
  background: var(--teal-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,158,158,0.25);
}
.btn-outline-brand {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal);
  border-radius: 99px;
  padding: 13px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s;
}
.btn-outline-brand:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero right visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-logo-main {
  width: 320px;
  height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(74,158,158,0.15));
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
/* Concentric rings behind logo */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  z-index: 1;
}
.hero-ring-1 {
  width: 380px; height: 380px;
  border-color: rgba(139,175,141,0.25);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-ring-2 {
  width: 440px; height: 440px;
  border-color: rgba(74,158,158,0.15);
  animation: ringPulse 4s ease-in-out 0.5s infinite;
}
.hero-ring-3 {
  width: 500px; height: 500px;
  border-color: rgba(139,175,141,0.08);
  animation: ringPulse 4s ease-in-out 1s infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.6; }
}
/* Floating badges */
.floating-badge {
  position: absolute;
  background: var(--warm-white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 400;
  z-index: 3;
  white-space: nowrap;
}
.floating-badge i { font-size: 1.2rem; color: var(--teal); }
.badge-1 { bottom: 12%; left: 2%; animation: floatY 4s ease-in-out infinite; }
.badge-2 { top: 12%; right: 2%; animation: floatY 4s ease-in-out 1s infinite; }
.badge-3 { top: 50%; right: -5%; animation: floatY 4s ease-in-out 2s infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Decorative dots pattern */
.dot-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--sage-light) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.4;
  pointer-events: none;
}

/* ===================== SECTION COMMON ===================== */
section { padding: 100px 0; }
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-heading em {
  color: var(--teal-deep);
  font-style: italic;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
}
.section-sub.centered { margin: 0 auto; }

/* Decorative leaf SVG separator */
.section-decor {
  text-align: center;
  margin-bottom: 16px;
}
.section-decor svg { opacity: 0.3; }

/* ===================== ABOUT / MISSION ===================== */
.about-section {
  background: var(--warm-white);
  position: relative;
}
.about-section .dot-pattern {
  top: 40px; right: 40px;
}
.mission-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.mission-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.mission-card:hover::after { opacity: 1; }
.mission-card:hover {
  border-color: var(--sage);
  box-shadow: 0 8px 32px rgba(74,158,158,0.08);
  transform: translateY(-4px);
}
.mission-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.mission-icon.teal { background: rgba(74,158,158,0.1); color: var(--teal); }
.mission-icon.sage { background: rgba(139,175,141,0.15); color: var(--sage); }
.mission-icon.ocean { background: rgba(59,125,191,0.1); color: var(--ocean); }
.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.mission-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
}

/* ===================== PILLARS ===================== */
.pillars-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%);
  position: relative;
}
.pillar-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--warm-white);
  border: 1px solid var(--divider);
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(74,158,158,0.1);
  border-color: var(--teal);
}
.pillar-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--teal);
  transition: all 0.3s;
}
.pillar-card:hover .pillar-icon-ring {
  border-color: var(--teal);
  background: var(--teal-light);
}
.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ===================== FOUNDER ===================== */
.founder-section {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(139,175,141,0.06) 100%);
  pointer-events: none;
}
.founder-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.founder-img-wrapper {
  position: relative;
  display: inline-block;
}
.founder-img-wrapper::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--sage-light);
  border-radius: 24px;
  z-index: 0;
}
.founder-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,158,0.15) 0%, transparent 70%);
  z-index: 0;
}
.founder-img {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.credential-pill {
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 400;
  border: 1.5px solid var(--sage-light);
  background: var(--sage-pale);
  color: var(--text-dark);
}
.founder-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--divider);
}
.stat-item h4 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--teal-deep);
  margin-bottom: 2px;
}
.stat-item p {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0;
}

/* ===================== BOOK ===================== */
.book-section {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 50%, rgba(74,158,158,0.06) 100%);
  position: relative;
  overflow: hidden;
}
.book-card {
  background: var(--warm-white);
  border: 1px solid var(--divider);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.04);
}
.book-img-wrapper {
  text-align: center;
}
.book-cover {
  max-width: 260px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.4s;
}
.book-cover:hover {
  transform: rotate(-2deg) translateY(-8px);
}
.book-details h3 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
}
.book-details h3 em {
  color: var(--teal-deep);
  font-style: italic;
}
.book-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  font-style: italic;
}
.book-details p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.book-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.book-highlights li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.book-highlights li::before {
  content: '\F270';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.85rem;
}
.btn-amazon {
  background: #FF9900;
  color: #111;
  border: none;
  border-radius: 99px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-amazon:hover {
  background: #e68a00;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,0,0.3);
}
.book-badge {
  display: inline-block;
  background: rgba(74,158,158,0.1);
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

/* ===================== PROGRAMS ===================== */
.programs-section {
  background: var(--cream);
  position: relative;
}
.program-card {
  background: var(--warm-white);
  border: 1px solid var(--divider);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(74,158,158,0.1);
  border-color: var(--teal);
}
.program-header {
  padding: 28px 28px 20px;
  position: relative;
}
.program-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}
.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.program-icon.teal-bg { background: rgba(74,158,158,0.1); color: var(--teal); }
.program-icon.sage-bg { background: rgba(139,175,141,0.15); color: var(--sage); }
.program-icon.ocean-bg { background: rgba(59,125,191,0.1); color: var(--ocean); }
.program-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.program-duration {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.program-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
}
.program-features {
  padding: 0 28px 8px;
  flex: 1;
}
.program-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.program-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 10px;
}
.program-features li:last-child { border-bottom: none; }
.program-features li i { color: var(--teal); font-size: 0.9rem; flex-shrink: 0; }
.program-footer {
  padding: 20px 28px 28px;
}
.program-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.program-price span {
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-soft);
  font-weight: 300;
}
.btn-program {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-program-fill {
  background: var(--teal);
  color: #fff;
  border: none;
}
.btn-program-fill:hover {
  background: var(--teal-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-program-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal);
}
.btn-program-outline:hover {
  background: var(--teal);
  color: #fff;
}

/* ===================== VIDEO ===================== */
.video-section {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
}
.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 50%, var(--sage) 100%);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.video-placeholder:hover { opacity: 0.9; }
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.4);
}
.video-placeholder:hover .video-play-btn {
  background: rgba(255,255,255,0.3);
  transform: scale(1.08);
}
.video-play-btn i { font-size: 2rem; margin-left: 4px; }
.video-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}
.video-feature-cards {
  margin-top: 32px;
}
.video-feature {
  background: var(--warm-white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}
.video-feature:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}
.video-feature i {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.video-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.video-feature p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 0;
}

/* ===================== CASE STUDIES ===================== */
.casestudy-section {
  background: var(--warm-white);
  position: relative;
}
.case-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,158,158,0.08);
}
.case-header {
  padding: 24px 24px 0;
}
.case-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.case-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}
.case-body {
  padding: 0 24px;
}
.case-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
}
.case-challenge, .case-approach, .case-result {
  margin-bottom: 12px;
}
.case-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.case-label.challenge { color: #b07a50; }
.case-label.approach { color: var(--teal); }
.case-label.result { color: var(--sage); }
.case-footer {
  padding: 16px 24px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--teal-deep);
  flex-shrink: 0;
}
.case-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}
.case-role {
  font-size: 0.75rem;
  color: var(--text-soft);
}
.case-outcome {
  background: var(--sage-pale);
  border-top: 1px solid var(--divider);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-outcome i { color: var(--teal); font-size: 1.1rem; }
.case-outcome span {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 400;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-pale) 100%);
  position: relative;
}
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74,158,158,0.08);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--sage-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  color: #f5b942;
  font-size: 0.85rem;
  margin-bottom: 12px;
  padding-top: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
}
.testimonial-author {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ===================== SERVICES ===================== */
.services-section {
  background: var(--warm-white);
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(74,158,158,0.08);
}
.service-card i {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 18px;
  display: block;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ===================== APPROACH ===================== */
.approach-section {
  background: var(--cream);
}
.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--divider);
}
.approach-item:last-child { border-bottom: none; }
.approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.approach-item h4 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.approach-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

/* ===================== QUOTE BANNER ===================== */
.quote-banner {
  background: var(--warm-white);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  text-align: center;
  padding: 72px 20px;
  position: relative;
}
.quote-banner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.35;
}
.quote-banner blockquote em {
  color: var(--teal-deep);
}
.quote-author {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-family: 'DM Sans', sans-serif;
}

/* ===================== CTA ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 50%, var(--sage) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.cta-section h2 em {
  font-style: italic;
  opacity: 0.9;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 32px;
}
.btn-cta-white {
  background: #fff;
  color: var(--teal-deep);
  border: none;
  border-radius: 99px;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  color: var(--teal-deep);
}
.cta-phone {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #fff;
}
.cta-phone a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.cta-phone a:hover { opacity: 0.8; }
.social-links {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social-links a:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--sage-light); }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 400;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.85rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.footer-contact-item i {
  color: var(--teal);
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
}
.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 8px;
  opacity: 0.8;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(74,158,158,0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  background: var(--teal-deep);
  transform: translateY(-3px);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hero-visual { min-height: 360px; }
  .hero-logo-main { width: 240px; height: 240px; }
  .hero-ring-1 { width: 290px; height: 290px; }
  .hero-ring-2 { width: 340px; height: 340px; }
  .hero-ring-3 { width: 390px; height: 390px; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .book-card { padding: 28px 20px; }
  .founder-stats { gap: 20px; flex-wrap: wrap; }
  .floating-badge { display: none; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-visual { min-height: 280px; margin-top: 20px; }
  .hero-logo-main { width: 200px; height: 200px; }
  .hero-ring-1 { width: 240px; height: 240px; }
  .hero-ring-2 { width: 280px; height: 280px; }
  .hero-ring-3 { width: 320px; height: 320px; }
}
