/* =========================================================
   Kopshti i Fëmijëve DEA - Modern Kids Club Tasarımı
   ========================================================= */

:root {
    --pink: #f93167;
    --pink-dark: #e02155;
    --yellow: #ffc93c;
    --yellow-light: #ffe9a8;
    --teal: #37b5a6;
    --teal-dark: #2a9388;
    --blue: #4f86f7;
    --purple: #9b6ff0;
    --cream: #fffaf3;
    --white: #ffffff;
    --dark: #3a2d42;
    --text: #5a4d63;
    --gray: #f6f2ec;
    --shadow: 0 10px 30px rgba(249, 49, 103, 0.12);
    --shadow-lg: 0 20px 50px rgba(58, 45, 66, 0.15);
    --radius: 22px;
    --radius-sm: 14px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Baloo 2', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Bubblegum Sans', 'Baloo 2', cursive;
    color: var(--dark);
    line-height: 1.25;
}

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 34px;
    border-radius: 60px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(249, 49, 103, 0.35);
}
.btn--primary:hover { background: var(--pink-dark); transform: translateY(-3px); }

.btn--yellow {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(255, 201, 60, 0.4);
}
.btn--yellow:hover { background: #ffb81c; transform: translateY(-3px); }

.btn--teal {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 8px 20px rgba(55, 181, 166, 0.35);
}
.btn--teal:hover { background: var(--teal-dark); transform: translateY(-3px); }

.btn--ghost {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}
.btn--ghost:hover { background: var(--pink); color: #fff; transform: translateY(-3px); }

/* ---------- Üst bilgi çubuğu ---------- */
.topbar {
    background: var(--dark);
    color: #f3ecf5;
    font-size: 0.9rem;
    padding: 8px 0;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar__contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--yellow); }
.topbar .icon { margin-right: 6px; }
.topbar svg { flex-shrink: 0; color: var(--yellow); }
.topbar__hours { display: inline-flex; align-items: center; gap: 7px; }
.topbar__hours svg { color: var(--teal); }

/* ---------- Header / Menü ---------- */
.header {
    background: rgba(255, 250, 243, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(58, 45, 66, 0.07);
    transition: var(--transition);
}
.header--scrolled { box-shadow: 0 8px 30px rgba(58, 45, 66, 0.12); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand__logo { height: 62px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 6px; }
.nav__link {
    padding: 10px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(249, 49, 103, 0.08);
    color: var(--pink);
    transition: var(--transition);
    flex-shrink: 0;
}
.nav__link:hover { color: var(--pink); background: rgba(249, 49, 103, 0.08); }
.nav__link:hover .nav__link-icon { background: var(--pink); color: #fff; transform: rotate(-8deg) scale(1.05); }
.nav__link--active {
    color: var(--pink);
    background: rgba(249, 49, 103, 0.1);
}
.nav__link--active .nav__link-icon {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 4px 12px rgba(249, 49, 103, 0.35);
}
.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 4px;
    border-radius: 4px;
    background: var(--yellow);
}

.nav__cta {
    padding: 11px 26px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}
.nav-toggle--open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; }
.nav-toggle--open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: clamp(640px, 82vh, 820px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffe9f1 0%, #fff4d6 50%, #d8f5ef 100%);
    overflow: hidden;
    padding: 56px 0;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    z-index: 0;
}
.hero__blob--1 { width: 420px; height: 420px; background: #ffd6e2; top: -80px; right: -60px; animation: float 8s ease-in-out infinite; }
.hero__blob--2 { width: 300px; height: 300px; background: #ffe9a8; bottom: -60px; left: -40px; animation: float 10s ease-in-out infinite reverse; }
.hero__blob--3 { width: 200px; height: 200px; background: #c8f0e8; top: 40%; left: 45%; animation: float 12s ease-in-out infinite; }

/* Hero dekoratif ikonlar */
.hero__shape {
    position: absolute;
    z-index: 1;
    opacity: 0.85;
}
.hero__deco-icon { display: block; }
.hero__shape--star { top: 12%; left: 6%; color: var(--yellow); animation: float 7s ease-in-out infinite; transform: rotate(-12deg); }
.hero__shape--sparkle { top: 20%; right: 38%; color: var(--pink); animation: float 9s ease-in-out infinite; }
.hero__shape--sun { bottom: 14%; left: 9%; color: var(--teal); animation: float 8s ease-in-out infinite; }
.hero__shape--heart { bottom: 22%; right: 12%; color: var(--pink); opacity: 0.5; animation: float 10s ease-in-out infinite; transform: rotate(8deg); }

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__content {
    display: block;
    min-width: 0;
    position: relative;
    z-index: 3;
    opacity: 1;
    visibility: visible;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 60px;
    padding: 10px 22px;
    font-weight: 700;
    color: var(--pink);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.hero__badge svg { color: var(--yellow); }

.hero__title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    color: var(--dark);
    margin-bottom: 18px;
}
.hero__title span {
    display: block;
    color: var(--pink);
    position: relative;
}
.hero__title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(255, 201, 60, 0.45);
    z-index: -1;
    border-radius: 8px;
}

.hero__text {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 34px;
    max-width: 520px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__illustration::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    z-index: 0;
}
.hero__illustration img {
    position: relative;
    z-index: 1;
    width: min(360px, 90%);
    height: auto;
    max-height: 680px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(58, 45, 66, 0.15));
    animation: float 6s ease-in-out infinite;
}
.hero__scribble {
    position: absolute;
    z-index: 2;
    top: 19%;
    left: 19%;
    color: #e5485f;
    font-family: 'Schoolbell', 'Comic Sans MS', cursive;
    font-size: clamp(1.3rem, 3.2vw, 1.95rem);
    line-height: 1;
    letter-spacing: .055em;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    transform: rotate(-3deg);
    text-shadow: .7px .7px 0 #c9314b, -0.4px 0 0 rgba(255,255,255,.7);
    pointer-events: none;
}
.hero__scribble::after {
    content: '♥';
    display: block;
    width: auto;
    height: auto;
    margin: 7px 0 0;
    color: #ef5b78;
    background: transparent;
    transform: rotate(8deg);
    opacity: .9;
}

.hero__bubble {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: var(--shadow);
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}
.hero__bubble--1 { top: 8%; right: 4%; }
.hero__bubble--2 { bottom: 12%; left: 2%; animation-delay: 1.5s; }
.hero__bubble--3 { top: 46%; right: -2%; animation-delay: 0.8s; color: var(--pink); }

/* ---------- Süs dalgaları ---------- */
.wave {
    display: block;
    width: 100%;
    height: 80px;
    fill: var(--cream);
}

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 90px 0; position: relative; }
.section--gray { background: var(--gray); }
.section--white { background: #fff; }

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section__tag {
    display: inline-block;
    color: var(--pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.section__title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 14px;
}
.section__subtitle { font-size: 1.05rem; }

/* ---------- Yaş grupları kartları ---------- */
.ages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.age-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid transparent;
}
.age-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: var(--radius) var(--radius) 0 0;
}
.age-card:nth-child(1)::before { background: var(--pink); }
.age-card:nth-child(2)::before { background: var(--yellow); }
.age-card:nth-child(3)::before { background: var(--teal); }
.age-card:nth-child(4)::before { background: var(--blue); }

.age-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.age-card__icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray);
    color: var(--pink);
    transition: var(--transition);
}
.age-card:hover .age-card__icon { transform: scale(1.08) rotate(-6deg); }
.age-card__icon--pink { background: #ffe9f1; color: var(--pink); }
.age-card__icon--yellow { background: #fff4d6; color: #e8a400; }
.age-card__icon--teal { background: #d8f5ef; color: var(--teal-dark); }
.age-card__icon--blue { background: #e3ecff; color: var(--blue); }

.age-card__title {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--dark);
}
.age-card__text { font-size: 0.95rem; }

.age-note {
    text-align: center;
    margin-top: 40px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    color: #fff;
    border-radius: 60px;
    padding: 18px 30px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 12px 30px rgba(249, 49, 103, 0.3);
    display: inline-block;
}
.age-note__wrap { text-align: center; }

/* ---------- Hakkımızda (Rreth nesh) ---------- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about__visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.about__visual img {
    width: min(360px, 90%);
    filter: drop-shadow(0 24px 30px rgba(58, 45, 66, 0.14));
}
.about__badge {
    position: absolute;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}
.about__badge strong { font-size: 1.7rem; line-height: 1.1; }
.about__badge span { font-size: 0.85rem; }
.about__badge--1 { top: 0; right: 8%; }
.about__badge--2 { bottom: 0; left: 6%; background: var(--teal); color: #fff; animation-delay: 1.2s; }

.about__tag { color: var(--pink); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }
.about__title { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 12px 0 18px; }
.about__text { margin-bottom: 16px; }

.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 32px; }
.about__feature {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.about__feature:hover { transform: translateY(-4px); }
.about__feature .em { font-size: 1.5rem; }
.about__feature svg { color: var(--pink); flex-shrink: 0; }
.about__feature:nth-child(even) svg { color: var(--teal); }

/* ---------- Faaliyet alanları (Fushat) ---------- */
.fields { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.field-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 6px solid transparent;
}
.field-card:nth-child(1) { border-color: var(--pink); }
.field-card:nth-child(2) { border-color: var(--yellow); }
.field-card:nth-child(3) { border-color: var(--teal); }
.field-card:nth-child(4) { border-color: var(--blue); }
.field-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.field-card__icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
}
.field-card__title { font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.field-card__text { font-size: 0.92rem; }

/* ---------- Qëllimi (Hedefler) ---------- */
.goals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.goal-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    gap: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}
.goal-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.goal-card__num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: #fff;
    background: var(--pink);
    transform: rotate(-6deg);
}
.goal-card:nth-child(2) .goal-card__num { background: var(--yellow); color: var(--dark); transform: rotate(6deg); }
.goal-card:nth-child(3) .goal-card__num { background: var(--teal); transform: rotate(-6deg); }
.goal-card:nth-child(4) .goal-card__num { background: var(--blue); transform: rotate(6deg); }
.goal-card__title { font-size: 1.2rem; margin-bottom: 6px; color: var(--dark); }

/* ---------- Galeri ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 45, 66, 0.35), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item span {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-weight: 700;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery__item:hover span { opacity: 1; transform: translateY(0); }

/* ---------- Yorumlar (Testimonials) ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}
.testimonial:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testimonial::before {
    content: '“';
    position: absolute;
    top: 6px;
    left: 20px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 5rem;
    color: rgba(249, 49, 103, 0.18);
    line-height: 1;
}
.testimonial__text { font-style: italic; margin-bottom: 20px; position: relative; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-family: 'Bubblegum Sans', cursive;
}
.testimonial:nth-child(1) .testimonial__avatar { background: var(--pink); }
.testimonial:nth-child(2) .testimonial__avatar { background: var(--teal); }
.testimonial:nth-child(3) .testimonial__avatar { background: var(--yellow); color: var(--dark); }
.testimonial__name { font-weight: 700; color: var(--dark); }
.testimonial__role { font-size: 0.85rem; }

/* ---------- CTA bandı ---------- */
.cta {
    background: linear-gradient(120deg, var(--pink), #ff7e9c 50%, var(--purple));
    border-radius: 36px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(249, 49, 103, 0.35);
}
.cta::before, .cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.cta::before { width: 200px; height: 200px; top: -80px; right: -40px; }
.cta::after { width: 140px; height: 140px; bottom: -60px; left: 30px; }
.cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #fff;
    position: relative;
    z-index: 1;
}
.cta__text { color: rgba(255, 255, 255, 0.9); position: relative; z-index: 1; margin-top: 6px; }
.cta .btn { position: relative; z-index: 1; }

/* ---------- Sayfa başlığı (alt sayfalar) ---------- */
.page-hero {
    background: linear-gradient(135deg, #ffe9f1 0%, #fff4d6 60%, #d8f5ef 100%);
    padding: 70px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '✦';
    position: absolute;
    font-size: 7rem;
    color: rgba(249, 49, 103, 0.1);
    top: 30px;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}
.page-hero::after {
    content: '☁';
    position: absolute;
    font-size: 6rem;
    color: rgba(55, 181, 166, 0.14);
    bottom: 20px;
    right: 8%;
    animation: float 10s ease-in-out infinite reverse;
}
.page-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    position: relative;
    z-index: 1;
}
.page-hero__crumb {
    position: relative;
    z-index: 1;
    font-weight: 600;
    margin-top: 8px;
}
.page-hero__crumb a { color: var(--pink); }
.page-hero__crumb span { color: var(--text); }

/* ---------- İçerik sayfaları ---------- */
.page-content { padding: 80px 0; }
.content-block {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow);
    max-width: 860px;
    margin: 0 auto 30px;
}
.content-block h2 { font-size: 1.7rem; margin-bottom: 14px; color: var(--dark); }
.content-block h3 { font-size: 1.3rem; margin: 22px 0 10px; color: var(--pink); }
.content-block p { margin-bottom: 14px; }
.content-block ul { list-style: none; margin: 14px 0; }
.content-block ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}
.content-block ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--yellow);
}

