/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: #FFFAF7;
  color: #2D1B0E;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --peach: #FF8C6B;
  --peach-light: #FFD4C2;
  --peach-pale: #FFF0E8;
  --peach-dark: #E86A45;
  --cream: #FFFAF7;
  --warm-dark: #2D1B0E;
  --warm-mid: #7A4E35;
  --warm-muted: #B07D63;
  --gold: #E8A020;
  --white: #FFFFFF;
  --shadow: 0 8px 40px rgba(255,140,107,0.18);
  --shadow-sm: 0 4px 20px rgba(255,140,107,0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Geologica', sans-serif; line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { line-height: 1.7; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,250,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,140,107,0.12);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(255,140,107,0.15); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: 'Geologica', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--peach-dark); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.95rem; font-weight: 600; color: var(--warm-mid);
  transition: color var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--peach); border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--peach-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--peach); color: white; padding: 10px 24px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--peach-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,140,107,0.4); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.burger span { display: block; width: 26px; height: 2.5px; background: var(--warm-dark); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: var(--peach-dark);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  font-weight: 800; color: rgba(255,255,255,0.85);
  padding: 14px 0; text-align: center; width: 100%;
  border: none; letter-spacing: -0.01em;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu a:hover { color: white; transform: scale(1.04); }
.mobile-wa-btn {
  margin-top: 2rem !important;
  display: inline-block;
  background: white !important; color: var(--peach-dark) !important;
  padding: 14px 36px !important; border-radius: 50px !important;
  font-size: 1.1rem !important; font-weight: 800 !important;
  width: auto !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ===== SECTIONS SHARED ===== */
section { padding: 90px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section-tag {
  display: inline-block; background: var(--peach-pale);
  color: var(--peach-dark); font-weight: 700; font-size: 0.85rem;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.section-title { margin-bottom: 1rem; color: var(--warm-dark); }
.section-subtitle { color: var(--warm-muted); font-size: 1.1rem; max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.from-left { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.scale-in { transform: scale(0.88); }
.reveal.visible { opacity: 1; transform: translate(0) scale(1); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FFF5EE 0%, #FFFAF7 60%, #FFF0E0 100%);
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: #FFD4C2; top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 350px; height: 350px; background: #FFB49A; bottom: -80px; left: -60px; animation-delay: -3s; }
.blob-3 { width: 280px; height: 280px; background: #FFE0B0; top: 40%; right: 20%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid var(--peach-light);
  padding: 8px 18px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 600; color: var(--peach-dark); margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm); animation: badge-pop 0.8s 0.3s both;
}
.hero-badge span { font-size: 1.2rem; }
@keyframes badge-pop { from { opacity:0; transform: scale(0.7) translateY(-10px); } to { opacity:1; transform: scale(1) translateY(0); } }
.hero-title { margin-bottom: 1.4rem; animation: slide-up 0.8s 0.5s both; }
.hero-title em { font-style: italic; color: var(--peach); }
.hero-desc { color: var(--warm-muted); font-size: 1.15rem; margin-bottom: 2rem; animation: slide-up 0.8s 0.7s both; }
@keyframes slide-up { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: slide-up 0.8s 0.9s both; }
.hero-wa-btn { display: none; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--peach); color: white; padding: 16px 32px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 8px 30px rgba(255,140,107,0.4);
}
.btn-primary:hover { background: var(--peach-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,140,107,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--warm-dark); padding: 16px 32px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  border: 2px solid var(--peach-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.btn-secondary:hover { border-color: var(--peach); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 2rem; margin-bottom: 3rem; animation: slide-up 0.8s 1.1s both; }
.trust-avatars { display: flex; }
.trust-avatars .av {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid white;
  background: var(--peach-light); margin-left: -10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--peach-dark);
  overflow: hidden;
}
.trust-avatars .av:first-child { margin-left: 0; }
.trust-text { font-size: 0.88rem; color: var(--warm-muted); font-weight: 600; }
.trust-text strong { color: var(--warm-dark); }
.hero-visual { position: relative; animation: slide-up 0.8s 0.6s both; }
.video-card { background: #000; border-radius: 28px; overflow: hidden; box-shadow: 0 20px 70px rgba(255,140,107,0.22); position: relative; aspect-ratio: 4/3; }
.video-placeholder { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay { position: absolute; inset: 0; background: rgba(30,10,0,0.28); }
.video-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, #FFE8DC, #FFD4C2); display: none; }
.video-iframe-wrap { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-iframe-wrap iframe { width: 100%; height: 100%; border: none; }
.play-btn {
  position: relative; z-index: 2;
  width: 80px; height: 80px; background: white; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 36px rgba(0,0,0,0.22);
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition);
}
.play-btn:hover { transform: scale(1.12); box-shadow: 0 14px 48px rgba(0,0,0,0.28); }
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-card-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--peach); color: white; padding: 6px 14px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700; z-index: 3;
  display: flex; align-items: center; gap: 6px;
}
.pulse { display: inline-block; width: 8px; height: 8px; background: white; border-radius: 50%; animation: pulse-anim 1.4s infinite; }
@keyframes pulse-anim { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.floating-card {
  position: absolute; background: white; border-radius: var(--radius-sm);
  padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
}
.fc-1 { bottom: -20px; left: -30px; animation: float 6s ease-in-out infinite; }
.fc-2 { top: -16px; right: -20px; animation: float 7s ease-in-out infinite reverse; }
.fc-icon { font-size: 1.8rem; }
.fc-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--warm-dark); }
.fc-info span { font-size: 0.78rem; color: var(--warm-muted); }
/* Hero scroll hint — hide on mobile to avoid overlap */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--warm-muted); font-weight: 600; letter-spacing: 0.05em;
  animation: slide-up 1s 1.5s both; z-index: 2;
}
@media (max-width: 768px) { .hero-scroll-hint { display: none; } }
.scroll-mouse { width: 24px; height: 38px; border: 2.5px solid var(--peach-light); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-mouse::after { content: ''; width: 4px; height: 8px; background: var(--peach); border-radius: 2px; animation: scroll-dot 1.6s infinite; }
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

/* ===== STATS ===== */
.stats { padding: 60px 0; }
.stats-inner {
  background: var(--peach); border-radius: 28px;
  padding: 50px 60px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: center;
  box-shadow: 0 20px 70px rgba(255,140,107,0.3);
}
.stat-item { flex: 1; }
.stat-num { font-family: 'Geologica', sans-serif; font-size: 3.2rem; font-weight: 800; color: white; line-height: 1; }
.stat-num sup { font-size: 1.5rem; vertical-align: super; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 10px; line-height: 1.4; }
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-card {
  background: #FAF0EA; border-radius: 20px; aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 20px; text-align: center;
  border: 2px dashed var(--peach-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-img-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.about-img-card.big { grid-column: span 2; aspect-ratio: 2/1; }
.about-img-card .label { font-size: 0.8rem; font-weight: 600; color: var(--warm-muted); }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.af-icon { width: 44px; height: 44px; background: var(--peach-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.af-title { font-weight: 700; font-size: 1rem; color: var(--warm-dark); margin-bottom: 3px; }
.af-desc { font-size: 0.9rem; color: var(--warm-muted); }

/* ===== HOW IT WORKS ===== */
.how { background: var(--peach-pale); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step-card {
  background: white; border-radius: var(--radius); padding: 2.2rem;
  position: relative; transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; background: var(--peach-pale); border-radius: 50%;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num { font-family: 'Geologica', sans-serif; font-size: 4.5rem; font-weight: 800; color: var(--peach-light); line-height: 1; margin-bottom: 0.5rem; }
.step-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.step-title { font-size: 1.15rem; font-weight: 700; color: var(--warm-dark); margin-bottom: 0.7rem; }
.step-desc { font-size: 0.92rem; color: var(--warm-muted); line-height: 1.6; }
.step-arrow { display: none; }

/* ===== NANNIES ===== */
.nannies { background: white; }
.nannies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.nanny-card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid var(--peach-pale);
}
.nanny-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.nanny-photo {
  height: 200px; background: linear-gradient(135deg, var(--peach-light), var(--peach-pale));
  display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative;
}
.nanny-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--peach); color: white; font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
.nanny-info { padding: 1.4rem; }
.nanny-name { font-weight: 700; font-size: 1.1rem; color: var(--warm-dark); margin-bottom: 4px; }
.nanny-exp { font-size: 0.85rem; color: var(--warm-muted); margin-bottom: 10px; }
.nanny-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.nanny-tag { background: var(--peach-pale); color: var(--peach-dark); font-size: 0.78rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }

/* ===== PRICING ===== */
.pricing { background: var(--peach-pale); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
.price-card {
  background: white; border-radius: var(--radius); padding: 2.5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.price-card.popular { border-color: var(--peach); transform: scale(1.04); box-shadow: var(--shadow); }
.price-card.popular .popular-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--peach); color: white; font-size: 0.78rem; font-weight: 700;
  padding: 4px 20px; border-radius: 0 0 12px 12px;
}
.price-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); }
.price-card.popular:hover { transform: translateY(-6px) scale(1.06); }
.price-icon { font-size: 2.6rem; margin-bottom: 1rem; }
.price-name { font-family: 'Geologica', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--warm-dark); margin-bottom: 0.5rem; }
.price-amount { font-family: 'Geologica', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--peach-dark); line-height: 1.1; }
.price-amount span { font-size: 1.1rem; font-weight: 400; color: var(--warm-muted); }
.price-desc { font-size: 0.88rem; color: var(--warm-muted); margin: 0.8rem 0 1.6rem; }
.price-features { list-style: none; text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--warm-mid); }
.price-features li::before { content: '✓'; color: var(--peach); font-weight: 700; flex-shrink: 0; }
.price-btn {
  display: block; width: 100%; padding: 14px;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--peach-pale); color: var(--peach-dark);
}
.price-btn.cta { background: var(--peach); color: white; box-shadow: 0 6px 24px rgba(255,140,107,0.35); }
.price-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,140,107,0.3); }

