/* ===========================
   style.css — שירי | יועצת שינה ומדריכת הנקה
   Extracted verbatim from https://ronavaida.github.io/Shiri-Zenou/style.css
   =========================== */

/* === VARIABLES === */
:root {
  --cream:          #FDF8F4;
  --cream-dark:     #F2EAE2;
  --lavender:       #C5B5E0;
  --lavender-light: #F0EBFB;
  --lavender-med:   #D4C8EE;
  --lavender-dark:  #7B6AAD;
  --blush:          #F5C4C8;
  --blush-light:    #FCE8EA;
  --blush-med:      #E4A0A8;
  --blush-dark:     #C07880;
  --sage:           #A8C9A0;
  --sage-light:     #E6F3E2;
  --sage-med:       #80B078;
  --sage-dark:      #5A8A52;
  --text:           #3C3456;
  --text-mid:       #6D6080;
  --text-light:     #A09AB0;
  --white:          #FFFFFF;

  --shadow-sm: 0 2px 14px rgba(120, 100, 170, 0.08);
  --shadow-md: 0 8px 32px rgba(120, 100, 170, 0.13);
  --shadow-lg: 0 20px 56px rgba(120, 100, 170, 0.18);

  --nav-height: 78px;
  --container:  1100px;
  --section-v:  84px;

  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   32px;
  --r-full: 9999px;

  --ease: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--cream);
  color: var(--text);
  direction: rtl;
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(19px, 3vw, 25px); }
h4 { font-size: 17px; }
p  { font-size: 17px; line-height: 1.8; }

/* === UTILITIES === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section      { padding: var(--section-v) 0; }
.section-alt  { background: var(--lavender-light); }
.section-blush{ background: var(--blush-light); }
.section-sage { background: var(--sage-light); }
.section-white{ background: var(--white); }
.text-center  { text-align: center; }
.text-lavender{ color: var(--lavender-dark); }
.text-blush   { color: var(--blush-dark); }
.text-sage    { color: var(--sage-dark); }
.text-mid     { color: var(--text-mid); }

/* Tag pill */
.tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.tag-lavender { background: var(--lavender-med); color: var(--lavender-dark); }
.tag-blush    { background: var(--blush-med);    color: #92505A; }
.tag-sage     { background: var(--sage-med);     color: white; }

.section-header { margin-bottom: 50px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }
.section-subtitle { color: var(--text-mid); font-size: 18px; max-width: 620px; margin-top: 10px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--lavender-dark);
  color: white;
  box-shadow: 0 4px 22px rgba(123, 106, 173, 0.32);
}
.btn-primary:hover {
  background: #6A59A0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 106, 173, 0.44);
}
.btn-outline {
  background: transparent;
  color: var(--lavender-dark);
  border: 2px solid var(--lavender-dark);
}
.btn-outline:hover {
  background: var(--lavender-light);
  transform: translateY(-2px);
}
.btn-blush {
  background: var(--blush-dark);
  color: white;
  box-shadow: 0 4px 22px rgba(192, 120, 128, 0.32);
}
.btn-blush:hover {
  background: #B06870;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1DB954;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--lavender-dark);
}
.btn-white:hover {
  background: var(--lavender-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253, 248, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 181, 224, 0.18);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name  { font-size: 24px; font-weight: 800; color: var(--lavender-dark); }
.navbar .logo-name { font-size: 31px; }
.logo-title { font-size: 11px; color: var(--text-light); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 15px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--lavender-dark);
  background: var(--lavender-light);
}
.nav-links .btn-nav {
  background: var(--lavender-dark);
  color: white;
  padding: 10px 22px;
}
.nav-links .btn-nav:hover {
  background: #6A59A0;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-spacer { height: var(--nav-height); }

/* === PAGE HERO === */
.page-hero {
  padding: 62px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.page-hero.lavender { background: var(--lavender-light); }
.page-hero.blush    { background: var(--blush-light); }
.page-hero.sage     { background: var(--sage-light); }
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.38);
  border-radius: 50%;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* === HOME HERO === */
.hero { padding: 66px 0 60px; overflow: hidden; position: relative; }
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -200px;
  width: 640px; height: 640px;
  background: var(--lavender-light);
  border-radius: 50%;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .tag { margin-bottom: 20px; }
.hero-content h1 { margin-bottom: 20px; font-weight: 800; }
.hero-content h1 span { color: var(--lavender-dark); }
.hero-content p { color: var(--text-mid); font-size: 18px; margin-bottom: 34px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; height: 400px;
  transform: scale(0.75);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
}
.hero-blob-1 { width: 330px; height: 330px; background: var(--lavender-med); top:50%; left:50%; transform:translate(-50%,-50%); opacity:0.45; }
.hero-blob-2 { width: 240px; height: 240px; background: var(--blush); top:28%; right:8%; opacity:0.38; }
.hero-blob-3 { width: 180px; height: 180px; background: var(--sage); bottom:12%; left:12%; opacity:0.32; }
.hero-icon-main {
  position: relative; z-index: 10; font-size: 100px;
  filter: drop-shadow(0 8px 24px rgba(123,106,173,0.28));
}
.hero-floating { position: absolute; font-size: 30px; }
.hero-floating-1 { top: 14%; right: 16%; animation: floatA 4s ease-in-out infinite; }
.hero-floating-2 { bottom: 18%; right: 18%; animation: floatB 5s ease-in-out infinite; }
.hero-floating-3 { top: 18%; left: 18%; animation: floatA 3.6s ease-in-out infinite 0.8s; }

@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-9px) rotate(12deg); }
}

