/* ============================================================
   CANDY KIDS — Stil dosyası
   Palet: candy yeşili, kids turuncusu, güneş sarısı, gök mavisi,
   böğürtlen moru. Fontlar: Grandstander (başlık, çocuksu, tam Türkçe) + Nunito (metin).
   ============================================================ */

:root {
  --green:  #3FAE5A;
  --green-d:#2E8A45;
  --orange: #F47B20;
  --orange-d:#D9650F;
  --yellow: #FFCE2E;
  --sky:    #29B6D8;
  --sky-d:  #1B93B0;
  --berry:  #8E5FD0;
  --berry-d:#6F45Ae;
  --pink:   #F26AA0;
  --teal:   #1FB8A6;
  --lime:   #8BC53F;

  --ink:    #2B2A3F;
  --ink-soft:#5C5A72;
  --cream:  #FFF8EE;
  --card:   #FFFFFF;
  --line:   #F0E7D8;

  --shadow: 0 18px 40px -22px rgba(43, 42, 63, .35);
  --shadow-sm: 0 10px 24px -16px rgba(43, 42, 63, .4);
  --radius: 28px;
  --radius-sm: 18px;

  --maxw: 1180px;
  --font-display: "Grandstander", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-green  { background: var(--green);  color: #fff; }
.btn-green:hover  { background: var(--green-d); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-d); }
.btn-white  { background: #fff; color: var(--ink); }
.btn-ghost  { background: rgba(255,255,255,.18); color:#fff; box-shadow:none; border:2px solid rgba(255,255,255,.6); }
.btn-ghost:hover{ background: rgba(255,255,255,.3); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 248, 238, .86);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line);
}
.header-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: baseline; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; }
.logo .c1 { color: var(--green); }
.logo .c2 { color: var(--orange); }
.logo small { font-family: var(--font-body); font-weight: 700; font-size: .6rem; letter-spacing: .14em; color: var(--ink-soft); text-transform: uppercase; align-self: center; margin-left: 4px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  padding: 8px 14px; border-radius: 999px; color: var(--ink); transition: background .15s, color .15s;
}
.nav a:hover { background: #fff; color: var(--orange-d); }
.nav .nav-cta { background: var(--orange); color: #fff; margin-left: 6px; }
.nav .nav-cta:hover { background: var(--orange-d); color:#fff; }

.burger { display: none; background: #fff; border: 2px solid var(--line); border-radius: 14px; width: 46px; height: 42px; cursor: pointer; font-size: 1.3rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 64px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--green-d); font-family: var(--font-display); font-weight: 600;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .92rem; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 600; letter-spacing: -.5px; }
.hero h1 .hl { color: var(--orange); }
.hero p.lead { font-size: 1.12rem; color: var(--ink-soft); margin: 18px 0 28px; max-width: 33ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-mini { display: flex; gap: 26px; margin-top: 34px; }
.hero-mini b { font-family: var(--font-display); font-size: 1.5rem; display: block; color: var(--green-d); }
.hero-mini span { font-size: .86rem; color: var(--ink-soft); }

/* playful hero art */
.hero-art { position: relative; aspect-ratio: 1/1; }
.blob {
  position: absolute; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: drop-shadow(var(--shadow));
}
.blob-main {
  inset: 6% 4% 8% 8%;
  background:
    radial-gradient(circle at 30% 25%, #fff6 0 14px, transparent 15px),
    linear-gradient(135deg, var(--sky), var(--berry));
  display: grid; place-items: center; color: #fff; font-size: 5.5rem;
  animation: floaty 7s ease-in-out infinite;
}
.chip {
  position: absolute; background: #fff; border-radius: 18px; padding: 12px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
}
.chip i { font-style: normal; font-size: 1.4rem; }
.chip-1 { top: 6%; right: 2%; animation: floaty 5s ease-in-out infinite; }
.chip-2 { bottom: 14%; left: -2%; animation: floaty 6.5s ease-in-out infinite .5s; }
.chip-3 { bottom: -2%; right: 12%; animation: floaty 5.8s ease-in-out infinite .9s; }

@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

/* decorative background squiggles */
.deco { position: absolute; pointer-events: none; opacity: .9; z-index: -1; }
.deco-1 { top: 8%; left: -30px; width: 90px; color: var(--yellow); }
.deco-2 { top: 40%; right: -20px; width: 80px; color: var(--pink); }

/* ---------- Section frame ---------- */
.section { padding: 78px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head .tag { font-family: var(--font-display); font-weight: 600; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 600; margin: 10px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc {
  background: var(--card); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow); border: 2px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-6px); }
.svc .ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; font-size: 1.8rem; margin-bottom: 16px; }
.svc h3 { font-size: 1.16rem; font-weight: 600; margin-bottom: 8px; }
.svc p { font-size: .94rem; color: var(--ink-soft); margin: 0; }
.svc::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 90px; height: 90px; border-radius: 50%; opacity: .12; }

.c-berry .ic{background:#F1EAFB;} .c-berry::after{background:var(--berry);}
.c-pink  .ic{background:#FDE7F0;} .c-pink::after{background:var(--pink);}
.c-green .ic{background:#E5F6E9;} .c-green::after{background:var(--green);}
.c-sky   .ic{background:#E1F5FA;} .c-sky::after{background:var(--sky);}
.c-orange .ic{background:#FDEDDF;} .c-orange::after{background:var(--orange);}
.c-yellow .ic{background:#FFF6D8;} .c-yellow::after{background:var(--yellow);}
.c-teal  .ic{background:#E0F6F3;} .c-teal::after{background:var(--teal);}
.c-lime  .ic{background:#EEF6DE;} .c-lime::after{background:var(--lime);}

/* ---------- Parties ---------- */
.parties { background: linear-gradient(160deg, #7A4FC2, #9d6ad8); color: #fff; }
.parties .section-head h2,
.parties .section-head p { color: #fff; }
.parties .section-head .tag { color: var(--yellow); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column;
}
.pkg.featured { outline: 4px solid var(--yellow); transform: translateY(-6px); }
.pkg .ribbon { position: absolute; top: 16px; right: -8px; background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .78rem; padding: 5px 14px; border-radius: 8px 0 0 8px; }
.pkg h3 { font-size: 1.3rem; font-weight: 600; color: var(--berry-d); }
.pkg .price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin: 8px 0 2px; color: var(--ink); }
.pkg .price small { font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.pkg ul { list-style: none; padding: 0; margin: 16px 0 0; }
.pkg li { font-size: .92rem; padding: 7px 0 7px 26px; position: relative; border-top: 1px dashed var(--line); color: var(--ink-soft); }
.pkg li::before { content: "🍬"; position: absolute; left: 0; top: 6px; font-size: .9rem; }

.party-note { background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.4); border-radius: var(--radius-sm); padding: 14px 20px; margin: 28px auto 0; max-width: 760px; text-align: center; font-size: .92rem; }

.concepts { margin-top: 40px; text-align: center; }
.concepts h4 { font-size: 1.2rem; margin-bottom: 16px; color: var(--yellow); }
.concept-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.concept-tags span { background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.45); padding: 7px 15px; border-radius: 999px; font-family: var(--font-display); font-weight: 500; font-size: .9rem; }

/* ---------- Summer ---------- */
.summer { background: linear-gradient(160deg, #D7F2FB, #E9FBF1); }
.summer-terms { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.summer-terms span { background: #fff; border: 2px solid var(--sky); color: var(--sky-d); font-family: var(--font-display); font-weight: 600; padding: 10px 20px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.summer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.spkg { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.spkg h3 { color: var(--berry-d); font-size: 1.35rem; font-weight: 600; }
.spkg .sched { display: inline-block; background: #F1EAFB; color: var(--berry-d); font-family: var(--font-display); font-weight: 600; padding: 6px 14px; border-radius: 999px; font-size: .85rem; margin: 10px 0 16px; }
.ptable { width: 100%; border-collapse: collapse; }
.ptable td { padding: 9px 4px; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.ptable td:last-child { text-align: right; font-family: var(--font-display); font-weight: 600; color: var(--orange-d); }
.spkg .totals { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.spkg .totals b { font-family: var(--font-display); background: #FFF6D8; color: var(--ink); padding: 8px 14px; border-radius: 12px; font-weight: 600; }
.summer-acts { margin-top: 36px; }
.summer-acts h4 { text-align: center; margin-bottom: 18px; color: var(--sky-d); font-size: 1.2rem; }
.act-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.act-tags span { background: #fff; border: 1.5px solid var(--sky); color: var(--sky-d); padding: 7px 14px; border-radius: 999px; font-family: var(--font-display); font-weight: 500; font-size: .88rem; }

/* ---------- Play groups ---------- */
.play-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.play-sched { display: flex; flex-direction: column; gap: 12px; }
.play-sched .row { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow-sm); }
.play-sched .row b { font-family: var(--font-display); color: var(--lime); display:block; }
.play-acts { background: #EEF6DE; border-radius: var(--radius); padding: 28px; }
.play-acts ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.play-acts li { padding-left: 28px; position: relative; font-size: .96rem; }
.play-acts li::before { content: "🌿"; position: absolute; left: 0; }

/* ---------- About ---------- */
.about { background: linear-gradient(160deg, #FFF1DF, #FFF8EE); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.about-grid h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 600; margin-bottom: 16px; }
.about-grid p { color: var(--ink-soft); font-size: 1.05rem; }
.stats { display: flex; gap: 14px; flex-wrap: wrap; }
.stat { background: #fff; border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); flex: 1 1 120px; text-align: center; border: 2px solid var(--line); }
.stat b { font-family: var(--font-display); font-size: 1.7rem; color: var(--orange); display: block; }
.stat span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card { background: var(--card); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 2px solid var(--line); }
.contact-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; }
.cline { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.cline .ci { width: 42px; height: 42px; border-radius: 12px; background: #FDEDDF; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.cline b { font-family: var(--font-display); font-weight: 600; }
.cline span { display: block; color: var(--ink-soft); font-size: .95rem; }
.cline a { color: var(--orange-d); font-weight: 700; }
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--line); min-height: 360px; }
.map-card iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 50px 0 30px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer .logo { color: #fff; }
.footer p { color: #c9c7d6; font-size: .95rem; max-width: 30ch; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links div b { font-family: var(--font-display); display: block; margin-bottom: 10px; }
.footer-links a { display: block; color: #c9c7d6; padding: 4px 0; font-size: .92rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid #3a3950; margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #9a98ad; font-size: .85rem; }
.footer-bottom a { color: #9a98ad; }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Floating WhatsApp ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: var(--shadow); font-size: 1.7rem; transition: transform .2s; }
.fab:hover { transform: scale(1.08); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .play-grid, .summer-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; background: var(--cream); padding: 16px; gap: 6px; border-bottom: 2px solid var(--line); transform: translateY(-130%); transition: transform .3s ease; align-items: stretch; }
  .nav.open { transform: none; }
  .nav a { padding: 12px 16px; }
  .burger { display: block; }
  .pkg-grid { grid-template-columns: 1fr; }
  .hero-mini { gap: 18px; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
   v2 — İÇ SAYFALAR + 10 ANASAYFA MODÜLÜ
   ============================================================ */
.wrap-narrow { max-width: 800px; }

/* ---------- Menü: açılır liste ---------- */
.nav-dd { position: relative; }
/* açılır listeye inerken arada "ölü bölge" kalmasın diye görünmez köprü */
.nav-dd::before { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-dd .dd-top { display: inline-flex; align-items: center; gap: 4px; }
.nav-dd .caret { font-size: .7rem; opacity: .7; }
.dd-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px;
  background: #fff; border-radius: 18px; padding: 10px; box-shadow: var(--shadow);
  border: 2px solid var(--line); display: none; z-index: 80;
}
.dd-menu a { display: block; padding: 9px 12px; border-radius: 10px; font-size: .92rem; }
.dd-menu a:hover, .dd-menu a.on { background: #F1EAFB; color: var(--berry-d); }
.nav-dd:hover .dd-menu, .nav-dd.open .dd-menu, .nav-dd:focus-within .dd-menu { display: block; }
.nav a.active, .nav-dd.here .dd-top { background: #fff; color: var(--orange-d); }
.nav .nav-cta.active { background: var(--orange-d); color: #fff; }

/* ---------- MODÜL 1: Duyuru bandı ---------- */
.ticker {
  background: var(--ink); color: #FFE9A8; overflow: hidden; white-space: nowrap;
  font-family: var(--font-display); font-weight: 500; font-size: .92rem;
}
.ticker-track { display: inline-flex; align-items: center; gap: 34px; padding: 10px 0; animation: tick 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.t-dot { color: var(--orange); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- MODÜL 2: Yaş bulucu ---------- */
.agefinder { padding: 0; margin-top: -36px; position: relative; z-index: 5; }
.age-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 2px solid var(--line); padding: 30px; text-align: center;
}
.age-card h2 { font-size: 1.5rem; font-weight: 600; }
.age-card > p { color: var(--ink-soft); margin: 6px 0 18px; }
.age-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.age-btn {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  background: var(--cream); border: 2px solid var(--line); color: var(--ink);
  padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: .15s;
}
.age-btn:hover { border-color: var(--orange); color: var(--orange-d); }
.age-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.age-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; min-height: 40px; }
.age-chip { background: #E5F6E9; color: var(--green-d); font-family: var(--font-display); font-weight: 500; padding: 8px 16px; border-radius: 999px; font-size: .92rem; }

/* ---------- Hizmet kartı (artık bağlantı) ---------- */
.svc { display: block; }
.svc .more { display: inline-block; margin-top: 12px; font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--orange-d); }

/* ---------- MODÜL 3: Etkinlikler ---------- */
.events-sec { background: linear-gradient(160deg, #FDF3FF, #FFF8EE); padding-top: 64px; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.event {
  background: #fff; border-radius: var(--radius-sm); padding: 18px; display: flex; gap: 16px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--line); align-items: flex-start;
}
.e-date { flex-shrink: 0; width: 76px; border-radius: 14px; text-align: center; padding: 10px 6px; color: #fff; font-family: var(--font-display); }
.e-date b { display: block; font-size: 1.5rem; line-height: 1; }
.e-date span { font-size: .78rem; font-weight: 600; }
.event.c-sky .e-date { background: var(--sky); } .event.c-orange .e-date { background: var(--orange); }
.event.c-berry .e-date { background: var(--berry); } .event.c-green .e-date { background: var(--green); }
.event.c-pink .e-date { background: var(--pink); } .event.c-yellow .e-date { background: var(--yellow); color: var(--ink); }
.event.c-teal .e-date { background: var(--teal); } .event.c-lime .e-date { background: var(--lime); }
.e-body h3 { font-size: 1.08rem; font-weight: 600; }
.e-body p { margin: 4px 0 8px; font-size: .92rem; color: var(--ink-soft); }
.e-time { font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--orange-d); }

/* ---------- MODÜL 4: Haftalık program ---------- */
.schedule-sec { padding-top: 64px; }
.sch-scroll { overflow-x: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow); border: 2px solid var(--line); background: #fff; }
.sch-table { width: 100%; border-collapse: collapse; min-width: 760px; font-size: .9rem; }
.sch-table th, .sch-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.sch-table tr:first-child th { background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 600; position: sticky; top: 0; }
.sch-table tr:not(:first-child) th { font-family: var(--font-display); color: var(--green-d); background: #F4FBF5; white-space: nowrap; }
.sch-table tr:last-child th, .sch-table tr:last-child td { border-bottom: none; }
.sch-table td .dim, .sch-table .dim { color: #cfc9bd; }
.sch-note { text-align: center; color: var(--ink-soft); font-size: .88rem; margin-top: 14px; }

/* ---------- MODÜL 5: Kayıt adımları ---------- */
.steps-sec { background: linear-gradient(160deg, #FFF6D8, #FFF8EE); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid var(--line); position: relative; }
.step-num { position: absolute; top: 14px; left: 14px; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; font-size: .9rem; }
.step-ic { font-size: 2.4rem; margin-bottom: 10px; }
.step h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- MODÜL 6: Galeri ---------- */
.gallery-sec { background: linear-gradient(160deg, #EAF7FD, #FFF8EE); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-tile { margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; border: 2px solid var(--line); transition: transform .2s; }
.g-tile:hover { transform: translateY(-5px) rotate(-1deg); }
.g-emoji { aspect-ratio: 4/3; display: grid; place-items: center; font-size: 3.4rem; }
.g-tile img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.g-tile.c-green .g-emoji{background:#E5F6E9} .g-tile.c-berry .g-emoji{background:#F1EAFB}
.g-tile.c-orange .g-emoji{background:#FDEDDF} .g-tile.c-pink .g-emoji{background:#FDE7F0}
.g-tile.c-yellow .g-emoji{background:#FFF6D8} .g-tile.c-sky .g-emoji{background:#E1F5FA}
.g-tile.c-teal .g-emoji{background:#E0F6F3} .g-tile.c-lime .g-emoji{background:#EEF6DE}
.g-tile figcaption { padding: 10px 14px; font-family: var(--font-display); font-weight: 500; font-size: .9rem; text-align: center; }

/* ---------- MODÜL 7: Yorumlar ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testi { margin: 0; background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 2px solid var(--line); }
.t-stars { color: var(--yellow); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 10px; }
.testi blockquote { margin: 0 0 14px; font-size: .98rem; color: var(--ink-soft); font-style: italic; }
.testi figcaption b { font-family: var(--font-display); font-weight: 600; display: block; }
.testi figcaption span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- MODÜL 8: Ekip ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member { background: #fff; border-radius: var(--radius); padding: 24px 18px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid var(--line); }
.m-ava { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; font-size: 2.2rem; margin: 0 auto 12px; }
.member.c-green .m-ava{background:#E5F6E9} .member.c-sky .m-ava{background:#E1F5FA}
.member.c-berry .m-ava{background:#F1EAFB} .member.c-orange .m-ava{background:#FDEDDF}
.member.c-pink .m-ava{background:#FDE7F0} .member.c-yellow .m-ava{background:#FFF6D8}
.member.c-teal .m-ava{background:#E0F6F3} .member.c-lime .m-ava{background:#EEF6DE}
.member h3 { font-size: 1.05rem; font-weight: 600; }
.m-role { display: block; font-size: .8rem; color: var(--orange-d); font-family: var(--font-display); font-weight: 600; margin: 4px 0 8px; }
.member p { font-size: .86rem; color: var(--ink-soft); margin: 0; }

/* ---------- MODÜL 9: SSS ---------- */
.faq-sec { background: linear-gradient(160deg, #E9FBF1, #FFF8EE); }
.faq { background: #fff; border: 2px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.f-ic { width: 28px; height: 28px; border-radius: 50%; background: #E5F6E9; color: var(--green-d); display: grid; place-items: center; font-weight: 700; flex-shrink: 0; transition: transform .2s; }
.faq[open] .f-ic { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq p { margin: 0; padding: 0 20px 18px; color: var(--ink-soft); font-size: .95rem; }

/* ---------- MODÜL 10: Hızlı ön kayıt ---------- */
.qf-sec { padding-top: 0; }
.qf-card { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); border: 2px solid var(--line); }
.qf-card h3 { font-size: 1.5rem; font-weight: 600; }
.qf-intro { color: var(--ink-soft); margin: 6px 0 20px; font-size: .95rem; }
.qf-card .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-card .field { margin-bottom: 14px; }
.qf-card label { display: block; font-weight: 700; font-size: .82rem; margin-bottom: 5px; color: var(--ink-soft); }
.qf-card input, .qf-card select, .qf-card textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--line); border-radius: 14px;
  font-family: var(--font-body); font-size: .95rem; background: var(--cream); color: var(--ink); box-sizing: border-box;
}
.qf-card input:focus, .qf-card select:focus, .qf-card textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.qf-card textarea { resize: vertical; }
.qf-note { font-size: .8rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- İç sayfa: hero ---------- */
.page-hero { padding: 40px 0 56px; }
.ph-in { display: flex; gap: 26px; align-items: flex-start; margin-top: 18px; }
.ph-ic { width: 92px; height: 92px; border-radius: 26px; background: #fff; display: grid; place-items: center; font-size: 3rem; box-shadow: var(--shadow); flex-shrink: 0; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 600; }
.page-hero .lead { color: var(--ink-soft); font-size: 1.1rem; margin: 12px 0 22px; max-width: 62ch; }
.ph-green  { background: linear-gradient(160deg, #DFF3E4, var(--cream)); }
.ph-orange { background: linear-gradient(160deg, #FDE8D4, var(--cream)); }
.ph-yellow { background: linear-gradient(160deg, #FFF3C4, var(--cream)); }
.ph-sky    { background: linear-gradient(160deg, #D7F2FB, var(--cream)); }
.ph-berry  { background: linear-gradient(160deg, #ECE1FA, var(--cream)); }
.ph-pink   { background: linear-gradient(160deg, #FBDFEB, var(--cream)); }
.ph-teal   { background: linear-gradient(160deg, #DBF4F0, var(--cream)); }
.ph-lime   { background: linear-gradient(160deg, #EAF5D7, var(--cream)); }

.crumbs { font-size: .85rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumbs a { color: var(--orange-d); font-weight: 700; }
.crumbs i { font-style: normal; opacity: .5; }
.crumbs span { font-weight: 700; }

/* ---------- İç sayfa: içerik ---------- */
.hl-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.hl-chip { font-family: var(--font-display); font-weight: 600; font-size: .9rem; padding: 9px 16px; border-radius: 999px; background: #fff; border: 2px solid var(--line); box-shadow: var(--shadow-sm); }
.hl-chip.c-green{color:var(--green-d);border-color:var(--green)} .hl-chip.c-sky{color:var(--sky-d);border-color:var(--sky)}
.hl-chip.c-berry{color:var(--berry-d);border-color:var(--berry)} .hl-chip.c-orange{color:var(--orange-d);border-color:var(--orange)}
.hl-chip.c-pink{color:#C2407A;border-color:var(--pink)} .hl-chip.c-yellow{color:#A07900;border-color:var(--yellow)}
.hl-chip.c-teal{color:#0F8577;border-color:var(--teal)} .hl-chip.c-lime{color:#5E8C1D;border-color:var(--lime)}

.detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; margin-top: 34px; align-items: start; }
.detail-body p { color: var(--ink-soft); font-size: 1.02rem; }
.detail-body h3 { font-size: 1.3rem; font-weight: 600; margin: 26px 0 12px; }
.gains { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.gains li { background: #fff; border: 2px solid var(--line); border-radius: 14px; padding: 12px 16px 12px 42px; position: relative; font-size: .95rem; box-shadow: var(--shadow-sm); }
.gains li::before { content: "🌟"; position: absolute; left: 14px; top: 11px; }
.info-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 2px solid var(--line); position: sticky; top: 92px; }
.info-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th { text-align: left; font-family: var(--font-display); font-weight: 600; color: var(--green-d); padding: 9px 10px 9px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; white-space: nowrap; vertical-align: top; }
.info-table td { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; color: var(--ink-soft); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-note { background: #FFF6D8; border-radius: 12px; padding: 12px 14px; font-size: .86rem; margin: 14px 0 0; }

.concept-tags.dark span { background: #F1EAFB; border-color: var(--berry); color: var(--berry-d); }
.pkg-grid.on-light .pkg { border: 2px solid var(--line); }
.party-note.on-light { background: #F1EAFB; border-color: var(--berry); color: var(--ink); }

.cta-banner { margin-top: 50px; background: linear-gradient(135deg, var(--orange), #FFB23E); border-radius: var(--radius); padding: 40px 30px; text-align: center; color: #fff; box-shadow: var(--shadow); }
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; margin-bottom: 20px; }

.rel-sec { padding-top: 0; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rel { background: #fff; border-radius: var(--radius-sm); padding: 20px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm); border: 2px solid var(--line); transition: transform .2s; }
.rel:hover { transform: translateY(-4px); }
.rel .ic { font-size: 1.9rem; }
.rel b { font-family: var(--font-display); font-weight: 600; }
.rel .more { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--orange-d); }

/* ---------- v2 responsive ---------- */
@media (max-width: 980px) {
  .events-grid, .testi-grid { grid-template-columns: 1fr; }
  .steps-grid, .team-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .rel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-dd { width: 100%; }
  .dd-menu { display: block; position: static; box-shadow: none; border: none; background: transparent; padding: 0 0 0 14px; min-width: 0; }
  .dd-menu a { font-size: .88rem; padding: 8px 12px; }
  .ph-in { flex-direction: column; }
  .qf-card .grid2 { grid-template-columns: 1fr; }
  .agefinder { margin-top: -20px; }
}
@media (max-width: 480px) {
  .steps-grid, .team-grid, .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v3 — Türkçe font ince ayarı + güçlendirilmiş mobil uyum
   ============================================================ */
/* Baloo 2 biraz daha dolgun; başlık satır yüksekliğini rahatlat */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.2px; }
body { text-rendering: optimizeLegibility; }

/* Yatay taşmayı kesin engelle */
html, body { max-width: 100%; }
.sch-table { -webkit-overflow-scrolling: touch; }

/* Tablet (≤980px) */
@media (max-width: 980px) {
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 64px; }
}

/* Telefon (≤720px) */
@media (max-width: 720px) {
  :root { --radius: 22px; --radius-sm: 16px; }
  .wrap { padding: 0 16px; }
  .section { padding: 46px 0; }
  .section-head { margin-bottom: 32px; }
  .header-in { height: 62px; }
  .logo { font-size: 1.3rem; }
  .logo small { display: none; }

  /* Hero: tek sütun, butonlar tam genişlik */
  .hero { padding: 26px 0 44px; }
  .hero p.lead { max-width: none; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-mini { gap: 22px; justify-content: space-between; }
  .hero-art { max-width: 300px; }
  .blob-main { font-size: 4rem; }

  /* Duyuru bandı biraz küçülsün */
  .ticker { font-size: .82rem; }
  .ticker-track { gap: 24px; }

  /* Sayfa-içi hero */
  .page-hero { padding: 26px 0 40px; }
  .ph-ic { width: 70px; height: 70px; font-size: 2.2rem; border-radius: 20px; }
  .page-hero .lead { font-size: 1rem; }
  .page-hero .hero-cta .btn { flex: 1 1 auto; justify-content: center; }

  /* CTA bandı butonları */
  .cta-banner { padding: 30px 20px; }
  .cta-banner .hero-cta .btn { flex: 1 1 auto; justify-content: center; }

  /* Buton & dokunma hedefleri */
  .btn { padding: 13px 22px; }
  .nav a { padding: 13px 16px; font-size: 1.02rem; }
  .faq summary { padding: 15px 16px; }

  /* Bölüm başlıkları biraz küçülsün */
  .section-head h2 { font-size: 1.6rem; }
  .age-card { padding: 24px 18px; }
  .age-card h2 { font-size: 1.3rem; }

  /* Kartlar tek/çift sütun */
  .events-grid, .testi-grid, .summer-grid { grid-template-columns: 1fr; }
  .pkg.featured { transform: none; }

  /* İletişim & harita */
  .map-card, .map-card iframe { min-height: 300px; }

  /* Footer ortalansın */
  .footer-grid { flex-direction: column; gap: 24px; }
  .footer-links { gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* FAB biraz küçülsün, alt köşede */
  .fab { width: 54px; height: 54px; font-size: 1.5rem; right: 14px; bottom: 14px; }
}

/* Küçük telefon (≤480px) */
@media (max-width: 480px) {
  .section-head h2 { font-size: 1.42rem; }
  .hero h1 { font-size: 2.05rem; }
  .hero-mini b { font-size: 1.25rem; }
  .pkg .price { font-size: 1.7rem; }
  .ph-in { gap: 16px; }
  .hl-chip { font-size: .84rem; padding: 8px 13px; }
  .age-btn { padding: 9px 15px; font-size: .9rem; }
  .stat { flex-basis: 100%; }
  .gains li { font-size: .9rem; }
}

/* Dokunmatik cihazda hover yerine her zaman görünür "daha fazla" oku */
@media (hover: none) {
  .svc:hover, .g-tile:hover, .rel:hover, .member:hover { transform: none; }
}

/* ---------- Fiyat yerine "teklif al" bloğu ---------- */
.quote { margin: 10px 0 4px; display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.quote-label { font-family: var(--font-display); font-weight: 700; color: var(--orange-d); font-size: 1.08rem; line-height: 1.25; }
.quote-btn { justify-content: center; }
.spkg .quote { margin-top: 14px; }

/* ============================================================
   v4 — HAREKETLİ İKONLAR + SPOT IŞIĞI + LED GRADYAN
   ============================================================ */

/* ---- ortak animasyon kütüphanesi ---- */
@keyframes bob      { 0%,100% { transform: translateY(0); }      50% { transform: translateY(-7px); } }
@keyframes wiggle   { 0%,100% { transform: rotate(-7deg); }      50% { transform: rotate(7deg); } }
@keyframes pop      { 0%,100% { transform: scale(1); }           50% { transform: scale(1.12); } }
@keyframes spinslow { to { transform: rotate(360deg); } }
@keyframes ledhue   { to { filter: hue-rotate(360deg); } }
@keyframes ledflow  { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes glowpulse{ 0%,100% { box-shadow: 0 0 48px rgba(41,182,216,.45); } 50% { box-shadow: 0 0 78px rgba(242,106,160,.6); } }
@keyframes driftA   { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(14px,-18px) rotate(12deg); } }
@keyframes driftB   { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(-16px,-12px) rotate(-14deg); } }

/* ---- kart ikonları artık canlı ---- */
.svc .ic { animation: bob 4.5s ease-in-out infinite; }
.svc:nth-child(2n) .ic { animation-duration: 5.2s; }
.svc:nth-child(3n) .ic { animation-duration: 6s; }
.svc:hover .ic { animation: wiggle .5s ease-in-out infinite; }
.step-ic { display: inline-block; animation: bob 3.6s ease-in-out infinite; }
.step:nth-child(2n) .step-ic { animation-duration: 4.4s; }
.step:hover .step-ic { animation: pop .6s ease-in-out infinite; }
.m-ava { animation: pop 5s ease-in-out infinite; }
.member:nth-child(2n) .m-ava { animation-duration: 6s; }
.g-tile:hover .g-emoji { animation: wiggle .5s ease-in-out infinite; }
.ph-ic { animation: bob 4s ease-in-out infinite; }
.cline .ci { transition: transform .2s; }
.cline:hover .ci { animation: wiggle .5s ease-in-out infinite; }
.eyebrow { animation: bob 5s ease-in-out infinite; }

/* ---- yüzen dekor ikon katmanı (hero + sayfa hero + cta) ---- */
.float-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.float-ic { position: absolute; font-size: 1.9rem; opacity: .9; filter: drop-shadow(0 6px 10px rgba(0,0,0,.12)); will-change: transform; }
.float-ic.a { animation: driftA 7s ease-in-out infinite; }
.float-ic.b { animation: driftB 8.5s ease-in-out infinite; }
.float-ic.s { animation: spinslow 14s linear infinite; }
.float-ic.big { font-size: 2.6rem; }
.hero .wrap, .page-hero .wrap, .cta-banner > * { position: relative; z-index: 2; }

/* ---- SPOT IŞIĞI (radial gradyan) ---- */
.hero { isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -15% -10% -5% -10%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(58% 55% at 72% 32%, rgba(41,182,216,.30), transparent 62%),
    radial-gradient(48% 50% at 22% 72%, rgba(242,106,160,.26), transparent 60%),
    radial-gradient(40% 42% at 50% 8%, rgba(255,206,46,.30), transparent 60%);
}
.page-hero { position: relative; isolation: isolate; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 130%; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 60% at 78% 20%, rgba(255,255,255,.55), transparent 60%);
}

/* ---- LED ışıltı küreleri ---- */
.led-orb { position: absolute; border-radius: 50%; filter: blur(42px); opacity: .55; z-index: -1; pointer-events: none; will-change: filter, transform; }
.led-orb.o1 { width: 240px; height: 240px; top: -40px; right: 6%;  background: var(--sky);   animation: ledhue 9s linear infinite, driftA 11s ease-in-out infinite; }
.led-orb.o2 { width: 200px; height: 200px; bottom: -30px; left: 4%; background: var(--pink);  animation: ledhue 12s linear infinite, driftB 13s ease-in-out infinite; }
.led-orb.o3 { width: 160px; height: 160px; top: 30%; left: 44%;     background: var(--yellow); animation: ledhue 10s linear infinite, driftA 9s ease-in-out infinite; }

/* hero balonuna LED parıltısı */
.blob-main { animation: floaty 7s ease-in-out infinite, glowpulse 6s ease-in-out infinite; }

/* ---- CTA bandı: akan LED gradyan ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange), var(--pink), var(--berry), var(--sky), var(--green), var(--orange));
  background-size: 320% 320%; animation: ledflow 12s ease infinite; position: relative; overflow: hidden;
}

/* ---- duyuru bandı: ince LED çizgi üst kenarı ---- */
.ticker { position: relative; }
.ticker::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--sky), var(--berry), var(--pink), var(--orange));
  background-size: 300% 100%; animation: ledflow 8s linear infinite;
}

/* hareketi azalt tercihi */
@media (prefers-reduced-motion: reduce) {
  .svc .ic, .step-ic, .m-ava, .ph-ic, .eyebrow, .blob-main,
  .float-ic, .led-orb, .cta-banner, .ticker::after { animation: none !important; }
}