/* ===== REVIEWS SLIDER (swipe + drag) ===== */
.reviews { background: white; overflow: hidden; }
.reviews-slider { position: relative; margin-top: 3rem; overflow: hidden; }
.reviews-track { display: flex; gap: 1.8rem; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); cursor: grab; user-select: none; will-change: transform; }
.reviews-track.dragging { transition: none; cursor: grabbing; }
.review-card {
  min-width: calc(33.33% - 1.2rem); background: var(--cream);
  border-radius: var(--radius); padding: 2rem;
  border: 1.5px solid var(--peach-pale);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-sm); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.review-text { font-size: 0.95rem; color: var(--warm-mid); line-height: 1.7; margin-bottom: 1.4rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-av { width: 44px; height: 44px; border-radius: 50%; background: var(--peach-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; color: var(--peach-dark); flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--warm-dark); }
.review-meta { font-size: 0.8rem; color: var(--warm-muted); }
.slider-controls { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; justify-content: center; }
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--peach-light);
  background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1.2rem;
}
.slider-btn:hover { background: var(--peach); border-color: var(--peach); color: white; transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--peach-light); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--peach); transform: scale(1.3); }

/* ===== FAQ ===== */
.faq { background: var(--peach-pale); }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: white; border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.8rem; cursor: pointer; font-weight: 700; font-size: 1rem;
  color: var(--warm-dark); background: none; border: none; text-align: left; gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--peach-dark); }