/* === STATS BAR === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat-item { padding: 32px 20px; text-align: center; border-left: 1px solid var(--cream-dark); }
.stat-item:last-child { border-left: none; }
.stat-number { font-size: 44px; font-weight: 800; color: var(--lavender-dark); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label  { font-size: 14px; color: var(--text-mid); }

/* === CARDS === */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 62px; height: 62px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.card-icon-lavender { background: var(--lavender-light); color: var(--lavender-dark); }
.card-icon-blush    { background: var(--blush-light);    color: var(--blush-dark); }
.card-icon-sage     { background: var(--sage-light);     color: var(--sage-dark); }
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--text-mid); font-size: 15px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--lavender-dark); font-weight: 600; font-size: 14px; transition: gap var(--ease); }
.card-link:hover { gap: 10px; }

/* === FEATURE SECTION === */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-grid.flip { direction: ltr; }
.feature-grid.flip > * { direction: rtl; }

.feature-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; height: 470px;
}
.feature-blob {
  position: absolute;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 60%;
  z-index: 0;
}
.fb-lavender { width: 442px; height: 442px; background: var(--lavender-med); opacity: 0.42; }
.fb-blush    { width: 280px; height: 280px; background: var(--blush);         opacity: 0.42; }
.fb-sage     { width: 280px; height: 280px; background: var(--sage);          opacity: 0.42; }
.feature-icon { font-size: 82px; position: relative; z-index: 1; }

.feature-photo {
  position: relative; z-index: 1;
  width: 300px; height: 300px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 60%;
  background: var(--lavender-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.feature-photo-hint {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px; color: var(--lavender-dark); text-align: center; line-height: 1.6;
}

.feature-content .tag { margin-bottom: 16px; }
.feature-content h2   { margin-bottom: 16px; }
.feature-content p    { color: var(--text-mid); margin-bottom: 24px; }

.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; color: var(--text-mid); font-size: 16px;
}
.feature-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lavender-dark);
  margin-top: 8px; flex-shrink: 0;
}
.feature-list.blush li::before { background: var(--blush-dark); }
.feature-list.sage  li::before { background: var(--sage-dark); }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 26px;
  font-size: 68px; color: var(--lavender-med);
  line-height: 1; font-family: Georgia, serif;
}
.testimonial-text {
  color: var(--text-mid); font-size: 15px; line-height: 1.8;
  margin-bottom: 20px; padding-top: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: white;
}
.av-lavender { background: var(--lavender); }
.av-blush    { background: var(--blush-med); }
.av-sage     { background: var(--sage-med); }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-info { font-size: 12px; color: var(--text-light); }

