/* ============================================================
   PROLIFE FERTILITY CENTRE — Main Stylesheet
   Version 1.0.0
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── CSS Variables ── */
:root {
  --green-deep:   #0F4C5C;
  --green-mid:    #1E5A63;
  --green-light:  #2a8fa8;
  --green-pale:   #e0f2f5;
  --gold:         #D4AF37;
  --gold-light:   #F1BD78;
  --gold-pale:    #fdf8e8;
  --cream:        #F5EFE6;
  --charcoal:     #1e1e1e;
  --gray-mid:     #5a5a5a;
  --gray-light:   #ede8df;
  --white:        #ffffff;
  --rose-deep:    #6b1a3a;
  --teal-deep:    #0F4C5C;
  --plum-deep:    #3d1a5c;
  --blue-deep:    #0a2a3d;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'DM Sans', system-ui, -apple-system, sans-serif;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--gray-mid); }
p:last-child { margin-bottom: 0; }

.entry-content h2,
.entry-content h3,
.entry-content p { margin-bottom: 1.2rem; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content ul li { color: var(--gray-mid); margin-bottom: 0.5rem; }

/* ── Layout Utilities ── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.container-sm   { max-width: 860px;  margin: 0 auto; padding: 0 5%; }
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

/* ── Section Labels ── */
.eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title       { color: var(--green-deep); margin-bottom: 1rem; }
.section-subtitle    { color: var(--gray-mid); max-width: 620px; font-size: 1.15rem; margin-bottom: 3rem; line-height: 1.8; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  padding: 0.8rem 1.8rem; border-radius: 50px; border: none;
  cursor: pointer; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary    { background: var(--gold);       color: var(--white); }
.btn-primary:hover { background: #b8941f; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary  { background: #0F4C5C; color: var(--white); }
.btn-secondary:hover { background: #1E5A63; transform: translateY(-2px); }
.btn-outline    { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--green-deep); border: 1.5px solid var(--green-deep); }
.btn-outline-dark:hover { background: var(--green-deep); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Navigation ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 5%;
  max-width: 1400px; margin: 0 auto;
}
.site-logo {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
  color: var(--green-deep); line-height: 1.1;
}
.site-logo span { color: var(--gold); }
.site-logo small { display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 400; color: var(--gray-mid); letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-size: 0.85rem; font-weight: 500; color: var(--charcoal);
  padding: 0.5rem 0.9rem; border-radius: 6px; transition: var(--transition);
}
.main-nav a:hover { color: var(--green-mid); background: var(--green-pale); }
.main-nav .btn { padding: 0.55rem 1.3rem; font-size: 0.85rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; opacity: 0.6; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.06);
  min-width: 220px; padding: 0.5rem;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: var(--transition); z-index: 100;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: none; }
.dropdown-menu a {
  display: block; padding: 0.6rem 1rem; font-size: 0.85rem;
  border-radius: 6px; color: var(--charcoal);
}
.dropdown-menu a:hover { background: var(--green-pale); color: var(--green-deep); }

/* Mobile Nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px; transition: var(--transition);
}

/* ── Hero — Homepage ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-deep) 0%, #082e38 100%);
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(42,143,168,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.15); color: var(--gold);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  border: 1px solid rgba(212,175,55,0.25);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: italic; display: block; }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; }

/* Hero Credentials Card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 1rem; margin-bottom: 1.5rem;
}
.credential-item {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem;
}
.credential-item:last-of-type { margin-bottom: 0; }
.cred-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(212,175,55,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.cred-text strong { display: block; color: var(--white); font-size: 0.875rem; font-weight: 600; }
.cred-text span   { color: rgba(255,255,255,0.55); font-size: 0.775rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0.75rem; margin-top: 1.75rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num   { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Three Pathways Section ── */
.pathways-section { background: var(--cream); }
.pathways-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.pathway-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition); cursor: pointer;
  text-decoration: none; display: block;
}
.pathway-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pathway-header { padding: 2rem 2rem 1.5rem; position: relative; }
.pathway-header.natural   { background: var(--green-pale); }
.pathway-header.medical   { background: #e8f0f8; }
.pathway-header.surrogacy { background: #f5ece8; }
.pathway-num  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-bottom: 0.4rem; color: var(--green-deep); }
.pathway-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.25rem; }
.pathway-tag  { font-size: 0.82rem; color: var(--gray-mid); }
.pathway-icon {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow-sm);
}
.pathway-body { padding: 1.5rem 2rem 2rem; }
.pathway-body p { font-size: 1rem; color: var(--gray-mid); margin-bottom: 1.25rem; }
.pathway-features { margin-bottom: 1.5rem; }
.pathway-features li {
  font-size: 0.85rem; padding: 0.3rem 0;
  display: flex; align-items: center; gap: 0.6rem; color: var(--charcoal);
}
.pathway-features li::before { content: '✓'; color: var(--green-mid); font-weight: 700; font-size: 0.75rem; flex-shrink: 0; }
.pathway-cta { display: block; text-align: center; padding: 0.7rem 1.5rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; transition: var(--transition); }
.pathway-cta.natural   { background: var(--green-deep);  color: var(--white); }
.pathway-cta.natural:hover   { background: var(--green-mid); }
.pathway-cta.medical   { background: var(--blue-deep);   color: var(--white); }
.pathway-cta.medical:hover   { background: #1a4a7a; }
.pathway-cta.surrogacy { background: #7a2e1a;            color: var(--white); }
.pathway-cta.surrogacy:hover { background: #9a4a30; }

/* ── Doctor Section ── */
.doctor-inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: center;
}
.doctor-frame {
  background: var(--green-pale); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
}
.doctor-avatar {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--green-mid); margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 3rem; color: var(--white); font-weight: 700;
  border: 5px solid var(--white); box-shadow: var(--shadow-md);
  overflow: hidden;
}
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doctor-name    { font-family: var(--serif); font-size: 1.3rem; color: var(--green-deep); font-weight: 700; margin-bottom: 0.2rem; }
.doctor-title-line { font-size: 0.8rem; color: var(--gray-mid); margin-bottom: 1.25rem; }
.badge-group { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.badge {
  background: var(--white); border: 1px solid rgba(0,0,0,0.1);
  padding: 0.28rem 0.75rem; border-radius: 50px;
  font-size: 0.68rem; font-weight: 600; color: var(--green-deep); letter-spacing: 0.02em;
}
.philosophy-box {
  background: var(--gold-pale); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.philosophy-box p {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--green-deep); margin: 0;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 5% 80px;
  display: flex; align-items: flex-end; position: relative; overflow: hidden;
}
.page-hero.natural   { background: linear-gradient(135deg, var(--green-deep), #09333f); }
.page-hero.medical   { background: linear-gradient(135deg, #0a2a3d, #163060); }
.page-hero.surrogacy { background: linear-gradient(135deg, #4a1a0a, #7a3020); }
.page-hero.egg       { background: linear-gradient(135deg, var(--rose-deep), #3a0a20); }
.page-hero.ivf       { background: linear-gradient(135deg, #0F4C5C, #082535); }
.page-hero.pcos      { background: linear-gradient(135deg, var(--plum-deep), #1f0a35); }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.page-hero-inner { max-width: 800px; position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.72); font-size: 1.2rem; max-width: 600px; margin-bottom: 2rem; line-height: 1.75; }

/* ── Feature Cards ── */
.feature-card {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 1.75rem; border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--teal); }
.feature-card p  { font-size: 0.875rem; }

/* ── Process Steps ── */
.process-step { display: flex; gap: 1.25rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.process-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 0.95rem; color: var(--white);
}
.step-num.natural   { background: var(--green-deep); }
.step-num.medical   { background: var(--blue-deep); }
.step-num.surrogacy { background: #7a2e1a; }
.step-content h3 { font-size: 1.1rem; color: var(--teal); margin-bottom: 0.4rem; }
.step-content p  { font-size: 0.875rem; margin: 0; }

/* ── Info Table ── */
.info-table { width: 100%; border-collapse: separate; border-spacing: 0 0.6rem; }
.info-table td { padding: 0.85rem 1.1rem; font-size: 0.875rem; vertical-align: top; }
.info-table td:first-child {
  background: var(--green-pale); color: var(--green-deep); font-weight: 600;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm); width: 30%;
}
.info-table td:last-child {
  background: var(--cream); color: var(--gray-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Callout Quote ── */
.callout {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}
.callout p { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--green-deep); margin: 0; }

/* ── Testimonial Cards ── */
.testimonial-card {
  background: var(--green-pale); border-radius: var(--radius-md);
  padding: 1.75rem; border-left: 4px solid var(--green-mid);
  margin-bottom: 1.25rem;
}
.testimonial-card p { font-style: italic; color: var(--green-deep); margin-bottom: 0.75rem; }
.testimonial-card cite { font-size: 0.82rem; color: var(--gray-mid); font-style: normal; }

/* ── CTA Banners ── */
.cta-banner { padding: 80px 5%; text-align: center; }
.cta-banner.natural   { background: #0F4C5C; }
.cta-banner.medical   { background: #0a2a3d; }
.cta-banner.surrogacy { background: #4a1a0a; }
.cta-banner.egg       { background: var(--rose-deep); }
.cta-banner.ivf       { background: #0F4C5C; }
.cta-banner.pcos      { background: var(--plum-deep); }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.7); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* ── Pricing Cards ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; border: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition); position: relative;
}
.pricing-card.featured {
  border-color: var(--gold); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem; border-radius: 50px;
}
.pricing-tier  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pricing-name  { font-family: var(--serif); font-size: 1.3rem; color: var(--green-deep); margin-bottom: 0.25rem; }
.pricing-desc  { font-size: 0.82rem; color: var(--gray-mid); margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-light); }
.pricing-features li { font-size: 0.85rem; padding: 0.3rem 0; display: flex; gap: 0.5rem; color: var(--charcoal); }
.pricing-features li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }

/* ── Pill Badges ── */
.tag-pill {
  display: inline-block; background: var(--green-pale);
  color: var(--green-deep); font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.75rem; border-radius: 50px; margin: 0.2rem;
}

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  color: var(--green-deep); display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding-bottom: 1.25rem; font-size: 0.9rem; color: var(--gray-mid); }
.faq-item.open .faq-answer { max-height: 600px; }

/* ── Quiz Modal ── */
.quiz-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75); align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(4px);
}
.quiz-overlay.open { display: flex; }
.quiz-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; max-width: 560px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.quiz-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--gray-mid); line-height: 1;
}
.quiz-progress { display: flex; gap: 0.4rem; margin-bottom: 2rem; }
.quiz-dot { height: 4px; border-radius: 2px; flex: 1; background: var(--gray-light); transition: background 0.35s; }
.quiz-dot.done { background: var(--green-mid); }
.quiz-eyebrow { color: var(--green-mid); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.quiz-q { font-family: var(--serif); font-size: 1.4rem; color: var(--green-deep); margin-bottom: 0.35rem; }
.quiz-sub { color: var(--gray-mid); font-size: 0.875rem; margin-bottom: 1.75rem; }
.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; }
.quiz-option {
  padding: 0.9rem 1.2rem; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm); cursor: pointer; font-size: 0.875rem;
  text-align: left; background: var(--white); font-family: var(--sans);
  transition: var(--transition); color: var(--charcoal);
}
.quiz-option:hover { border-color: var(--green-mid); background: var(--green-pale); color: var(--green-deep); }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-result { text-align: center; padding: 0.5rem 0; }
.quiz-result-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.quiz-result h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--green-deep); margin-bottom: 0.75rem; }
.quiz-result p { color: var(--gray-mid); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-thumb { aspect-ratio: 16/9; background: var(--green-pale); overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.15rem; color: var(--teal); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card p  { font-size: 0.82rem; color: var(--gray-mid); margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.75rem; color: rgba(0,0,0,0.35); }
.single-post-header { padding: 140px 5% 60px; background: var(--green-deep); }
.single-post-header h1 { color: var(--white); max-width: 800px; }
.single-post-header .post-meta { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 1rem; }
.post-body { max-width: 800px; margin: 0 auto; padding: 60px 5%; }
.post-body h2 { margin: 2.5rem 0 1rem; }
.post-body h3 { margin: 2rem 0 0.75rem; font-size: 1.1rem; }
.post-body p  { margin-bottom: 1.2rem; color: var(--gray-mid); }
.post-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.post-body ul li { color: var(--gray-mid); margin-bottom: 0.5rem; }
.post-cta-box {
  background: var(--green-deep); color: var(--white);
  border-radius: var(--radius-md); padding: 2rem; margin: 2.5rem 0; text-align: center;
}
.post-cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }

/* ── Footer ── */
#site-footer { background: var(--charcoal); color: rgba(255,255,255,0.55); padding: 5rem 5% 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 0.6rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); padding-left: 3px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── WordPress Specific ── */
.wp-block-image { margin: 2rem 0; }
.alignwide { margin-left: -5%; margin-right: -5%; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .pathways-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner, .doctor-inner, .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .blog-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pathways-grid { max-width: 100%; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 1rem 5%; border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-md); gap: 0;
  }
  .main-nav.open a { padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); width: 100%; border-radius: 0; }
  .has-dropdown .dropdown-menu { position: static; opacity: 1; transform: none; box-shadow: none; border: none; background: var(--green-pale); padding-left: 1rem; }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section-pad { padding: 60px 0; }
  .page-hero { padding: 120px 5% 60px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}

/* ═══════════════════════════════════════════════
   V3 ADDITIONS — Ecosystem Brand
   Mission/Vision/Values · Values Grid · Eco Model
════════════════════════════════════════════════ */

/* ── Hero Mission Quote ── */
.hero-mission {
  color: rgba(255,255,255,.52);
  font-size: .82rem;
  font-style: italic;
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.72;
  border-left: 3px solid rgba(212,175,55,.4);
  padding-left: 1rem;
}
.hero-trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ── MVV Banner ── */
.mvv-banner {
  background: var(--green-deep);
  padding: 56px 5%;
}
.mvv-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 3rem;
  align-items: start;
}
.mvv-divider {
  background: rgba(255,255,255,.12);
  align-self: stretch;
}
.mvv-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  display: block;
}
.mvv-heading {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .75rem;
  font-weight: 700;
}
.mvv-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mvv-list span {
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  padding: .22rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: block;
}
.mvv-list span:last-child { border-bottom: none; }

/* ── Values Grid (8 cards) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  border-top: 3px solid var(--gold);
  transition: all .25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.value-icon { font-size: 1.6rem; margin-bottom: .75rem; }
.value-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: .4rem;
}
.value-desc { font-size: .8rem; color: var(--gray-mid); line-height: 1.65; }

/* ── Ecosystem Model ── */
.eco-model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.eco-visual {
  background: var(--green-deep);
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.eco-centre-node {
  text-align: center;
  padding: 1.4rem;
  background: rgba(212,175,55,.18);
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.35);
}
.eco-centre-node strong {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.05rem;
  display: block;
  margin-bottom: .2rem;
}
.eco-centre-node span { color: rgba(255,255,255,.55); font-size: .78rem; }
.eco-role-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  transition: all .25s;
}
.eco-role-node:hover { background: rgba(255,255,255,.13); }
.eco-role-icon { font-size: 1.3rem; flex-shrink: 0; }
.eco-role-node strong {
  display: block;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
}
.eco-role-node span { color: rgba(255,255,255,.5); font-size: .75rem; }

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mvv-banner-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mvv-divider { display: none; }
  .eco-model-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: .6rem; }
}