/* ---------- Kontakt ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}
.contact-card__title {
    font-size: 1.5rem;
    margin-bottom: 22px;
    color: var(--dark);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed #eee;
    align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .em {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: #ffe9f1;
}
.contact-info-item:nth-child(2) .em { background: #fff4d6; }
.contact-info-item:nth-child(3) .em { background: #d8f5ef; }
.contact-info-item:nth-child(4) .em { background: #e3ecff; }
.contact-info-item strong { display: block; color: var(--dark); margin-bottom: 2px; }
.contact-info-item a:hover { color: var(--pink); }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-family: 'Baloo 2', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 49, 103, 0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-success {
    background: #e3f9f0;
    color: #1d7a5f;
    border: 2px solid #b5ecd9;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
.form-error {
    background: #ffe9ef;
    color: #c22b56;
    border: 2px solid #ffc1d1;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
.form-error ul { list-style: none; }
.form-error li::before { content: '⚠ '; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.contact-map {
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
}
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 0; }
.error-page__num {
    font-family: 'Bubblegum Sans', cursive;
    font-size: clamp(6rem, 16vw, 10rem);
    background: linear-gradient(120deg, var(--pink), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.error-page__title { font-size: 1.8rem; margin: 10px 0 14px; }
.error-page__text { margin-bottom: 30px; }

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: #cfc3d6;
    margin-top: 60px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 70px 0 50px;
}
.footer__logo { height: 70px; width: auto; margin-bottom: 18px; }
.footer__text { font-size: 0.95rem; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: 700;
}
.footer__social a:hover { background: var(--pink); color: #fff; transform: translateY(-4px); }
.footer__title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: var(--pink);
}
.footer__links li { margin-bottom: 10px; }
.footer__links a { transition: var(--transition); }
.footer__links a:hover { color: var(--yellow); padding-left: 6px; }
.footer__hours li { margin-bottom: 12px; display: flex; justify-content: space-between; gap: 10px; }
.footer__hours li { align-items: center; padding: 11px 12px; border-radius: 14px; background: rgba(255,255,255,.06); }
.footer__hours li span { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.footer__hours li b { color: #f3f7fb; font-weight: 600; white-space: nowrap; }
.footer__hours strong { color: var(--yellow); }
.footer__hours li { padding: 8px 9px; gap: 6px; font-size: .76rem; white-space: nowrap; }
.footer__hours li span { gap: 5px; }
.footer__hours li span svg { width: 14px; height: 14px; }
.footer__hours li b { font-size: .74rem; }
.footer__hours strong { font-size: .74rem; }
.footer__contact li { margin-bottom: 10px; }
.footer__contact a:hover { color: var(--yellow); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--pink);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(249, 49, 103, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 90;
}
.scroll-top--visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--pink-dark); }

/* ---------- Animasyonlar ---------- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* Reveal animasyonu: sadece JS aktifken içerik gizli başlar */
.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal--visible,
.reveal--visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .ages { grid-template-columns: repeat(2, 1fr); }
    .fields { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__text { margin: 0 auto 34px; }
    .hero__actions { justify-content: center; }
    .hero__illustration { margin-top: 40px; }
    .about { grid-template-columns: 1fr; text-align: center; }
    .about__features { text-align: left; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        box-shadow: -10px 0 40px rgba(58, 45, 66, 0.2);
        transition: right 0.4s ease;
        z-index: 200;
        padding: 40px;
    }
    .nav--open { right: 0; }
    .nav__list { flex-direction: column; text-align: center; }
    .nav__link { font-size: 1.2rem; }
    .nav-toggle { display: flex; z-index: 210; }
    .nav__cta { margin-top: 12px; }

    .hero__scribble { top: 18%; left: 17%; font-size: 1.3rem; }

    .goals { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar__hours { display: none; }
    .section { padding: 60px 0; }
}

/* Refined menu: classic DEA layout with a modern kindergarten touch */
@media (min-width: 769px) {
    .nav { gap: 20px; }
    .nav__list {
        gap: 6px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .nav__link {
        min-height: 44px;
        padding: 7px 12px 7px 8px;
        gap: 8px;
        font-size: .94rem;
        color: var(--dark);
    }
    .nav__link-icon {
        width: 32px;
        height: 32px;
        border: 0;
        box-shadow: none;
    }
    .nav__link:hover { background: rgba(239,91,120,.08); transform: translateY(-2px); }
    .nav__link--active { background: rgba(239,91,120,.12); color: var(--pink); }
    .nav__link--active::after { bottom: 0; height: 3px; width: 22px; }
    .nav__cta { margin-left: 2px; padding: 13px 22px; border: 2px solid #fff; }
}
@media (max-width: 1100px) and (min-width: 769px) {
    .nav { gap: 8px; }
    .nav__list { gap: 0; }
    .nav__link { padding-right: 8px; font-size: .84rem; }
    .nav__link-icon { width: 28px; height: 28px; }
    .nav__cta { padding-left: 15px; padding-right: 15px; }
}

/* Compact inner-page banner */
.page-hero { padding: 36px 0 42px; }
.page-hero__title { font-size: clamp(1.8rem, 4vw, 2.65rem); }
.page-hero__crumb { margin-top: 5px; font-size: .9rem; }
.page-hero::before { font-size: 5rem; top: 14px; left: 10%; }
.page-hero::after { font-size: 4rem; bottom: 8px; right: 10%; }
@media (max-width: 768px) {
    .page-hero { padding: 28px 0 32px; }
    .page-hero__title { font-size: 1.75rem; }
    .page-hero__title svg { width: 34px; height: 34px; }
    .page-hero::before { font-size: 3rem; left: 4%; }
    .page-hero::after { font-size: 2.8rem; right: 4%; }
    .page-content { padding: 54px 0; }
}

@media (max-width: 480px) {
    .ages, .fields, .gallery { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .cta { padding: 40px 26px; }
    .content-block { padding: 28px 22px; }
}

/* ---------- DEA 2026 polish ---------- */
:root {
    --pink: #ef5b78;
    --pink-dark: #d94362;
    --yellow: #f6c85f;
    --teal: #36b7a5;
    --blue: #5b8def;
    --dark: #172b4d;
    --text: #5e6b7e;
    --cream: #fbfcfa;
    --gray: #f2f6f5;
    --shadow: 0 12px 34px rgba(23, 43, 77, .08);
    --shadow-lg: 0 24px 60px rgba(23, 43, 77, .14);
}
body { font-family: 'DM Sans', 'Segoe UI', sans-serif; letter-spacing: -.01em; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; letter-spacing: -.035em; }
.header { background: rgba(251,252,250,.88); }
.brand__logo { height: 68px; }
.nav { gap: 18px; }
.nav__link { font-size: .93rem; padding: 9px 12px; }
.nav__link-icon { width: 27px; height: 27px; }
.btn { font-size: .92rem; padding: 13px 25px; letter-spacing: .005em; }
.hero { background: radial-gradient(circle at 80% 14%, rgba(54,183,165,.18), transparent 28%), linear-gradient(135deg,#fff8f5 0%,#f4fbf8 54%,#f8f4ff 100%); }
.hero__title { font-weight: 800; }
.hero__title span { color: var(--pink); }
.section__tag { color: var(--teal-dark); font-size: .75rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.section__title { font-weight: 800; }
.age-card, .field-card, .goal-card, .testimonial, .contact-card, .content-block { border: 1px solid rgba(23,43,77,.06); box-shadow: var(--shadow); }
.age-card:hover, .field-card:hover, .testimonial:hover { box-shadow: var(--shadow-lg); }
.contact-card__intro { margin: -12px 0 20px; font-size: .95rem; }
.form-group input, .form-group textarea { border: 1px solid #dfe7e5; background: #fff; font-family: 'DM Sans', sans-serif; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(54,183,165,.13); }
.form-group input:invalid:not(:placeholder-shown), .form-group textarea:invalid:not(:placeholder-shown) { border-color: #ef5b78; }
.contact-map { border: 8px solid #fff; }
.footer { background: #172b4d; }
.footer__title { font-family: 'Plus Jakarta Sans', sans-serif; }
*:focus-visible { outline: 3px solid rgba(54,183,165,.65); outline-offset: 3px; }
@media (max-width: 768px) {
    .brand__logo { height: 58px; }
    .nav { background: #fbfcfa; }
}

/* ---------- Kontakt & footer experience ---------- */
.footer__invite {
    margin-bottom: 0;
    padding: 34px 40px;
    border-radius: 24px;
    transform: translateY(-38px);
    background: linear-gradient(120deg, #24446d, #1a8f86);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 45px rgba(11, 42, 71, .22);
}
.footer__invite h2 { color: #fff; font-size: clamp(1.35rem, 3vw, 2rem); margin: 4px 0; }
.footer__invite p { color: rgba(255,255,255,.78); margin: 0; }
.footer__eyebrow { color: #b9f3e9; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.whatsapp-float {
    position: fixed;
    z-index: 150;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    min-height: 60px;
    padding: 9px 17px 9px 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ef5b78, #d94362);
    border: 3px solid #fff;
    box-shadow: 0 13px 30px rgba(217,67,98,.35), 0 0 0 5px rgba(239,91,120,.14);
    transform: rotate(-1deg);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.whatsapp-float:hover { color: #fff; background: linear-gradient(135deg, #f46f89, #c73558); transform: translateY(-4px) rotate(1deg); box-shadow: 0 18px 36px rgba(217,67,98,.42), 0 0 0 7px rgba(239,91,120,.16); }
.whatsapp-float__icon { width: 42px; height: 42px; border-radius: 15px 15px 15px 5px; display: grid; place-items: center; background: #fff4f6; color: #ef5b78; position: relative; transform: rotate(-4deg); border: 2px dashed #ef5b78; box-shadow: inset 0 0 0 3px #fff; }
.whatsapp-float__icon::before { content: '✦'; position: absolute; top: -14px; right: -8px; color: #f6c85f; font-size: 16px; transform: rotate(4deg); text-shadow: 0 1px 0 rgba(0,0,0,.08); }
.whatsapp-float__icon::after { content: '♥'; position: absolute; left: -9px; bottom: -9px; color: #fff; font-size: 12px; transform: rotate(-10deg); text-shadow: 0 1px 0 #ef5b78, 1px 0 0 #ef5b78, -1px 0 0 #ef5b78; }
.whatsapp-float__copy { display: flex; flex-direction: column; line-height: 1.15; }
.whatsapp-float__copy strong { font-size: .9rem; }
.whatsapp-float__copy small { margin-top: 3px; font-size: .7rem; opacity: .82; }
.whatsapp-float__copy strong { font-family: 'Plus Jakarta Sans', sans-serif; }
.scroll-top { right: 26px; bottom: 98px; width: 44px; height: 44px; }
@media (max-width: 768px) {
    .topbar__contact { gap: 10px; font-size: .76rem; }
    .topbar__contact a:nth-child(2) { display: none; }
    .header__inner { min-height: 76px; }
    .nav { width: min(360px, calc(100vw - 28px)); padding: 30px 22px; border-radius: 24px 0 0 24px; }
    .nav__list { width: 100%; gap: 3px; }
    .nav__item, .nav__link { width: 100%; }
    .nav__link { justify-content: flex-start; padding: 13px 16px; }
    .nav__cta { width: 100%; margin-top: 14px; }
    .footer__invite { margin: 0 4% 0; width: 92%; padding: 26px 22px; align-items: flex-start; flex-direction: column; transform: translateY(-28px); }
    .footer__invite .btn { width: 100%; }
    .whatsapp-float { right: 15px; bottom: max(15px, env(safe-area-inset-bottom)); min-height: 56px; padding-right: 14px; }
    .scroll-top { right: 17px; bottom: 86px; }
}
@media (max-width: 390px) {
    .whatsapp-float__copy { display: none; }
    .whatsapp-float { width: 56px; height: 56px; padding: 7px; justify-content: center; }
    .whatsapp-float__icon { width: 42px; height: 42px; }
    .topbar__contact a { font-size: .72rem; }
    .container { width: min(100% - 28px, 1200px); }
}

/* ---------- Playful age cards ---------- */
.ages { gap: 26px; }
.age-card {
    border: 0;
    border-radius: 30px 26px 34px 24px;
    padding: 34px 24px 30px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(23,43,77,.08);
}
.age-card::before { height: 8px; border-radius: 0 0 12px 12px; }
.age-card::after {
    content: '✦';
    position: absolute;
    right: 20px;
    top: 22px;
    color: rgba(255,255,255,.85);
    font-family: 'Schoolbell', cursive;
    font-size: 1.4rem;
    transform: rotate(15deg);
}
.age-card:nth-child(1) { background: linear-gradient(155deg, #fff, #fff1f5); }
.age-card:nth-child(2) { background: linear-gradient(155deg, #fff, #fff9e6); }
.age-card:nth-child(3) { background: linear-gradient(155deg, #fff, #edfbf8); }
.age-card:nth-child(4) { background: linear-gradient(155deg, #fff, #eff4ff); }
.age-card__icon {
    width: 122px;
    height: 122px;
    margin-bottom: 22px;
    border: 8px solid rgba(255,255,255,.72);
    box-shadow: 0 8px 0 rgba(23,43,77,.04);
    transform: rotate(-3deg);
}
.age-card:nth-child(even) .age-card__icon { transform: rotate(3deg); }
.age-card__title {
    font-family: 'Bubblegum Sans', 'Schoolbell', cursive;
    font-size: 1.45rem;
    letter-spacing: -.02em;
}
.age-card__text { font-size: .94rem; line-height: 1.7; }
.age-card:hover { transform: translateY(-9px) rotate(-1deg); }
.age-card:nth-child(even):hover { transform: translateY(-9px) rotate(1deg); }
@media (max-width: 768px) {
    .ages { gap: 18px; }
    .age-card { padding: 28px 20px 25px; }
    .age-card__icon { width: 104px; height: 104px; margin-bottom: 18px; }
    .age-card__title { font-size: 1.3rem; }
}

/* ---------- Playful kindergarten navigation ---------- */
@media (min-width: 769px) {
    .nav { gap: 20px; }
    .nav__list {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .nav__link {
        min-height: 44px;
        padding: 7px 12px 7px 8px;
        border-radius: 999px;
        gap: 8px;
        font-size: .94rem;
        font-weight: 700;
        transition: transform .22s ease, background .22s ease, color .22s ease;
    }
    .nav__link:hover { transform: translateY(-2px); }
    .nav__link-icon { background: #fff1f4; color: var(--pink); border: 2px solid transparent; }
    .nav__item:nth-child(2) .nav__link-icon { background: #eafaf7; color: var(--teal-dark); }
    .nav__item:nth-child(3) .nav__link-icon { background: #fff8df; color: #d89b00; }
    .nav__item:nth-child(4) .nav__link-icon { background: #edf3ff; color: var(--blue); }
    .nav__item:nth-child(5) .nav__link-icon { background: #f4edff; color: var(--purple); }
    .nav__link:hover .nav__link-icon { transform: rotate(-8deg) scale(1.08); }
    .nav__link--active { background: #fff0f3; }
    .nav__link--active::after { bottom: 0; height: 3px; width: 22px; }
    .nav__cta { padding: 13px 21px; border: 3px solid #fff; box-shadow: 0 9px 22px rgba(239,91,120,.28); }
    .nav__cta:hover { transform: translateY(-3px) rotate(1deg); }
}
@media (max-width: 768px) {
    .nav__link { border-radius: 18px; }
    .nav__link-icon { width: 34px; height: 34px; }
    .nav__item:nth-child(2) .nav__link-icon { background: #eafaf7; color: var(--teal-dark); }
    .nav__item:nth-child(3) .nav__link-icon { background: #fff8df; color: #d89b00; }
    .nav__item:nth-child(4) .nav__link-icon { background: #edf3ff; color: var(--blue); }
    .nav__item:nth-child(5) .nav__link-icon { background: #f4edff; color: var(--purple); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Kids illustration gallery ---------- */
.gallery { gap: 22px; }
.gallery__item { background: #fff; border: 8px solid #fff; box-shadow: 0 14px 32px rgba(23,43,77,.10); }
.gallery__item::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .14; mix-blend-mode: multiply; }
.gallery__item--art::before { background: #ef5b78; }
.gallery__item--play::before { background: #36b7a5; }
.gallery__item--learn::before { background: #f6c85f; }
.gallery__item img { filter: saturate(1.06) contrast(1.02); }
.gallery__item span { left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px; background: rgba(23,43,77,.78); backdrop-filter: blur(6px); }
@media (max-width: 768px) {
    .gallery__item span { opacity: 1; transform: none; font-size: .82rem; }
}
