/* ============================================================
   SH Counseling & Training – Landing Page CSS
   Colors: Beige #eee4da | Dark Purple #54386d | Mid Purple #6b4c6e
   Font: Alexandria
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --beige:       #eee4da;
  --beige-dark:  #e3d4c5;
  --beige-light: #f8f3ee;
  --purple-dark: #54386d;
  --purple-mid:  #6b4c6e;
  --purple-light:#8a6590;
  --purple-pale: #f0eaf6;
  --white:       #ffffff;
  --text-dark:   #3b1f5e;
  --text-mid:    #6b4c6e;
  --text-light:  #9b7ea8;
  --success:     #3d9970;
  --danger:      #c0392b;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 8px rgba(84,56,109,.08);
  --shadow-md:   0 8px 32px rgba(84,56,109,.14);
  --shadow-lg:   0 16px 48px rgba(84,56,109,.2);
  --transition:  .3s ease;
  --font:        'Alexandria', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--beige-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4 { line-height: 1.3; font-weight: 800; color: var(--purple-dark); }
h1 { font-size: clamp(2rem,5vw,3.4rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.7rem); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-tag--light { background: rgba(255,255,255,.22); color: #fff; }
.section-title { color: var(--purple-dark); margin-bottom: 12px; }
.section-desc { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* عنوان صغير يسبق العنوان الكبير */
.section-pre-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--purple-light);
  margin-bottom: 10px;
  display: block;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--purple-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(84,56,109,.35);
}
.btn--primary:hover { background: var(--purple-mid); transform: translateY(-2px); }

.btn--beige {
  background: var(--beige);
  color: var(--purple-dark);
  box-shadow: 0 4px 20px rgba(238,228,218,.4);
}
.btn--beige:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.3); }