/* ── WhatsApp Nav Button ── */
.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s;
}
.btn-whatsapp:hover {
  background: #1da851 !important;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   v8 FIXES — Mobile, LYFE, Pricing, Blog
══════════════════════════════════════════ */

/* Pricing table — mobile responsive */
@media(max-width:768px) {
  .pricing-grid, .tiers-grid { grid-template-columns: 1fr !important; }
  .cost-table { font-size:.75rem; }
  .cost-table thead th, .cost-table tbody td { padding:.65rem .75rem; }
  .page-hero h1 { font-size:2.1rem !important; }
  .page-hero .lead { font-size:1.05rem !important; }
  .btn-group { flex-direction:column; }
  .btn-group .btn { width:100%; justify-content:center; }
  .grid-2, .grid-3 { grid-template-columns:1fr !important; }
  .doctor-inner, .eco-model-grid, .hero-inner { grid-template-columns:1fr !important; gap:2rem !important; }
  .mvv-inner { grid-template-columns:1fr !important; }
  .mvv-divider { display:none !important; }
  .footer-inner { grid-template-columns:1fr 1fr !important; }
  .testi-grid { grid-template-columns:1fr !important; }
  .pathways-grid { grid-template-columns:1fr !important; }
  .values-grid { grid-template-columns:1fr 1fr !important; }
  .countries-grid { grid-template-columns:1fr 1fr !important; }
}
@media(max-width:480px) {
  .values-grid { grid-template-columns:1fr !important; }
  .footer-inner { grid-template-columns:1fr !important; }
  .nav-links { display:none !important; }
  section, .section { padding:56px 0 !important; }
}

/* Book consultation — iframe placeholder */
#acuity-embed iframe { min-height:500px; }
.booking-placeholder {
  background:var(--teal-pale); border-radius:16px;
  padding:3rem 2rem; text-align:center; border:2px dashed var(--teal-mid);
}
.booking-placeholder h3 { font-family:var(--serif); color:var(--teal); margin-bottom:.75rem; }
.booking-placeholder p  { color:var(--gray); font-size:.9rem; margin-bottom:1.5rem; }

/* LYFE pillar letters */
.lyfe-letter {
  width:56px; height:56px; border-radius:50%;
  background:var(--teal); color:var(--gold);
  font-family:var(--serif); font-size:1.6rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; box-shadow:0 4px 14px rgba(15,76,92,.3);
}

/* Blog grid */
article:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.1); }