/* === SERVICE CARDS === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-header { padding: 32px 28px 24px; position: relative; }
.service-card-header.lavender { background: var(--lavender-light); }
.service-card-header.blush    { background: var(--blush-light); }
.service-card-header.sage     { background: var(--sage-light); }
.service-icon { font-size: 42px; margin-bottom: 12px; display: block; }
.service-card-header h3 { margin-bottom: 6px; }
.service-card-header p  { font-size: 14px; color: var(--text-mid); }
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-price {
  font-size: 30px; font-weight: 800; color: var(--lavender-dark);
  margin-bottom: 20px;
}
.service-price span { font-size: 14px; font-weight: 400; color: var(--text-light); }
.service-features { list-style: none; margin-bottom: 28px; flex: 1; }
.service-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 14px; color: var(--text-mid);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--sage-dark); margin-top: 3px; font-size: 12px; flex-shrink: 0; }
.service-card-body .btn { text-align: center; justify-content: center; }
.service-card.featured { border: 2px solid var(--lavender-dark); }
.badge-popular {
  position: absolute; top: 16px; left: 16px;
  background: var(--lavender-dark); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--r-full);
}

/* === PROCESS STEPS === */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px; right: calc(12.5% + 12px); left: calc(12.5% + 12px);
  height: 2px; background: var(--lavender-med); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--lavender-dark); color: white;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 18px rgba(123,106,173,0.3);
}
.step-item h4 { margin-bottom: 8px; }
.step-item p  { font-size: 14px; color: var(--text-mid); }

/* === AGE GROUPS === */
.age-groups-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.age-card {
  background: var(--white); border-radius: var(--r-md); padding: 26px;
  box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start;
  transition: all var(--ease);
}
.age-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.age-icon { font-size: 38px; flex-shrink: 0; }
.age-card h4 { margin-bottom: 6px; }
.age-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* === CHALLENGES === */
.challenges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.challenge-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--white);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.challenge-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.challenge-icon { font-size: 30px; flex-shrink: 0; }
.challenge-item h4 { margin-bottom: 6px; font-size: 16px; }
.challenge-item p  { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* === VALUES === */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card  { text-align: center; padding: 28px 18px; }
.value-icon  { font-size: 42px; margin-bottom: 14px; }
.value-card h4 { margin-bottom: 8px; font-size: 17px; }
.value-card p  { font-size: 14px; color: var(--text-mid); }

/* === ABOUT PAGE === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.photo-placeholder {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90%; height: 90%;
  border-radius: var(--r-lg);
  object-fit: cover; object-position: center;
  display: block; z-index: 1;
  box-shadow: var(--shadow-md);
}
.about-photo-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--lavender-med), var(--lavender));
  border-radius: var(--r-lg); z-index: 0;
}
.photo-placeholder--old {
  font-size: 90px; color: white; overflow: hidden;
}
.photo-placeholder::after {
  content: '';
  position: absolute; bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.14); border-radius: 50%;
}
.photo-badge {
  position: absolute; bottom: -18px; left: -18px; z-index: 2;
  background: var(--white); border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--shadow-md); text-align: center;
}
.photo-badge-number { font-size: 30px; font-weight: 800; color: var(--lavender-dark); display: block; }
.photo-badge-text   { font-size: 12px; color: var(--text-mid); }
.about-photo-area   { position: relative; aspect-ratio: 4/5; }

.credentials-list { margin-top: 24px; }
.credential-item  { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--lavender-light); }
.credential-icon  {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--lavender-light); display: flex; align-items: center;
  justify-content: center; color: var(--lavender-dark); font-size: 16px; flex-shrink: 0;
}
.credential-text strong { display: block; font-size: 15px; }
.credential-text span   { font-size: 13px; color: var(--text-light); }

/* Quote block */
.quote-block {
  border-right: 4px solid var(--lavender-dark);
  padding: 20px 24px;
  margin: 24px 0;
  background: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.quote-block p { font-size: 18px; font-style: italic; color: var(--text-mid); }
.quote-block cite { font-size: 14px; color: var(--text-light); display: block; margin-top: 8px; }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--lavender-med);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 24px;
  background: var(--white); border: none; text-align: right;
  font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background var(--ease);
}
.faq-question:hover { background: var(--lavender-light); }
.faq-question i { color: var(--lavender-dark); transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--white); }
.faq-item.open .faq-answer { max-height: 350px; }
.faq-answer p { padding: 0 24px 22px; color: var(--text-mid); font-size: 15px; line-height: 1.8; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--lavender-dark), #9080C8);
  border-radius: var(--r-lg);
  padding: 62px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner.blush { background: linear-gradient(135deg, var(--blush-dark), #C08890); }
.cta-banner.sage  { background: linear-gradient(135deg, var(--sage-dark), #78A870); }
.cta-banner::before {
  content: '';
  position: absolute; top: -90px; right: -90px;
  width: 320px; height: 320px; background: rgba(255,255,255,0.07); border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -70px; left: -70px;
  width: 220px; height: 220px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-banner h2 { color: white; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 34px; }
.cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-mid); margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--cream-dark);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--lavender-light); display: flex; align-items: center;
  justify-content: center; color: var(--lavender-dark); font-size: 18px; flex-shrink: 0;
}
.contact-icon.whatsapp { background: #25D366; color: #fff; }
.contact-item-text span { display: block; font-size: 12px; color: var(--text-light); }
.contact-item-text a,
.contact-item-text strong { font-weight: 600; color: var(--text); font-size: 16px; }
.contact-item-text a:hover { color: var(--lavender-dark); }

.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lavender-light); display: flex; align-items: center;
  justify-content: center; color: var(--lavender-dark); font-size: 18px;
  transition: all var(--ease);
}
.social-link:hover { background: var(--lavender-dark); color: white; transform: translateY(-3px); }
.social-link.whatsapp:hover { background: #25D366; }
.social-link.instagram:hover { background: #E1306C; }
.social-link.facebook:hover  { background: #1877F2; }
.social-link.tiktok:hover    { background: #000; }

/* Contact Form */
.contact-form { background: var(--white); border-radius: var(--r-lg); padding: 42px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 14px; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--lavender-med);
  border-radius: var(--r-sm);
  font-family: 'Heebo', sans-serif; font-size: 15px;
  color: var(--text); background: var(--cream);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none; direction: rtl;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--lavender-dark);
  box-shadow: 0 0 0 3px rgba(123,106,173,0.12);
  background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }

/* === FOOTER === */
footer {
  background: #2D2540;
  color: rgba(255,255,255,0.82);
  padding: 64px 0 32px;
}
.footer-content {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px; margin-bottom: 48px;
}
footer .logo-name { color: var(--lavender-med); display: block; margin-bottom: 10px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 22px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.75); font-size: 15px;
  transition: all var(--ease);
}
.footer-social a:hover { background: var(--lavender); color: white; transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 15px; margin-bottom: 18px; }
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color var(--ease); }
.footer-links-list a:hover { color: var(--lavender-med); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-contact-item i { color: var(--lavender-med); width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.38);
}