.faq-chevron {
  width: 28px; height: 28px; background: var(--peach-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.8rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--peach); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a-inner { padding: 0 1.8rem 1.4rem; font-size: 0.95rem; color: var(--warm-muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* ===== BOOKING / CONTACT ===== */
.booking { background: white; }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.ci-icon { width: 50px; height: 50px; background: var(--peach-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.ci-label { font-size: 0.8rem; color: var(--warm-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.ci-value { font-size: 1rem; font-weight: 700; color: var(--warm-dark); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-btn.whatsapp { background: #25D366; color: white; }
.social-btn.instagram { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); color: white; }
.social-btn.tg { background: #229ED9; color: white; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.booking-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--warm-mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 2px solid var(--peach-pale); border-radius: 14px;
  font-size: 0.95rem; font-family: 'Manrope', sans-serif; color: var(--warm-dark);
  background: var(--cream); outline: none; transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--peach); box-shadow: 0 0 0 4px rgba(255,140,107,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  background: var(--peach); color: white; border: none; cursor: pointer;
  padding: 16px 32px; border-radius: 50px; font-size: 1rem; font-weight: 700;
  font-family: 'Manrope', sans-serif; transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 8px 28px rgba(255,140,107,0.35);
}
.form-submit:hover { background: var(--peach-dark); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,140,107,0.45); }
.form-note { font-size: 0.82rem; color: var(--warm-muted); text-align: center; }
.form-success { display: none; background: #F0FFF4; border: 2px solid #68D391; border-radius: 14px; padding: 1.4rem; text-align: center; color: #276749; font-weight: 600; }

/* ===== FOOTER ===== */
footer {
  background: var(--warm-dark); color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
.footer-logo-text { font-family: 'Geologica', sans-serif; font-size: 1.4rem; font-weight: 800; color: white; }
.footer-desc { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--peach); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom a { color: var(--peach); }

/* Fix horizontal overflow */
html, body { overflow-x: hidden; max-width: 100%; }
.hero { overflow: hidden; }
.hero-blobs { overflow: hidden; }

/* ===== VIDEO MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.video-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD4C2 60%, #FFBB9A 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}
.video-fallback span { font-size: 0.82rem; font-weight: 600; color: var(--warm-muted); }

/* Show more nannies — desktop: all visible, mobile: 3 + button */
.nannies-extra { display: block; } /* desktop: always show */
.show-more-btn { display: none; }
@media (max-width: 1024px) {
  .nannies-extra { display: none; }
  .nannies-extra.visible { display: block; }
  .show-more-btn {
    display: block; margin: 2rem auto 0;
    background: none; border: 2px solid var(--peach-light); color: var(--peach-dark);
    padding: 12px 32px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
    font-family: 'Manrope', sans-serif; cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
  }
  .show-more-btn:hover { background: var(--peach-pale); border-color: var(--peach); }
  .show-more-btn.hidden { display: none; }
}
.desktop-only { display: inline-flex; }
.hero-wa-btn { display: none !important; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .hero-wa-btn { display: inline-flex !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .stats-inner { flex-wrap: wrap; gap: 0; padding: 40px; }
  .stat-item { flex: 1 1 40%; padding: 20px 10px; }
  .stat-divider { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nannies-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  section { padding: 56px 0; }
  .container { padding: 0 1.25rem; }

  h1 { font-size: clamp(2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero-inner { gap: 2rem; }
  .hero-visual { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; text-align: center; }
  .fc-1 { bottom: -12px; left: -8px; padding: 8px 12px; }
  .fc-2 { top: -10px; right: -8px; padding: 8px 12px; }
  .fc-icon { font-size: 1.4rem; }
  .fc-info strong { font-size: 0.82rem; }
  .fc-info span { font-size: 0.72rem; }

  /* Stats */
  .stats-inner { padding: 30px 20px; gap: 0; }
  .stat-item { flex: 1 1 50%; padding: 16px 8px; }
  .stat-num { font-size: 2.4rem; }

  /* About grid */
  .about-img-grid { grid-template-columns: 1fr 1fr; }
  .about-img-card.big { grid-column: span 2; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .step-card { padding: 1.6rem; }

  /* Nannies */
  .nannies-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Pricing */
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }

  /* Reviews */
  .review-card { min-width: calc(88vw); }

  /* Booking form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; font-size: 0.8rem; }

  /* Social */
  .social-links { gap: 0.7rem; }
  .social-btn { padding: 10px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .nannies-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stats-inner { padding: 24px 16px; }
  .stat-item { flex: 1 1 50%; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.78rem; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-img-card.big { grid-column: span 1; aspect-ratio: 2/1; }
  .play-btn { width: 64px; height: 64px; }
  .play-btn svg { width: 24px; height: 24px; }
  .hero-badge { font-size: 0.82rem; padding: 6px 14px; }
}