/* ══════════════════════════════════════════════════════════
   PHOTO HERO — Full-screen with zoom animation
   v8 — PROLIFE Fertility Centre
══════════════════════════════════════════════════════════ */

.hero-photo {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* ── The photo layer — zooms gently on load ── */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/hero-consultation.jpg'); /* fallback */
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.08);
  animation: heroZoom 8s ease-out forwards;
  will-change: transform;
}

@keyframes heroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.0);  }
}

/* ── Overlay — left-heavy teal gradient so photo breathes on the right ── */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 76, 92, 0.88) 0%,
    rgba(15, 76, 92, 0.72) 45%,
    rgba(15, 76, 92, 0.30) 75%,
    rgba(8,  46, 56, 0.15) 100%
  );
  z-index: 1;
}

/* ── Content wrapper ── */
.hero-photo-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 5% 100px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Text block — left side only, max 600px ── */
.hero-photo-content {
  max-width: 620px;
}

/* ── Badge ── */
.hero-photo-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212, 175, 55, .18);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, .3);
  margin-bottom: 1.5rem;
  animation: fadeUp .6s .1s ease both;
}

/* ── Headline ── */
.hero-photo-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  font-weight: 700;
  animation: fadeUp .65s .2s ease both;
}

.hero-photo-content h1 em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