/* === SCROLL ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-height); right: 0; left: 0;
    flex-direction: column;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px; gap: 6px;
    transform: translateY(-110%); opacity: 0;
    transition: all var(--ease);
    border-bottom: 1px solid var(--lavender-med);
    box-shadow: var(--shadow-md);
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-visual { height: 260px; order: -1; }
  .hero-blob-1 { width: 220px; height: 220px; }
  .hero-blob-2 { width: 160px; height: 160px; }
  .hero-blob-3 { width: 120px; height: 120px; }
  .hero-icon-main { font-size: 68px; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-left: none; }

  .cards-grid        { grid-template-columns: 1fr; }
  .feature-grid      { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid.flip { direction: rtl; }
  .feature-visual    { height: 220px; }
  .about-grid        { grid-template-columns: 1fr; gap: 36px; }
  .services-grid     { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .age-groups-grid   { grid-template-columns: 1fr; }
  .challenges-grid   { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form      { padding: 28px 20px; }
  .cta-banner        { padding: 42px 24px; }
  .footer-content    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom     { flex-direction: column; gap: 8px; text-align: center; }
}

/* === LEGAL / PRIVACY PAGE === */.legal-content { color: var(--text-mid); line-height: 1.85; }
.legal-content h2 { font-size: 22px; color: var(--text); margin: 34px 0 12px; }
.legal-content h2:first-of-type { margin-top: 12px; }
.legal-content p { margin-bottom: 16px; font-size: 16px; }
.legal-content a { color: var(--lavender-dark); font-weight: 600; }
.legal-list { margin: 0 4px 18px; padding-inline-start: 22px; list-style: disc; }
.legal-list li { margin-bottom: 8px; font-size: 16px; }
.legal-list li::marker { color: var(--lavender-dark); }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--lavender-med); }

/* === FORM CONSENT === */
.consent-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 4px 0 18px; cursor: pointer;
  font-size: 13px; line-height: 1.6; color: var(--text-mid);
}
.consent-check input {
  margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--lavender-dark); cursor: pointer;
}
.consent-note {
  margin-top: 14px; font-size: 12px; line-height: 1.7; color: var(--text-light);
}
.consent-note a { color: var(--lavender-dark); font-weight: 600; }