.btn--beige-solid {
  background: var(--beige);
  color: var(--purple-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--beige-solid:hover { background: #fff; transform: translateY(-3px); }
.btn--beige-solid i { color: #25d366; font-size: 1.2rem; }

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { background: rgba(255,255,255,.25); }

.btn--white { background: #fff; color: var(--purple-dark); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn--white:hover { background: var(--beige); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--purple-dark); border: 2px solid var(--purple-dark); }
.btn--outline:hover { background: var(--purple-dark); color: #fff; }

.btn--sm  { padding: 10px 22px; font-size: .88rem; }
.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--xl  { padding: 18px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  background: rgba(248,243,238,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(84,56,109,.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; flex-direction: row; align-items: center; gap: 12px; }
.logo__img {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--purple-light);
  box-shadow: 0 2px 10px rgba(84,56,109,.18);
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; gap: 2px; }
.logo__name { font-size: 1.1rem; font-weight: 800; color: var(--purple-dark); }
.logo__sub  { font-size: .72rem; color: var(--purple-light); font-weight: 500; letter-spacing: .04em; }

.footer__brand .logo__name { color: var(--beige); }
.footer__brand .logo__sub  { color: rgba(255,255,255,.5); }
.logo__img--footer { border-color: rgba(238,228,218,.4); box-shadow: 0 2px 10px rgba(0,0,0,.25); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple-mid) 60%, #8a5b8e 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg-shape {
  position: absolute; top: -30%; left: -20%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero__bg-shape--2 {
  top: auto; left: auto; bottom: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(238,228,218,.05) 0%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding: 60px 0 60px 24px;
  max-width: 680px;
  margin-right: auto;
}

/* اللوغو في Hero */
.hero__parenting-logo { margin-bottom: 56px; display: flex; justify-content: flex-start; }
.hero__parenting-logo-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.hero__parenting-logo-img {
  width: 180px; height: 180px;
  object-fit: cover; object-position: top center;
  clip-path: inset(0 0 38% 0);
  margin-bottom: -68px;
  transition: transform .3s ease;
}
.hero__parenting-logo-wrap:hover .hero__parenting-logo-img { transform: scale(1.04); }
.hero__parenting-logo-text { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.hero__parenting-logo-title {
  font-family: var(--font); font-size: 2rem; font-weight: 700; color: var(--beige);
}
.hero__parenting-logo-sub {
  font-family: var(--font); font-size: .9rem; color: rgba(238,228,218,.72); font-weight: 400; letter-spacing: .05em;
}

.hero__divider {
  width: 60px; height: 2px;
  background: rgba(238,228,218,.3);
  border-radius: 4px; margin: 0 0 36px;
}
.hero__title {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__title-small {
  color: rgba(255,255,255,.6);
  font-size: clamp(.95rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: .02em;
}
.hero__title-main {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.55;
  max-width: 520px;
}

.hero__desc {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  margin-bottom: 36px; line-height: 1.8;
}
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__note {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: rgba(255,255,255,.6);
}
.hero__note i { color: var(--beige); }

/* صورة hero */
.hero__image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 40px 0;
}
.hero__img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}
/* الإطار الزخرفي خلف الصورة */
.hero__img-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(238,228,218,.35);
  border-radius: 32px;
  z-index: 0;
}
/* الإطار الزخرفي أمام الصورة */
.hero__img-frame::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(238,228,218,.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  filter: brightness(.92) saturate(.9);
}
/* شارة صغيرة فوق الصورة */
.hero__img-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  z-index: 2;
  background: var(--beige);
  color: var(--purple-dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(84,56,109,.2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero__img-badge i { font-size: .9rem; color: var(--purple-dark); }
.hero__img-overlay { display: none; }

.hero__scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); grid-column: 1/-1;
}
.hero__scroll-indicator span {
  display: block; width: 2px; height: 48px;
  background: rgba(255,255,255,.3); border-radius: 4px; margin: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform:scaleY(1); }
  50%      { opacity:1;  transform:scaleY(1.2); }
}
.br-hide { display: none; }

/* ---------- WHY SECTION ---------- */
.why-section {
  padding: 100px 0;
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why__grid { grid-template-columns: 1fr; }
}
.why-card {
  background: var(--beige-light);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 16px;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--purple-light); }
.why-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
}
.why-card p { color: var(--text-mid); font-size: .97rem; line-height: 1.6; font-weight: 500; }

/* ---------- WORK SECTION ---------- */
.work-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--purple-pale) 100%);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(84,56,109,.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.work-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.work-pillar--mid { border-color: rgba(84,56,109,.25); box-shadow: var(--shadow-md); }

.work-pillar__header {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, var(--purple-pale), var(--white));
}
.work-pillar__num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  color: #fff; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.work-pillar__num--mid { background: linear-gradient(135deg, #54386d, #8a5b8e); }
.work-pillar__num--3   { background: linear-gradient(135deg, #6b4c6e, #54386d); }

.work-pillar__title { font-size: 1.1rem; color: var(--purple-dark); font-weight: 800; margin-bottom: 3px; }
.work-pillar__lead  { font-size: .82rem; color: var(--purple-light); font-weight: 500; }

.work-pillar__list {
  padding: 0 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.work-pillar__list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-mid); font-size: .95rem;
}
.work-pillar__list i { color: var(--purple-dark); margin-top: 4px; flex-shrink: 0; font-size: .82rem; }

.work-pillar__img-wrap {
  height: 180px; overflow: hidden;
}
.work-pillar__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.9) saturate(.85);
  transition: transform .5s ease;
}
.work-pillar:hover .work-pillar__img-wrap img { transform: scale(1.05); }

/* ---------- DIFF SECTION ---------- */
.diff-section {
  padding: 100px 0;
  background: var(--white);
}
.diff-section__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.diff-section__content .section-tag { display: block; margin-bottom: 12px; text-align: right; }
.diff-section__content .section-title { text-align: right; margin-bottom: 32px; }

.diff__list { display: flex; flex-direction: column; gap: 20px; }
.diff-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--radius-md);
  background: var(--beige-light); border: 1px solid var(--beige-dark);
  transition: var(--transition);
}
.diff-item:hover { border-color: var(--purple-light); background: var(--purple-pale); transform: translateX(-4px); }
.diff-item__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.diff-item h4 { font-size: 1rem; color: var(--purple-dark); margin-bottom: 4px; }
.diff-item p  { font-size: .9rem; color: var(--purple-light); }

.diff-section__visual {
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}
.diff-quote-card {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border-radius: var(--radius-lg); padding: 28px 32px;
  color: #fff; text-align: center; width: 100%;
}
.diff-quote-card__icon { font-size: 2rem; color: var(--beige); opacity: .6; margin-bottom: 12px; }
.diff-quote-card p { font-size: 1.2rem; font-weight: 700; line-height: 1.7; }

.diff-section__img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  filter: brightness(.9) saturate(.85);
  height: 260px; object-fit: cover;
}