/* ── Body copy ── */
.hero-photo-desc {
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 540px;
  animation: fadeUp .65s .3s ease both;
}

/* ── Mission quote ── */
.hero-photo-mission {
  color: rgba(255, 255, 255, .52);
  font-size: .85rem;
  font-style: italic;
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(212, 175, 55, .4);
  animation: fadeUp .65s .35s ease both;
}

/* ── Buttons ── */
.hero-photo-content .btn-group {
  animation: fadeUp .65s .4s ease both;
}

/* ── Trust badges ── */
.hero-photo-content .hero-trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeUp .65s .5s ease both;
}
.hero-photo-content .trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
}

/* ── Floating stats card — bottom right ── */
.hero-stats-float {
  position: absolute;
  bottom: 3rem;
  right: 5%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  animation: fadeUp .65s .6s ease both;
  z-index: 2;
}

.hsf-item { text-align: center; }
.hsf-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hsf-label {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .2rem;
  display: block;
}
.hsf-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
}

/* ── Scroll indicator ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  z-index: 2;
  animation: fadeUp .65s .8s ease both;
}
.hero-scroll-hint span {
  font-size: .65rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  color: rgba(255, 255, 255, .35);
  font-size: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-photo-inner {
    padding: 130px 5% 140px;
  }
  .hero-stats-float {
    bottom: 1.5rem;
    right: 5%;
    left: 5%;
    justify-content: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
  }
  .hero-photo-content h1 { font-size: 2.5rem; }
  .hero-photo-desc       { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .hero-photo-content h1 { font-size: 2.1rem; }
  .hero-photo-content .btn-group { flex-direction: column; }
  .hero-photo-content .btn-group .btn { width: 100%; justify-content: center; }
  .hero-scroll-hint { display: none; }
}

/* ── Fade-up keyframes (if not already defined) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* ══ FONT SIZE BOOST v8 — All body text increased for readability ══ */
p, li, td, th, label, input, textarea, select {
  font-size: 1rem;
  line-height: 1.8;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem) !important;
  line-height: 1.2;
}
.section-sub, .section-subtitle {
  font-size: 1.15rem !important;
  line-height: 1.8;
}
.eyebrow { font-size: .78rem !important; }
.feature-card p, .value-desc, .why-card p,
.journey-step p, .testi-card p, .travel-card p,
.step-desc, .pathway-body p, .eco-text span,
.faq-a-inner, .tier-features li {
  font-size: 1rem !important;
  line-height: 1.8;
}
.hero-photo-desc { font-size: 1.1rem !important; line-height: 1.8; }
.hero-photo-mission { font-size: .92rem !important; }
nav .nav-links a { font-size: .88rem !important; }
.btn { font-size: .95rem !important; }
.btn-lg { font-size: 1.05rem !important; }
