@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Heebo:wght@300;400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #D72638;
  --primary-dark: #B01E2D;
  --secondary: #1B4FD8;
  --accent: #3B6FF0;
  --purple: #1034A6;
  --bg: #F7F9FF;
  --bg-alt: #EEF2FF;
  --text: #0D1B3E;
  --text-muted: #5A6480;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Heebo', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; direction: rtl; }

/* NAV */
nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  background: rgba(255,251,247,0.95); backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(255,107,53,0.12);
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Fredoka', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: var(--white) !important; padding: 0.45rem 1.2rem; border-radius: 50px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; display: block; }

/* HERO */
.hero {
  min-height: 100vh; padding-top: 68px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #EEF2FF 0%, #F7F9FF 60%, #FFF0F2 100%);
  position: relative; overflow: hidden;
}
.hero-bg-shape { position: absolute; border-radius: 50%; opacity: 0.12; pointer-events: none; }
.hero-bg-shape.s1 { width: 600px; height: 600px; background: var(--secondary); top: -200px; left: -200px; }
.hero-bg-shape.s2 { width: 350px; height: 350px; background: var(--primary); bottom: -100px; right: -100px; }

.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,107,53,0.1); color: var(--primary);
  font-size: 0.85rem; font-weight: 700; padding: 0.4rem 1rem;
  border-radius: 50px; margin-bottom: 1.25rem;
  border: 1.5px solid rgba(255,107,53,0.2);
}
h1 { font-family: 'Fredoka', sans-serif; font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1.18; margin-bottom: 1.25rem; }
h1 em { color: var(--primary); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(215,38,56,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--text);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(26,26,46,0.15); transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: var(--white);
  padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

/* HERO CARD */
.hero-card {
  background: var(--white); border-radius: 28px;
  padding: 2.5rem 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  text-align: center; max-width: 320px; width: 100%; margin: 0 auto;
}
.hero-emoji { font-size: 5rem; display: block; margin-bottom: 1rem; animation: bounce 2.5s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-card h2 { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; margin-bottom: 0.4rem; }
.hero-card p { color: var(--text-muted); font-size: 0.9rem; }
.hero-stats { display: flex; gap: 0.75rem; margin-top: 1.25rem; justify-content: center; }
.stat-chip { background: var(--bg-alt); border-radius: 10px; padding: 0.5rem 0.85rem; text-align: center; }
.stat-chip strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: var(--primary); }
.stat-chip span { font-size: 0.7rem; color: var(--text-muted); }

/* SECTIONS */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem; }
h2 { font-family: 'Fredoka', sans-serif; font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 700; line-height: 1.2; margin-bottom: 0.9rem; }
h3 { font-family: 'Fredoka', sans-serif; font-size: 1.35rem; margin-bottom: 0.5rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 580px; margin-bottom: 3rem; }
.section-header { margin-bottom: 3rem; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem; border: 1.5px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 4px; }
.card.c1::before { background: var(--primary); }
.card.c2::before { background: var(--secondary); }
.card.c3::before { background: var(--accent); }
.card.c4::before { background: var(--purple); }
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.08); }
.card-icon { font-size: 2.75rem; display: block; margin-bottom: 1rem; }
.card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }
.duration-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 700; color: var(--primary);
  background: rgba(255,107,53,0.08); padding: 0.3rem 0.8rem;
  border-radius: 50px; margin-top: 1rem;
}

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.area-card {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 1.5rem 1rem; text-align: center;
  border: 1.5px solid rgba(0,0,0,0.06); transition: all 0.2s;
  text-decoration: none; color: var(--text); display: block;
}
.area-card:hover { border-color: var(--primary); transform: translateY(-3px); background: rgba(255,107,53,0.03); }
.area-card .icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.area-card h3 { font-size: 1.05rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 760px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1.5px solid rgba(0,0,0,0.06); overflow: hidden; }
.faq-q {
  width: 100%; text-align: right; background: none; border: none;
  padding: 1.2rem 1.5rem; font-family: 'Heebo', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: var(--primary); }
.faq-arrow { transition: transform 0.3s; color: var(--primary); font-size: 1.1rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.2rem; color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.faq-item.open .faq-a { display: block; }

/* CONTACT DARK */
.contact-section {
  background: linear-gradient(135deg, #0D1B3E 0%, #1B4FD8 100%);
  color: var(--white); text-align: center;
}
.contact-section h2 { color: var(--white); }
.contact-section .section-label { color: var(--secondary); }
.contact-section .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 2.5rem; }
.contact-cards { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.contact-card {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--radius); padding: 1.5rem 2rem; min-width: 180px; transition: background 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.14); }
.contact-card .cc-icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.contact-card h3 { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; color: #FF6B7A; margin-bottom: 0.35rem; }
.contact-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-card a { color: var(--white); text-decoration: none; font-weight: 700; }
.contact-card a:hover { color: var(--secondary); }

/* FOOTER */
footer { background: #060D1F; color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; font-size: 0.82rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer strong { color: rgba(255,255,255,0.65); }

/* ALT BG */
.bg-alt { background: var(--bg-alt); }

/* BREADCRUMB */
.breadcrumb { padding: 1rem 2rem; background: var(--bg-alt); border-bottom: 1px solid rgba(0,0,0,0.06); }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--primary); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { margin: 0 0.4rem; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; right: 0; left: 0;
    background: var(--bg); padding: 1.5rem 2rem; gap: 1.25rem;
    border-bottom: 1.5px solid rgba(255,107,53,0.12); z-index: 99;
  }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  h1 { font-size: 2.4rem; }
}