/* ---------- FOR WHOM ---------- */
.forwho-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--purple-pale) 0%, var(--beige-light) 100%);
}
.forwho__cols {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.forwho__col {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.forwho__col-header {
  padding: 24px 28px;
  display: flex; align-items: center; gap: 12px;
}
.forwho__col-header h3 { font-size: 1.05rem; }
.forwho__col--yes .forwho__col-header { background: linear-gradient(135deg, rgba(61,153,112,.1), var(--white)); }
.forwho__col--yes .forwho__col-header i { color: var(--success); font-size: 1.4rem; }
.forwho__col--no  .forwho__col-header { background: linear-gradient(135deg, rgba(192,57,43,.07), var(--white)); }
.forwho__col--no  .forwho__col-header i { color: var(--danger); font-size: 1.4rem; }

.forwho__list {
  padding: 0 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--beige-dark);
}
.forwho__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding-top: 14px;
}
.forwho__list li:not(:last-child) { border-bottom: 1px solid var(--beige-light); padding-bottom: 14px; }
.forwho__col--yes .forwho__list i { color: var(--success); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.forwho__col--no  .forwho__list i { color: var(--danger);  font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.forwho__list p { color: var(--text-mid); font-size: .95rem; line-height: 1.6; }

.forwho__divider {
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  gap: 8px; padding-top: 60px;
}
.forwho__divider-line { width: 1px; height: 80px; background: var(--beige-dark); }
.forwho__divider span {
  font-size: .8rem; color: var(--text-light); font-weight: 600;
  background: var(--beige-light); padding: 4px 8px; border-radius: 100px;
}

/* ---------- JOURNEY ---------- */
.journey {
  padding: 100px 0;
  background: var(--white);
}

.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(84,56,109,.08);
  transition: var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* بطاقة المكالمة المجانية منفردة */
.step--centered {
  max-width: 700px;
  margin: 0 auto;
}
.step__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.step--free {
  border: 2px solid var(--purple-dark);
  background: linear-gradient(135deg, var(--white) 80%, var(--purple-pale) 100%);
}
.step__badge {
  position: absolute; top: -16px; right: 36px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  font-size: .88rem; font-weight: 700; box-shadow: var(--shadow-sm);
}
.step__badge--free { background: var(--purple-dark); color: #fff; }
.step__number { margin-bottom: 16px; }
.step__number span {
  display: inline-block; background: var(--purple-pale);
  color: var(--purple-dark); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; padding: 5px 14px; border-radius: 100px; text-transform: uppercase;
}
.step--free .step__number span { background: var(--purple-dark); color: #fff; }
.step__title { color: var(--purple-dark); margin-bottom: 12px; }
.step__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 16px;
}
.step__meta span { display: flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--text-mid); font-weight: 500; }
.step__meta i { color: var(--purple-dark); }
.step__price-tag.free { background: rgba(61,153,112,.12); color: var(--success); padding: 4px 14px; border-radius: 100px; font-size: .82rem; font-weight: 700; }
.step__desc { color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.step__list { display: flex; flex-direction: column; gap: 10px; }
.step__list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-mid); font-size: .97rem; }
.step__list i { color: var(--purple-dark); margin-top: 4px; flex-shrink: 0; font-size: .82rem; }
.step__why {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--purple-pale); border-radius: var(--radius-md);
  padding: 16px 20px; margin-top: 20px;
}
.step__why i { color: var(--purple-dark); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.step__why p { color: var(--purple-dark); font-size: .95rem; font-weight: 500; }
.step__connector { width: 2px; height: 24px; background: linear-gradient(180deg, var(--purple-light), transparent); margin: 0 auto; }

.step--paths { background: var(--white); }
.paths__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 24px; }
.path-card { border-radius: var(--radius-md); padding: 24px; transition: var(--transition); border: 1px solid var(--beige-dark); }
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.path-card--1 { background: linear-gradient(135deg, #f0fdf4, var(--beige-light)); border-color: rgba(61,153,112,.2); }
.path-card--2 { background: linear-gradient(135deg, var(--purple-pale), var(--beige-light)); border-color: rgba(84,56,109,.2); }
.path-card--3 { background: linear-gradient(135deg, #fffbeb, var(--beige-light)); border-color: rgba(245,158,11,.2); }
.path-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.path-card__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.path-card--1 .path-card__icon { background: rgba(61,153,112,.15); color: var(--success); }
.path-card--2 .path-card__icon { background: var(--purple-pale); color: var(--purple-dark); }
.path-card--3 .path-card__icon { background: rgba(245,158,11,.15); color: #d97706; }
.path-card__title { font-size: 1rem; font-weight: 800; color: var(--purple-dark); margin-bottom: 2px; }
.path-card__level { font-size: .78rem; color: var(--purple-light); font-weight: 500; }
.path-card__meta { display: flex; gap: 14px; flex-wrap: wrap; }
.path-card__meta span { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--text-mid); font-weight: 600; }
.path-card__meta i { color: var(--purple-dark); }

.support-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 32px;
  background: var(--purple-dark); border-radius: var(--radius-lg); padding: 32px 36px;
}
.support-bar__item { display: flex; align-items: center; gap: 16px; color: #fff; }
.support-bar__item i { font-size: 2rem; opacity: .85; flex-shrink: 0; }
.support-bar__item strong { font-size: 1rem; display: block; margin-bottom: 4px; }
.support-bar__item p { font-size: .88rem; opacity: .7; }

/* ---------- BOOKING ---------- */
.booking {
  position: relative; padding: 100px 0;
  background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple-mid) 100%); overflow: hidden;
}
.booking__bg-shape {
  position: absolute; top: -40%; right: -20%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.booking__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.booking__title { color: #fff; margin: 16px 0; font-size: clamp(1.8rem,3.5vw,2.6rem); }
.booking__subtitle { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.booking__subtitle strong { color: var(--beige); }

.booking__card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-xl); padding: 40px 44px;
}
.booking__card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; justify-content: center; }
.booking__card-header i { font-size: 1.8rem; color: var(--beige); }
.booking__card-header h3 { color: #fff; font-size: 1.3rem; }

.booking__features { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.booking__feature {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 8px 16px; border-radius: 100px; font-size: .88rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
}
.booking__feature i { color: var(--beige); }
.booking__reassurance {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 20px; font-size: .88rem; color: rgba(255,255,255,.6);
}
.booking__reassurance i { color: var(--beige); }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: var(--beige-light); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--beige-dark); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--purple-light); }
.faq-item.open { border-color: var(--purple-dark); box-shadow: var(--shadow-sm); }
.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; text-align: right; font-size: 1rem; font-weight: 700; color: var(--purple-dark); transition: var(--transition);
}
.faq-item__question:hover { color: var(--purple-dark); }
.faq-item.open .faq-item__question { color: var(--purple-dark); }
.faq-item__question i { font-size: .85rem; color: var(--purple-mid); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-item__question i { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 28px; }
.faq-item.open .faq-item__answer { max-height: 400px; padding: 0 28px 24px; }
.faq-item__answer p { color: var(--text-mid); line-height: 1.8; font-size: .97rem; border-top: 1px solid var(--beige-dark); padding-top: 16px; }

/* ---------- FINAL CTA ---------- */
.finalcta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.finalcta__inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.finalcta__quote { margin-bottom: 40px; }
.finalcta__quote-icon { font-size: 3rem; color: var(--beige); opacity: .5; margin-bottom: 12px; }
.finalcta__quote p { font-size: clamp(1.2rem,2.5vw,1.7rem); color: rgba(255,255,255,.9); font-weight: 600; line-height: 1.6; }
.finalcta__title { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 16px; }
.finalcta__text { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.8; }

/* ---------- FOOTER ---------- */
.footer { background: var(--text-dark); padding: 64px 0 0; color: rgba(255,255,255,.8); }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__tagline { margin-top: 16px; font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer h4 { color: var(--beige); font-size: .9rem; letter-spacing: .05em; margin-bottom: 16px; text-transform: uppercase; }
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links li { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer__whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; padding: 10px 20px;
  border-radius: 100px; font-size: .9rem; font-weight: 700; margin-bottom: 20px; transition: var(--transition);
}
.footer__whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.footer__credentials { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 2; }
.footer__credentials i { color: var(--beige); }
.footer__bottom { text-align: center; padding: 20px 24px; font-size: .85rem; color: rgba(238,228,218,.35); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- PROGRESS BAR ---------- */
#progress-bar {
  position: fixed; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--beige), var(--purple-light));
  transform-origin: right; transform: scaleX(0); z-index: 200; transition: transform .1s linear;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image-col { display: none; }
  .hero__inner { padding: 80px 24px 60px; max-width: 100%; text-align: center; }  .hero__parenting-logo { justify-content: center; }
  .hero__parenting-logo-wrap { align-items: center; }
  .hero__parenting-logo-text { align-items: center; }
  .hero__divider { margin: 0 auto 36px; }
  .hero__cta { justify-content: center; }
  .hero__note { justify-content: center; }
  .work__grid { grid-template-columns: 1fr; }
  .diff-section__inner { grid-template-columns: 1fr; }
  .diff-section__visual { flex-direction: row; flex-wrap: wrap; }
  .diff-section__img { flex: 1; min-width: 200px; }
}

@media (max-width: 768px) {
  .forwho__cols { grid-template-columns: 1fr; }
  .forwho__divider { flex-direction: row; padding-top: 0; }
  .forwho__divider-line { width: 80px; height: 1px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero__cta { flex-direction: column; }
  .btn--lg { padding: 14px 28px; font-size: 1rem; }
  .step { padding: 28px 20px; }
  .booking__card { padding: 28px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .support-bar { padding: 24px 20px; }
  .hero__parenting-logo-img { width: 150px; height: 150px; margin-bottom: -56px; }
  .hero__parenting-logo-title { font-size: 1.6rem; }
  .nav-cta { display: none; }
  .br-hide { display: inline; }
}
