/* ==========================================================================
   Parlayan Çocuk Anaokulu — Ana Stil
   2026 Modern: yumuşak gradyanlar, glassmorphism, eğlenceli ama kurumsal
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body, 'Nunito', 'Plus Jakarta Sans', system-ui, sans-serif);
    color: var(--brand-dark, #2D3047);
    line-height: 1.65;
    background:
        radial-gradient(circle at 10% -10%, rgba(255,107,157,.12), transparent 50%),
        radial-gradient(circle at 110% 20%, rgba(78,205,196,.12), transparent 50%),
        radial-gradient(circle at 50% 110%, rgba(255,182,39,.10), transparent 50%),
        var(--brand-light, #FFF8F0);
    overflow-x: hidden;
    min-height: 100vh;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-purple); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display, 'Quicksand', 'Nunito', system-ui, sans-serif);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 .6em;
    color: var(--brand-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: clamp(56px, 8vw, 120px) 0; position: relative; }

/* ==== Buttons ==== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--btn-radius, 999px);
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 38px; font-size: 17px; }

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    color: #fff;
    box-shadow: 0 8px 24px -8px var(--brand-primary);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 30px -8px var(--brand-purple); }

.btn-secondary {
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    color: #fff;
    box-shadow: 0 8px 24px -8px var(--brand-secondary);
}
.btn-secondary:hover { transform: translateY(-2px); color: #fff; }

.btn-accent {
    background: linear-gradient(135deg, var(--brand-accent), #5B9DF9);
    color: #fff;
    box-shadow: 0 8px 24px -8px var(--brand-accent);
}
.btn-accent:hover { transform: translateY(-2px); color: #fff; }

.btn-outline {
    background: rgba(255,255,255,.7);
    color: var(--brand-dark);
    border-color: rgba(45, 48, 71, .12);
    backdrop-filter: blur(8px);
}
.btn-outline:hover { background: #fff; border-color: var(--brand-primary); color: var(--brand-primary); transform: translateY(-2px); }

.btn-whatsapp {
    background: #25D366; color: #fff;
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--brand-dark); }
.btn-ghost:hover { background: rgba(0,0,0,.05); }

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.35), transparent 50%);
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* ==== Page loader ==== */
#page-loader {
    position: fixed; inset: 0; background: var(--brand-light);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; transition: opacity .5s, visibility .5s;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-star { font-size: 80px; animation: spin 1.2s linear infinite, pulse 1s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(1.15); } }

/* ==== Top announce ==== */
.top-announce {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-purple));
    color: #fff; font-size: 14px; padding: 9px 0;
    text-align: center;
}
.top-announce .container { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.top-announce a { color: #fff; font-weight: 700; text-decoration: underline; }
.badge-pulse { animation: bounce 1.6s ease-in-out infinite; display: inline-block; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }

/* ==== Header ==== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(45,48,71,.06);
    transition: padding .25s, box-shadow .25s;
}
.site-header.is-scrolled { padding: 4px 0; box-shadow: 0 6px 28px -10px rgba(45,48,71,.18); }
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
    font-size: 38px; line-height: 1;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    width: 54px; height: 54px;
    border-radius: 18px;
    display: grid; place-items: center;
    box-shadow: 0 8px 20px -8px var(--brand-primary);
    animation: wiggle 5s ease-in-out infinite;
}
.brand-logo-img {
    height: 54px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    transition: transform .3s ease;
}
.brand-has-logo:hover .brand-logo-img { transform: scale(1.04); }
.site-header.is-scrolled .brand-logo-img { height: 44px; }
@media (max-width: 600px) {
    .brand-logo-img { height: 42px; max-width: 180px; }
}
@keyframes wiggle {
    0%,90%,100% { transform: rotate(0); }
    93% { transform: rotate(-7deg); }
    96% { transform: rotate(7deg); }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-text strong { font-family: var(--font-display); font-size: 19px; color: var(--brand-dark); white-space: nowrap; }
.brand-text small { font-size: 12px; color: var(--brand-purple); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 16px; }
.main-nav ul { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; flex-wrap: nowrap; }
.main-nav ul a {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 14.5px;
    transition: all .2s;
    position: relative;
    white-space: nowrap;
}
.main-nav ul a:hover { background: rgba(255,107,157,.10); color: var(--brand-primary); }
.main-nav ul a.is-active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    color: #fff;
}

/* Submenu */
.main-nav ul li.has-submenu { position: relative; }
.main-nav ul li.has-submenu .submenu-arrow { font-size: 11px; opacity: .7; }
.main-nav ul .submenu {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 18px 50px -12px rgba(45,48,71,.18);
    border: 1px solid rgba(0,0,0,.04);
    list-style: none; margin: 0;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 100;
}
.main-nav ul li.has-submenu:hover > .submenu,
.main-nav ul li.has-submenu:focus-within > .submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav ul .submenu li { display: block; }
.main-nav ul .submenu a {
    display: block; padding: 10px 14px;
    font-size: 14px; border-radius: 10px;
    white-space: normal;
}
.main-nav ul .submenu a:hover { background: var(--brand-light); }

.nav-cta { display: flex; gap: 8px; }
.nav-close { display: none; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: none; background: transparent;
    flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
    cursor: pointer;
}
.nav-toggle span {
    display: block; width: 26px; height: 3px;
    background: var(--brand-dark); border-radius: 3px;
    transition: transform .25s, opacity .25s;
}

/* ==== Hero / Slider ==== */
.hero {
    position: relative;
    min-height: clamp(560px, 80vh, 760px);
    overflow: hidden;
}
.slider {
    position: relative;
    width: 100%;
    min-height: inherit;
    height: clamp(560px, 80vh, 760px);
}
.slide {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    opacity: 0; transform: scale(.98);
    transition: opacity .8s ease, transform .8s ease;
    pointer-events: none;
}
.slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.slide-bg {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0; transition: opacity .8s;
    overflow: hidden;
}
.slide.is-active .slide-bg { opacity: 1; }
.slide-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .35;
    mix-blend-mode: overlay;
}
.slide-bg::after {
    /* Dipte daha koyu degradeyle metnin okunurluğunu artır */
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.15), rgba(0,0,0,0) 50%, rgba(0,0,0,.18));
}

/* === Slide arka plan videosu (YouTube iframe) === */
.slide-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none; /* tıklamaları geçirme — video sadece dekoratif */
}
.slide-video iframe {
    /* iframe'i ekran/slide alanını tam kaplayacak şekilde ölçekle.
       16:9 oranını koruyup viewport'a göre fazlasını taşırıyoruz.   */
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);  /* 16:9 → 16/9 = 1.7778 */
    height: max(56.25vw, 100vh);  /* 9/16 = 0.5625 */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.slide-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.45) 100%),
        linear-gradient(135deg, rgba(255,107,157,.18), rgba(160,108,213,.22));
    pointer-events: none;
}
/* Video varsa renk gradyanı hafif şeffaflaşsın ki video görünsün */
.slide.has-video-bg .slide-bg { opacity: 0; }
.slide.has-video-bg.is-active .slide-bg { opacity: .25; }

/* === Slider altında bulut efekti === */
.hero-clouds {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    pointer-events: none;
    line-height: 0;
}
.hero-clouds svg {
    display: block;
    width: 100%;
    height: clamp(80px, 11vw, 160px);
}
.hero-clouds .cloud-back  { fill: rgba(255,255,255,.55); }
.hero-clouds .cloud-mid   { fill: rgba(255,255,255,.80); }
.hero-clouds .cloud-front { fill: #ffffff; }

/* Hafif yatay süzülme animasyonu — bulutlar canlı dursun */
@keyframes cloudFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-18px); }
}
.hero-clouds .cloud-back  { animation: cloudFloat 14s ease-in-out infinite; transform-origin: center; }
.hero-clouds .cloud-mid   { animation: cloudFloat 10s ease-in-out infinite reverse; transform-origin: center; }
.hero-clouds .cloud-front { animation: cloudFloat 7s  ease-in-out infinite; transform-origin: center; }

@media (prefers-reduced-motion: reduce) {
    .hero-clouds .cloud-back,
    .hero-clouds .cloud-mid,
    .hero-clouds .cloud-front { animation: none; }
}

.slide-inner {
    position: relative; z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.slide-content { position: relative; z-index: 2; }
.slide-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    color: var(--brand-dark);
    box-shadow: 0 4px 14px -4px rgba(0,0,0,.1);
    margin-bottom: 18px;
}
.slide-subtitle { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(255,255,255,.95); margin-bottom: 8px; font-weight: 500; }
.slide-title { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 16px; text-shadow: 0 4px 30px rgba(0,0,0,.15); }
.slide-desc { color: rgba(255,255,255,.92); font-size: clamp(1rem, 1.4vw, 1.15rem); margin-bottom: 28px; max-width: 520px; }
.slide-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.slide-visual {
    position: relative; z-index: 2;
    aspect-ratio: 1;
    width: 100%; max-width: 420px;
    margin-left: auto;
    display: grid; place-items: center;
}
.visual-blob {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 60%);
    border-radius: 38% 62% 60% 40% / 40% 50% 50% 60%;
    animation: blob 12s ease-in-out infinite;
}
@keyframes blob {
    0%,100% { border-radius: 38% 62% 60% 40% / 40% 50% 50% 60%; }
    33% { border-radius: 60% 40% 38% 62% / 50% 65% 35% 50%; }
    66% { border-radius: 50% 50% 60% 40% / 35% 50% 50% 65%; }
}
.visual-emoji {
    font-size: clamp(120px, 18vw, 200px);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.18));
    animation: float 4s ease-in-out infinite;
}
.visual-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.35), 0 10px 30px -10px rgba(0,0,0,.2);
    transform: rotate(-2deg);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 4px solid rgba(255,255,255,.6);
    animation: visualFrameFloat 6s ease-in-out infinite;
}
.visual-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ==== Okulda Bir Gün / Yatay Timeline ==== */
.school-day-section {
    background: linear-gradient(180deg, transparent, rgba(255,228,236,.35) 30%, rgba(224,244,241,.35) 70%, transparent);
    overflow: hidden;
}
.day-timeline {
    position: relative;
    margin: 50px 0 20px;
    padding: 0 8px 8px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px 10px;
    align-items: start;
}
.day-line { display: none; } /* eski tek-çizgi devre dışı, her step kendi konektörünü çiziyor */
.day-step::before {
    content: '';
    position: absolute;
    top: 34px; left: 50%; right: -50%;
    height: 4px;
    background: linear-gradient(90deg, var(--step-color), color-mix(in srgb, var(--step-color) 50%, #FFB627));
    border-radius: 4px;
    z-index: 0;
    opacity: .55;
}
/* Her satırın son kartında konektör yok (5'li satır = desktop, 1 sütun = mobile) */
.day-step:nth-child(5n)::before,
.day-step:last-child::before { display: none; }
.day-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    opacity: 0;
    animation: dayStepIn .6s ease forwards;
    z-index: 1;
}
@keyframes dayStepIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.day-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px 12px;
    box-shadow: 0 14px 30px -18px rgba(45,48,71,.2), 0 3px 10px -4px rgba(45,48,71,.06);
    border-top: 3px solid var(--step-color);
    width: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
}
.day-step-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(45,48,71,.22); }
.day-step-time {
    display: inline-block;
    padding: 3px 9px;
    background: color-mix(in srgb, var(--step-color) 15%, #fff);
    color: var(--step-color);
    font-weight: 700;
    border-radius: 999px;
    font-size: 11px;
    margin-bottom: 6px;
    letter-spacing: .2px;
    white-space: nowrap;
}
.day-step-title { margin: 0 0 4px; font-size: 13.5px; line-height: 1.25; color: var(--brand-dark); font-weight: 700; }
.day-step-desc  { margin: 0; color: #56607a; font-size: 11.5px; line-height: 1.4; }
.day-step-marker {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--step-color), color-mix(in srgb, var(--step-color) 55%, #fff));
    display: grid; place-items: center;
    font-size: 24px;
    box-shadow: 0 0 0 5px #fff, 0 8px 22px -6px color-mix(in srgb, var(--step-color) 60%, transparent);
    z-index: 2;
    animation: dayPulse 3.6s ease-in-out infinite;
}
@keyframes dayPulse {
    0%,100% { transform: translateX(-50%) scale(1); }
    50%     { transform: translateX(-50%) scale(1.08); }
}

/* ==== Anasayfa Instagram şeridi ==== */
.ig-home-section {
    background: linear-gradient(180deg, rgba(255, 230, 240, .45), rgba(224, 244, 241, .35));
    overflow: hidden;
}
.ig-embed-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px -28px rgba(45, 48, 71, .28);
    background: #fff;
    min-height: 280px;
}
.ig-embed-frame iframe {
    width: 100% !important;
    min-height: 420px;
    border: 0 !important;
    display: block;
}
.ig-follow-hint {
    text-align: center;
    margin: 28px 0 0;
}
.ig-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
}
.ig-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 12px 4px 20px;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.ig-track:focus-visible {
    outline: 2px solid var(--color-primary, #FF6B9D);
    outline-offset: 4px;
    border-radius: 12px;
}
.ig-card {
    flex: 0 0 min(76vw, 280px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 44px -22px rgba(45, 48, 71, .35);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}
.ig-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px -20px rgba(45, 48, 71, .4);
}
.ig-card-media {
    position: relative;
    margin: 0;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE5EC, #E0F4F1);
}
.ig-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ig-card-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    backdrop-filter: blur(4px);
}
.ig-card-cap {
    display: block;
    padding: 12px 14px 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #475569;
    border-top: 1px solid rgba(15, 23, 42, .06);
}
.ig-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--brand-dark, #2D3047);
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 24px -8px rgba(45, 48, 71, .35);
    transition: transform .2s, background .2s;
    display: grid;
    place-items: center;
    line-height: 1;
}
.ig-nav:hover {
    background: var(--color-primary, #FF6B9D);
    color: #fff;
    transform: scale(1.06);
}
.ig-fallback-card {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 40px 28px 44px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 22px 50px -24px rgba(45, 48, 71, .25);
}
.ig-fallback-card h3 {
    margin: 0 0 10px;
    color: var(--brand-dark, #2D3047);
}
.ig-fallback-card p {
    margin: 0 0 22px;
    color: #64748b;
    line-height: 1.6;
}
.ig-fallback-icon {
    font-size: 56px;
    margin-bottom: 12px;
    line-height: 1;
}
@media (max-width: 720px) {
    .ig-carousel-wrap { gap: 4px; }
    .ig-nav { width: 38px; height: 38px; font-size: 18px; }
}

/* ==== Okulumuz alt sayfa (Fiziki Şartlar, Sınıflar...) ==== */
.facility-section { padding-top: 30px; }
.facility-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    margin-top: 10px;
}
.facility-text { padding: 14px 0; }
.facility-lead {
    color: #56607a;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.facility-content {
    color: #2D3047;
    line-height: 1.75;
    font-size: 16px;
}
.facility-content h2,
.facility-content h3 { margin: 22px 0 10px; color: var(--brand-dark); }
.facility-content ul { padding-left: 22px; margin: 12px 0; }
.facility-content ul li { margin-bottom: 6px; }
.facility-content p { margin: 0 0 14px; }

.facility-image {
    position: relative;
    border-radius: 28px;
    overflow: visible;
    aspect-ratio: 4/3;
}
.facility-image img,
.facility-image-fallback {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 60px -25px rgba(45,48,71,.25);
    position: relative; z-index: 2;
}
.facility-image-fallback {
    background: linear-gradient(135deg, #FFE5EC, #E0F4F1);
    display: grid; place-items: center;
    font-size: 120px;
}
.facility-image-bubble {
    position: absolute;
    width: 220px; height: 220px;
    top: -40px; right: -40px;
    border-radius: 50%;
    z-index: 1;
    animation: blob 12s ease-in-out infinite;
}
.facility-image-bubble--2 {
    width: 160px; height: 160px;
    top: auto; right: auto;
    bottom: -30px; left: -30px;
    animation-duration: 15s;
}
.facility-carousel-wrap { margin-top: 60px; }
.facility-carousel-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
}

@media (max-width: 900px) {
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .facility-image { aspect-ratio: 4/3; max-width: 540px; margin: 0 auto; }
}

@media (max-width: 1100px) {
    .day-timeline {
        grid-template-columns: repeat(10, 220px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 18px;
        gap: 12px;
    }
    .day-step { scroll-snap-align: start; }
    /* Yatay scroll modunda her step (sonuncusu hariç) konektör çizer */
    .day-step:nth-child(5n)::before { display: block; }
    .day-step:last-child::before    { display: none; }
}
@media (max-width: 720px) {
    .day-timeline { grid-template-columns: repeat(10, 76vw); }
    .day-step-card { padding: 12px 14px; }
    .day-step-title { font-size: 14px; }
    .day-step-desc  { font-size: 12.5px; }
}
@keyframes visualFrameFloat {
    0%,100% { transform: rotate(-2deg) translateY(0); }
    50%     { transform: rotate(-2deg) translateY(-12px); }
}
@keyframes float {
    0%,100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-22px) rotate(5deg); }
}

.slider-controls {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 5;
}
.slider-dot {
    width: 12px; height: 12px; border-radius: 999px;
    background: rgba(255,255,255,.5);
    border: none; cursor: pointer; transition: all .25s;
}
.slider-dot.is-active { width: 36px; background: #fff; }

.slider-arrows {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 100%; display: flex; justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}
.slider-arrow {
    pointer-events: auto;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.4);
    color: #fff; font-size: 24px; cursor: pointer;
    display: grid; place-items: center;
    transition: all .25s;
}
.slider-arrow:hover { background: rgba(255,255,255,.5); transform: scale(1.1); }

/* ==== Hero carousel (header altı foto şerit) ==== */
.hero-carousel {
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.4));
    overflow: hidden;
    padding: 18px 0;
}
.hero-carousel::before, .hero-carousel::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    width: 80px; z-index: 2; pointer-events: none;
}
.hero-carousel::before { left: 0; background: linear-gradient(90deg, var(--brand-light), transparent); }
.hero-carousel::after  { right: 0; background: linear-gradient(-90deg, var(--brand-light), transparent); }

.carousel-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee 45s linear infinite;
    will-change: transform;
}
.hero-carousel:hover .carousel-track { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.carousel-item {
    flex: 0 0 auto;
    width: 280px; height: 180px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 28px -16px rgba(45,48,71,.18);
    transform: rotate(var(--r, 0deg));
    transition: transform .35s, box-shadow .35s;
}
.carousel-item:nth-child(odd)  { --r: -1.5deg; margin-top: 8px; }
.carousel-item:nth-child(even) { --r: 1.5deg; margin-bottom: 8px; }
.carousel-item:hover {
    transform: rotate(0) scale(1.04);
    box-shadow: 0 18px 40px -14px rgba(255,107,157,.35);
    z-index: 3;
}
.carousel-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.carousel-item:hover img { transform: scale(1.08); }
.carousel-item-tag {
    position: absolute; top: 10px; left: 10px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px; font-weight: 700;
    color: var(--brand-dark);
}

@media (max-width: 767px) {
    .carousel-item { width: 200px; height: 140px; }
    .hero-carousel::before, .hero-carousel::after { width: 40px; }
}

/* ==== Floating emojis ==== */
#floating-emojis {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    overflow: hidden;
}
.float-emoji {
    position: absolute; font-size: 28px;
    opacity: .65;
    animation: floatup linear infinite;
    will-change: transform;
}
@keyframes floatup {
    0% { transform: translateY(0) rotate(0); opacity: 0; }
    10% { opacity: .65; }
    90% { opacity: .65; }
    100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ==== Sections shared ==== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block; padding: 6px 16px;
    background: rgba(255,107,157,.12); color: var(--brand-primary);
    border-radius: 999px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: 14px;
}
.section-tag.tag-blue  { background: rgba(78,205,196,.12); color: var(--brand-accent); }
.section-tag.tag-yellow{ background: rgba(255,182,39,.15);  color: #d49000; }
.section-tag.tag-purple{ background: rgba(160,108,213,.12); color: var(--brand-purple); }
.section-head p { color: #6B7385; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ==== Stats ==== */
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    padding: 40px;
    border-radius: 32px;
    color: #fff;
    box-shadow: 0 30px 60px -30px var(--brand-primary);
}
.stat-card { text-align: center; padding: 16px; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1; }
.stat-label { font-size: 14px; opacity: .9; margin-top: 6px; }

/* ==== Programs grid (etiket/tag biçimli kartlar) ==== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 36px 22px;
    padding: 8px 0 28px;
}
.program-card {
    /* --pc-bg ve --pc-deep, PHP tarafından inline style ile atanır
       (yoksa altta sade bir varsayılan kullanılır).                 */
    background: var(--pc-bg, #FFE7EE);
    border-radius: 38px;
    padding: 28px 22px 36px;
    text-align: center;
    text-decoration: none;
    color: #2D3047;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: visible;
    box-shadow: 0 12px 28px -20px rgba(45,48,71,.25);
    transition: transform .35s ease, box-shadow .35s ease;
    isolation: isolate;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px -24px var(--card-color, rgba(45,48,71,.4));
    color: #2D3047;
}

/* Başlık */
.program-card h3 {
    color: var(--pc-deep, #2D3047);
    font-size: 1.22rem;
    line-height: 1.18;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    min-height: 2.4em; /* 2 satıra kadar baslıkları aynı hizada tutar */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Görsel kutusu */
.program-card__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.55);
    display: grid; place-items: center;
    margin: 0 0 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.program-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.program-card:hover .program-card__media img { transform: scale(1.05); }
.program-card__media .program-card__placeholder {
    font-size: 54px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.12));
}

/* Açıklama */
.program-card p {
    color: #2D3047;
    font-size: .88rem;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
}

/* Yaş / saat bilgisi (alt satır) */
.program-card .program-age {
    display: block;
    background: transparent;
    color: var(--pc-deep, #2D3047);
    padding: 0;
    margin: 0;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 0;
}

/* Alt çıkıntı — programa özel renkli yuvarlak nokta */
.program-card__dot {
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pc-deep, #2D3047);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 16px;
    line-height: 1;
    border: 4px solid #fff;
    box-shadow: 0 8px 18px -6px rgba(0,0,0,.30);
    transition: transform .35s ease;
}
.program-card:hover .program-card__dot { transform: translateX(-50%) rotate(-12deg) scale(1.08); }

/* Eski iç işaretler artık kullanılmıyor (geriye dönük uyum) */
.program-card .program-icon,
.program-card .program-link { display: none !important; }

/* Programs sayfası için ek aksiyon barı (varsa) */
.program-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
    .program-card { padding: 20px 14px 26px; border-radius: 28px; }
    .program-card h3 { font-size: 1rem; }
    .program-card p { font-size: .78rem; }
}

/* ==== Features ==== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.feature {
    padding: 28px 24px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(45,48,71,.06);
    transition: all .3s;
}
.feature:hover { border-color: var(--brand-primary); transform: translateY(-4px); }
.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    color: #fff;
    border-radius: 18px;
    display: grid; place-items: center;
    font-size: 26px;
    margin-bottom: 16px;
}
.feature h4 { margin: 0 0 6px; font-size: 1.1rem; }
.feature p { color: #6B7385; font-size: .92rem; margin: 0; }

/* ==== Testimonials ==== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial {
    background: linear-gradient(180deg, #fff 0%, var(--brand-light) 100%);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    box-shadow: 0 12px 30px -16px rgba(45,48,71,.15);
}
.testimonial::before {
    content: '"';
    position: absolute; top: 12px; right: 22px;
    font-size: 96px; line-height: 1;
    color: var(--brand-primary); opacity: .15;
    font-family: serif;
}
.testimonial-rating { color: var(--brand-secondary); margin-bottom: 12px; font-size: 18px; letter-spacing: 2px; }
.testimonial-text { color: #4A5060; font-size: .98rem; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-purple));
    display: grid; place-items: center; font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--brand-dark); margin: 0; }
.testimonial-meta { font-size: 13px; color: #888; }

/* ==== Gallery ==== */
.gallery-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 32px;
}
.gallery-filter {
    padding: 8px 18px; border-radius: 999px;
    background: #fff; border: 1px solid rgba(45,48,71,.1);
    font-weight: 600; font-size: 14px; cursor: pointer;
    transition: all .2s;
    color: var(--brand-dark);
}
.gallery-filter.is-active, .gallery-filter:hover {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    color: #fff; border-color: transparent;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: zoom-in;
    background: var(--brand-light);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45,48,71,.75));
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 16px;
    color: #fff;
}
.gallery-item:hover .item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.92);
    display: none; align-items: center; justify-content: center;
    z-index: 9999; padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img, .lightbox video { max-width: 92vw; max-height: 88vh; border-radius: 12px; }
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: #fff;
    border: none; font-size: 26px; cursor: pointer;
}
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: #fff;
    border: none; font-size: 28px; cursor: pointer;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   Page Hero — Animasyonlu Sabit Arka Plan (Anasayfa Hariç)
   ============================================================ */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 18px 0 16px;
    background: linear-gradient(135deg,
        rgba(255,107,157,.12) 0%,
        rgba(160,108,213,.10) 40%,
        rgba(78,205,196,.08) 100%);
}

/* Animasyonlu dekoratif baloncuklar */
.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.page-hero::before {
    width: 260px; height: 260px;
    top: -100px; right: -60px;
    background: radial-gradient(circle, rgba(255,107,157,.18) 0%, transparent 70%);
    animation: ph-float 8s ease-in-out infinite;
}
.page-hero::after {
    width: 180px; height: 180px;
    bottom: -80px; left: -40px;
    background: radial-gradient(circle, rgba(78,205,196,.16) 0%, transparent 70%);
    animation: ph-float 11s ease-in-out infinite reverse;
}
@keyframes ph-float {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(20px,-30px) scale(1.06); }
    66%      { transform: translate(-15px,20px) scale(.96); }
}

/* Küçük ek baloncuklar (span.ph-bubble ile eklenir) */
.ph-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: ph-float linear infinite;
}

/* İçerik hizalaması */
.page-hero .container { position: relative; z-index: 2; }
.page-hero__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
/* Resim yoksa başlık ortada */
.page-hero__inner--center {
    flex-direction: column;
    text-align: center;
}
.page-hero__text { flex: 1; min-width: 0; }
.page-hero__text h1 { margin-bottom: 10px; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.page-hero__text p  { color: #6B7385; font-size: 1.05rem; max-width: 600px; }
.page-hero__text .breadcrumbs { margin-bottom: 14px; }

.page-hero__image {
    flex: 0 0 380px;
    max-width: 380px;
}
.page-hero__image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 24px 60px -20px rgba(45,48,71,.22);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

@media (max-width: 900px) {
    .page-hero__inner { flex-direction: column !important; }
    .page-hero__image { flex: none; max-width: 100%; width: 100%; }
    .page-hero__inner--center { text-align: center; }
    .page-hero { padding: 14px 0 12px; }
}

/* Breadcrumb (genel) */
.breadcrumbs { font-size: 13px; color: #888; margin-bottom: 12px; }
.breadcrumbs a { color: var(--brand-primary); }

/* ==== Forms ==== */
.form-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 24px 60px -30px rgba(45,48,71,.2);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 18px; }
.form-row.cols-1 { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 14px; color: var(--brand-dark); }
.form-group label .req { color: var(--brand-primary); }

.form-control {
    padding: 14px 18px;
    border: 2px solid rgba(45,48,71,.1);
    border-radius: 16px;
    font-size: 15px;
    font-family: inherit;
    background: var(--brand-light);
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(255,107,157,.12);
    background: #fff;
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%232D3047' d='M6 9L1 4h10z'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 40px; }

.form-check { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.form-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--brand-primary); }

/* ==== Alerts ==== */
.alert { padding: 14px 18px; border-radius: 14px; margin-bottom: 18px; font-weight: 500; }
.alert.success { background: #C6F6D5; color: #22543D; }
.alert.danger  { background: #FED7D7; color: #742A2A; }
.alert.info    { background: #BEE3F8; color: #2A4365; }

/* ==== FAQ ==== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff; border-radius: 18px;
    margin-bottom: 12px; overflow: hidden;
    border: 1px solid rgba(45,48,71,.06);
    transition: box-shadow .2s;
}
.faq-item.is-open { box-shadow: 0 12px 30px -16px rgba(45,48,71,.18); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer;
    font-weight: 600; font-size: 1rem; color: var(--brand-dark);
}
.faq-q::after {
    content: '+'; font-size: 22px; color: var(--brand-primary);
    transition: transform .25s;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 24px 22px; color: #6B7385; }
.faq-item.is-open .faq-a { max-height: 600px; }

/* ==== CTA Banner ==== */
.cta-banner {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    color: #fff;
    padding: 60px 40px;
    border-radius: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
    content: ''; position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.cta-banner::before { top: -100px; left: -100px; width: 280px; height: 280px; }
.cta-banner::after { bottom: -120px; right: -100px; width: 320px; height: 320px; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; opacity: .95; max-width: 600px; margin: 0 auto 24px; }

/* ==== Team grid ==== */
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.team-card {
    background: #fff; border-radius: 24px;
    padding: 28px 20px; text-align: center;
    box-shadow: 0 12px 30px -16px rgba(45,48,71,.15);
    transition: transform .3s;
}
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
    width: 110px; height: 110px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    display: grid; place-items: center;
    font-size: 56px;
    color: #fff;
}
.team-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 0 0 4px; color: var(--brand-dark); }
.team-position { color: var(--brand-primary); font-size: .9rem; font-weight: 600; margin-bottom: 12px; }
.team-bio { color: #6B7385; font-size: .9rem; }

/* ==== Footer ==== */
.site-footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,.85);
    margin-top: 80px;
    position: relative;
    padding-top: 0;
}
.footer-clouds { color: var(--brand-light); margin-top: -1px; }
.footer-clouds svg { display: block; width: 100%; height: 60px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding: 60px 20px 40px;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: var(--brand-secondary); }
.footer-brand p { font-size: .94rem; opacity: .8; margin: 16px 0; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--font-display); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 8px; font-size: .92rem; }
.footer-list a { color: rgba(255,255,255,.75); }
.footer-list a:hover { color: var(--brand-secondary); }
.contact-list li { display: flex; gap: 8px; align-items: flex-start; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-row a {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.08);
    font-size: 20px;
    transition: all .2s;
}
.social-row a:hover { background: var(--brand-primary); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    font-size: .85rem;
    opacity: .7;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* ==== Mobile FAB ==== */
.mobile-fab {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(45,48,71,.08);
    display: none; gap: 6px; padding: 8px;
    z-index: 90;
    box-shadow: 0 -8px 30px -10px rgba(45,48,71,.18);
}
.fab {
    flex: 1; padding: 8px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    border-radius: 14px; text-decoration: none;
    font-size: 11px; font-weight: 700;
    color: var(--brand-dark);
    transition: all .2s;
}
.fab span { font-size: 22px; }
.fab-apply { background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple)); color: #fff; }
.fab-wp { background: #25D366; color: #fff; }
.fab-call { background: var(--brand-secondary); color: #fff; }

/* Scroll to top */
#scrollTop {
    position: fixed; right: 20px; bottom: 90px;
    width: 50px; height: 50px;
    border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    color: #fff; font-size: 22px; cursor: pointer;
    box-shadow: 0 12px 24px -10px var(--brand-primary);
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all .25s;
    z-index: 95;
}
#scrollTop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==== Game cards ==== */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.game-card {
    background: linear-gradient(135deg, var(--card-color, var(--brand-primary)), var(--card-color2, var(--brand-purple)));
    color: #fff;
    border-radius: 28px;
    padding: 32px 28px;
    cursor: pointer;
    transition: transform .3s;
    position: relative; overflow: hidden;
    min-height: 200px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.game-card:hover { transform: translateY(-6px) scale(1.02); }
.game-icon { font-size: 64px; margin-bottom: 8px; }
.game-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.game-desc { font-size: .9rem; opacity: .9; }

/* ============================================================
   Gallery Carousel (Program detayı için)
   ============================================================ */
.gallery-carousel {
    position: relative;
    margin-top: 16px;
    border-radius: 24px;
    overflow: visible;
}
.gc-viewport {
    border-radius: 24px;
    overflow: hidden;
    background: var(--brand-light);
    box-shadow: 0 16px 40px -20px rgba(45,48,71,.18);
}
.gc-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.gc-slide {
    flex: 0 0 100%;
    position: relative;
}
.gc-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.gc-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 18px 24px;
    background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
    color: #fff;
    font-weight: 600;
}
.gc-prev, .gc-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: none; cursor: pointer;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    color: var(--brand-dark);
    font-size: 26px; font-weight: 700;
    box-shadow: 0 8px 20px -8px rgba(45,48,71,.3);
    transition: all .2s;
    display: grid; place-items: center;
}
.gc-prev { left: -8px; }
.gc-next { right: -8px; }
.gc-prev:hover, .gc-next:hover {
    background: var(--brand-primary); color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.gc-prev:disabled, .gc-next:disabled { opacity: 0; pointer-events: none; }

.gc-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 18px;
}
.gc-dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    background: rgba(45,48,71,.25);
    border: none; cursor: pointer;
    transition: all .25s;
}
.gc-dot.is-active {
    width: 32px;
    background: var(--brand-primary);
}

/* Video carousel */
.video-carousel .gc-slide { padding: 0; }
.gc-video {
    aspect-ratio: 16/9;
    border-radius: 0;
    overflow: hidden;
    background: #000;
}
.gc-video iframe {
    width: 100%; height: 100%;
    border: 0; display: block;
}

@media (max-width: 767px) {
    .gc-prev { left: 8px; }
    .gc-next { right: 8px; }
    .gc-prev, .gc-next { width: 40px; height: 40px; font-size: 22px; }
}

/* ============================================================
   Popup Sistemi
   ============================================================ */
.popup-overlay {
    position: fixed;
    z-index: 9990;
    opacity: 0; visibility: hidden;
    transition: opacity .35s, visibility .35s;
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }

.popup-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 80px -20px rgba(45,48,71,.4);
    overflow: hidden;
    border-top: 6px solid;
    border-image: linear-gradient(90deg, var(--p-from), var(--p-to)) 1;
}

/* Modal stili: tam ekran ortalı */
.popup-style-modal {
    inset: 0;
    background: rgba(45,48,71,.55);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.popup-style-modal .popup-card {
    width: min(480px, 92vw);
    max-height: 90vh; overflow-y: auto;
    transform: scale(.92) translateY(20px);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.popup-style-modal.is-open .popup-card { transform: scale(1) translateY(0); }
.popup-style-modal .popup-icon {
    background: linear-gradient(135deg, var(--p-from), var(--p-to));
    color: #fff;
    text-align: center;
    padding: 32px 0 24px;
    font-size: 72px;
    line-height: 1;
}
.popup-style-modal .popup-body {
    padding: 24px 28px 28px;
    text-align: center;
}

/* Banner stili: üstten kayan */
.popup-style-banner {
    top: 0; left: 0; right: 0;
    padding: 12px;
    transform: translateY(-100%);
    transition: transform .4s, opacity .4s, visibility .4s;
}
.popup-style-banner.is-open { transform: translateY(0); }
.popup-style-banner .popup-card {
    max-width: 1200px; margin: 0 auto;
    background: linear-gradient(90deg, var(--p-from), var(--p-to));
    color: #fff;
    border: none;
    border-radius: 18px;
}
.popup-style-banner .popup-body {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 24px;
    flex-wrap: wrap;
}
.popup-style-banner .popup-icon-inline { font-size: 28px; }
.popup-style-banner .popup-title { color: #fff; margin: 0; font-size: 17px; }
.popup-style-banner .popup-subtitle { font-size: 12px; opacity: .85; margin-bottom: 0; }
.popup-style-banner .popup-content { font-size: 14px; opacity: .9; margin: 0; flex: 1; min-width: 200px; }
.popup-style-banner .popup-content p { margin: 0; }
.popup-style-banner .popup-buttons { margin-left: auto; }
.popup-style-banner .popup-close { color: #fff; }

/* Köşe stili: sağ alt küçük kart */
.popup-style-corner {
    bottom: 80px; right: 20px;
    width: 360px; max-width: calc(100vw - 40px);
    transform: translateY(20px);
    transition: transform .4s, opacity .4s, visibility .4s;
}
.popup-style-corner.is-open { transform: translateY(0); }
.popup-style-corner .popup-card { padding: 20px; }
.popup-style-corner .popup-icon-inline { font-size: 36px; display: block; margin-bottom: 8px; }

/* Ortak elementler */
.popup-close {
    position: absolute; top: 12px; right: 12px;
    z-index: 5;
    width: 36px; height: 36px;
    border-radius: 50%; border: none;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    color: var(--brand-dark);
    font-size: 22px; cursor: pointer;
    display: grid; place-items: center;
    transition: all .2s;
}
.popup-close:hover { background: #fff; transform: rotate(90deg); }

.popup-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.popup-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin: 0 0 8px;
    color: var(--brand-dark);
    line-height: 1.2;
}
.popup-subtitle {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,107,157,.12);
    color: var(--brand-primary);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .03em;
    border-radius: 999px;
    margin-bottom: 10px;
}
.popup-content {
    color: #6B7385;
    margin-bottom: 20px;
    line-height: 1.6;
}
.popup-content p { margin: 0 0 8px; }
.popup-buttons {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center;
}
.popup-style-modal .popup-buttons { justify-content: center; }
.popup-style-corner .popup-buttons { justify-content: flex-start; }

@media (max-width: 767px) {
    .popup-style-corner { bottom: 80px; left: 16px; right: 16px; width: auto; }
    .popup-style-banner .popup-body { padding: 12px 16px; }
    .popup-style-banner .popup-buttons { width: 100%; margin-left: 0; }
}

/* News */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.news-card {
    background: #fff; border-radius: 24px; overflow: hidden;
    box-shadow: 0 12px 30px -16px rgba(45,48,71,.15);
    transition: transform .3s;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); color: inherit; }
.news-card .news-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    display: grid; place-items: center;
    font-size: 64px;
    overflow: hidden;
}
.news-card .news-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card .news-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.news-card h3 { font-size: 1.1rem; }
.news-card .news-meta { font-size: 12px; color: #888; margin-top: auto; }

/* ==== Animations on scroll ==== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */

/* Sıkı menü modu (1200-1399px arası) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .header-row { gap: 12px; }
    .main-nav ul a { padding: 8px 11px; font-size: 13.5px; }
    .nav-cta .btn-sm { padding: 8px 14px; font-size: 13px; }
    .brand-text strong { font-size: 17px; }
    .brand-text small { font-size: 11px; }
}

/* Hamburger menü: 1199px ve altı */
@media (max-width: 1199px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: -100%; height: 100vh;
        width: min(85%, 360px);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 24px 24px;
        transition: right .3s;
        box-shadow: -10px 0 40px rgba(45,48,71,.18);
        z-index: 200;
        overflow-y: auto;
    }
    body.nav-open { overflow: hidden; }
    body.nav-open .main-nav { right: 0; }
    .main-nav ul { flex-direction: column; gap: 4px; width: 100%; }
    .main-nav ul a { display: block; padding: 14px 18px; }
    .main-nav ul .submenu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; padding-left: 12px;
        border: none; background: transparent;
    }
    .main-nav ul .submenu a { padding: 10px 14px; font-size: 14px; }
    .nav-cta { flex-direction: column; gap: 10px; margin-top: 16px; }
    .nav-close {
        display: grid; place-items: center;
        position: absolute; top: 16px; right: 16px;
        width: 40px; height: 40px; border-radius: 50%;
        background: var(--brand-light); border: none;
        font-size: 26px; cursor: pointer; color: var(--brand-dark);
    }
}

@media (max-width: 1023px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .slide-inner { grid-template-columns: 1fr; padding: 40px 20px; gap: 24px; }
    .slide-visual { display: none; }
    .slide.has-visual-img .slide-visual { display: grid; max-width: 320px; margin: 0 auto; }
    .slide-content { text-align: center; }
    .slide.has-visual-img .slide-content { text-align: center; }
    .slide-buttons { justify-content: center; }
    .hero, .slider { height: auto; min-height: clamp(480px, 70vh, 640px); }
}

@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stats { grid-template-columns: 1fr 1fr; padding: 24px; }
    body { padding-bottom: 70px; }
    .mobile-fab { display: flex; }
    #scrollTop { bottom: 80px; right: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }
    .cta-banner { padding: 40px 24px; }
    .header-row { padding: 12px 16px; }
    .brand-logo { width: 44px; height: 44px; font-size: 28px; }
    .brand-text strong { font-size: 16px; }
    .brand-text small { font-size: 11px; }
}

/* Smooth motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ====================================================================
   ETKİNLİK TAKVİMİ
   ==================================================================== */
.featured-events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.featured-event { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.06); border-top: 4px solid var(--event-color, #FF6B9D); transition: transform .25s, box-shadow .25s; }
.featured-event:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.fe-image { aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: var(--event-color); }
.fe-image.fe-emoji { display: grid; place-items: center; font-size: 72px; background: linear-gradient(135deg, var(--event-color) 0%, var(--brand-purple) 100%); color: #fff; }
.fe-body { padding: 22px; display: grid; grid-template-columns: 80px 1fr; gap: 16px; }
.fe-date { background: var(--brand-light); border-radius: 14px; padding: 12px 8px; text-align: center; align-self: start; }
.fe-date strong { display: block; font-size: 32px; color: var(--event-color); line-height: 1; }
.fe-date small { display: block; font-size: 12px; color: #64748b; text-transform: uppercase; }
.fe-body h3 { margin: 0 0 6px; font-size: 18px; }
.fe-body p { color: #64748b; margin: 0 0 10px; font-size: 14px; }
.fe-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #64748b; margin-bottom: 12px; }

.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.calendar { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.05); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple)); color: #fff; }
.cal-weekdays div { padding: 12px; text-align: center; font-weight: 700; font-size: 14px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day { min-height: 110px; padding: 8px; border: 1px solid #f1f5f9; position: relative; }
.cal-day-empty { background: #fafafa; }
.cal-day.is-today { background: linear-gradient(135deg, #FFE5EC, #FFF3D6); }
.cal-day.has-events { background: #FFFAF5; }
.cal-day-num { display: inline-block; font-weight: 700; color: #475569; font-size: 13px; margin-bottom: 4px; }
.cal-day.is-today .cal-day-num { background: var(--brand-primary); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; }
.cal-event { display: block; font-size: 11px; color: #fff !important; padding: 3px 6px; border-radius: 4px; margin-bottom: 3px; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: transform .15s; }
.cal-event:hover { transform: scale(1.03); }

.event-timeline { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 0 auto; }
.timeline-month { font-size: 15px; font-weight: 700; color: var(--brand-primary); padding: 14px 0 6px; text-transform: uppercase; letter-spacing: .5px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; background: #fff; padding: 18px; border-radius: 14px; border-left: 4px solid var(--event-color, #FF6B9D); box-shadow: 0 2px 10px rgba(0,0,0,.04); transition: .2s; }
.timeline-item:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.ti-date { text-align: center; padding: 8px; background: var(--brand-light); border-radius: 12px; }
.ti-date strong { display: block; font-size: 28px; color: var(--event-color); line-height: 1; }
.ti-date small { font-size: 11px; color: #64748b; text-transform: uppercase; display: block; }
.ti-date span { display: block; margin-top: 4px; font-size: 12px; color: #475569; font-weight: 600; }
.ti-body h3 { margin: 0 0 4px; font-size: 17px; }
.ti-body p { margin: 0 0 6px; color: #64748b; font-size: 14px; }
.ti-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #94a3b8; }

/* Etkinlik Detay */
.event-hero { padding: 60px 0 40px; background: linear-gradient(135deg, color-mix(in srgb, var(--event-color) 12%, #fff), #fff); }
.event-hero .back-link { color: #475569; text-decoration: none; font-weight: 600; font-size: 14px; }
.event-hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; margin-top: 18px; }
@media (max-width: 900px) { .event-hero-grid { grid-template-columns: 1fr; } }
.event-meta-pill { display: inline-block; padding: 6px 14px; background: var(--event-color); color: #fff; border-radius: 999px; font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.event-hero-grid h1 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 12px; }
.event-lead { font-size: 17px; color: #475569; line-height: 1.6; margin-bottom: 20px; }
.event-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.event-info-grid > div { background: #fff; padding: 12px 14px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.event-info-grid strong { display: block; font-size: 12px; color: #64748b; text-transform: uppercase; margin-bottom: 2px; }
.event-info-grid span { font-weight: 600; }
.event-hero-image { aspect-ratio: 1; border-radius: 24px; background-size: cover; background-position: center; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.event-hero-image.event-hero-emoji { display: grid; place-items: center; font-size: 140px; background: linear-gradient(135deg, var(--event-color), var(--brand-purple)); }
.event-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 30px; }
@media (max-width: 900px) { .event-detail-grid { grid-template-columns: 1fr; } }
.event-content { background: #fff; padding: 30px; border-radius: 18px; line-height: 1.7; }
.event-sidebar { display: flex; flex-direction: column; gap: 16px; }
.rsvp-card { padding: 24px; }

/* Anasayfa: Yaklaşan Etkinlikler — kompakt, tek satır */
.upcoming-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.upcoming-event {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    border-left: 4px solid var(--event-color);
    transition: .2s;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    align-items: center;
}
.upcoming-event:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.10); }
.ue-date { background: var(--brand-light); border-radius: 10px; padding: 8px 4px; text-align: center; align-self: center; }
.ue-date strong { display: block; font-size: 20px; color: var(--event-color); line-height: 1; font-weight: 800; }
.ue-date small { display: block; font-size: 10px; color: #64748b; text-transform: uppercase; margin-top: 2px; }
.ue-icon { font-size: 20px; line-height: 1; margin-bottom: 2px; }
.upcoming-event h3 { margin: 0 0 2px; font-size: 14.5px; line-height: 1.25; }
.upcoming-event p { margin: 0 0 2px; color: #64748b; font-size: 12px; line-height: 1.3; }
.ue-time { font-size: 12px; color: #475569; font-weight: 600; }

@media (max-width: 880px) {
    .upcoming-events-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   DOĞUM GÜNÜ
   ==================================================================== */
.today-cake-banner { background: linear-gradient(135deg, #FFE5EC, #FFF3D6, #E0F4F1); border-radius: 24px; padding: 40px 30px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.08); position: relative; overflow: hidden; }
.cake-confetti { font-size: 28px; letter-spacing: 12px; animation: bobble 3s ease-in-out infinite; margin-bottom: 12px; }
.today-cake-banner h2 { font-size: clamp(24px, 4vw, 36px); margin: 0 0 24px; background: linear-gradient(135deg, #FF6B9D, #A06CD5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.today-stars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.today-star { background: #fff; border-radius: 18px; padding: 20px; }
.today-star img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; display: block; border: 6px solid #FFB627; }
.today-star-emoji { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, #FFE5EC, #FFF3D6); margin: 0 auto 10px; display: grid; place-items: center; font-size: 60px; border: 6px solid #FFB627; }
.today-star h3 { margin: 0; font-size: 22px; }
.age-badge { display: inline-block; margin-top: 6px; padding: 4px 12px; background: #FF6B9D; color: #fff; border-radius: 999px; font-size: 13px; font-weight: 700; }
.today-star p { margin-top: 12px; font-style: italic; color: #475569; }

.bd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.bd-card { background: #fff; border-radius: 18px; padding: 18px; text-align: center; transition: .2s; box-shadow: 0 2px 10px rgba(0,0,0,.04); border: 2px solid transparent; }
.bd-card:hover { border-color: #FFB627; transform: translateY(-4px); }
.bd-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; display: block; border: 4px solid #FFE5EC; }
.bd-photo-placeholder { background: linear-gradient(135deg, #FFE5EC, #FFF3D6); display: grid; place-items: center; font-size: 42px; }
.bd-card h3 { margin: 0; font-size: 16px; }
.bd-date { margin-top: 8px; padding: 6px 10px; background: #FFF3D6; color: #92400e; border-radius: 8px; font-size: 13px; font-weight: 600; display: inline-block; }
.bd-countdown { margin-top: 8px; padding: 4px 12px; background: #FFE5EC; color: #FF6B9D; border-radius: 999px; font-size: 11px; font-weight: 700; display: inline-block; }

.bd-month-list { display: flex; flex-direction: column; gap: 10px; max-width: 720px; margin: 0 auto; }
.bd-month-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: #fff; border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.04); transition: .15s; }
.bd-month-item:hover { transform: translateX(4px); }
.bd-month-day { background: linear-gradient(135deg, #FFE5EC, #FFF3D6); padding: 10px 14px; border-radius: 12px; text-align: center; min-width: 70px; }
.bd-month-day strong { display: block; font-size: 22px; color: #FF6B9D; line-height: 1; }
.bd-month-day small { font-size: 11px; color: #64748b; text-transform: uppercase; }
.bd-mini-photo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.bd-mini-emoji { background: #FFF3D6; display: grid; place-items: center; font-size: 24px; }

/* Anasayfa Doğum Günü Pill'leri */
.birthdays-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.bd-pill { background: #fff; padding: 10px 16px; border-radius: 999px; display: flex; align-items: center; gap: 10px; box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: .2s; }
.bd-pill:hover { transform: translateY(-3px); }
.bd-pill img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.bd-pill-emoji { width: 36px; height: 36px; border-radius: 50%; background: #FFF3D6; display: grid; place-items: center; font-size: 18px; }
.bd-pill strong { color: #2D3047; font-size: 14px; }
.bd-pill span { color: #FF6B9D; font-weight: 600; font-size: 13px; }

/* ====================================================================
   VİDEO TESTIMONIALS
   ==================================================================== */
.video-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.video-testimonial { background: #fff; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: 0 4px 18px rgba(0,0,0,.06); transition: .25s; }
.video-testimonial:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.14); }
.vt-thumb { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; background-color: #1f2937; }
.vt-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent 50%); }
.vt-play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; border: none; background: rgba(255,255,255,.95); color: #FF6B9D; font-size: 22px; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: .2s; z-index: 2; padding-left: 4px; }
.video-testimonial:hover .vt-play { transform: scale(1.1); background: #fff; }
.vt-info { padding: 14px 16px; }
.vt-info strong { display: block; font-size: 15px; }
.vt-info span { color: #64748b; font-size: 13px; }

.video-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.video-lightbox.is-open { display: flex; }
.vl-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 24px; cursor: pointer; }
.vl-frame { width: 100%; max-width: 960px; aspect-ratio: 16/9; }
.vl-frame iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; }

/* ====================================================================
   TOPBAR
   ==================================================================== */
.top-bar { font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-right-text { opacity: .85; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
    color: inherit; text-decoration: none; opacity: .7;
    width: 26px; height: 26px; display: grid; place-items: center;
    border-radius: 50%; background: rgba(255,255,255,.1); transition: .2s;
}
.topbar-social a:hover { opacity: 1; background: rgba(255,255,255,.22); transform: translateY(-2px); }
@media (max-width: 700px) {
    .top-bar { padding: 6px 0; font-size: 12px; }
    .topbar-row { justify-content: center; text-align: center; }
}

/* ====================================================================
   FOOTER CREDIT
   ==================================================================== */
.footer-credit a {
    color: var(--brand-secondary, #FFB627);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    margin-left: 4px;
    transition: .2s;
}
.footer-credit a:hover { color: var(--brand-primary, #FF6B9D); }

/* ====================================================================
   STATS — yeni renkli tasarım
   ==================================================================== */
.stat-card { position: relative; overflow: hidden; }
.stat-card .stat-icon-bg {
    position: absolute; right: -10px; top: -10px;
    font-size: 88px; opacity: .08; line-height: 1;
    transform: rotate(-12deg);
    pointer-events: none;
}
.stat-card .stat-num { color: var(--stat-color, #FF6B9D); }

/* ====================================================================
   HOME ABOUT SECTION
   ==================================================================== */
.home-about { background: linear-gradient(180deg, #fff 0%, var(--brand-light) 100%); }
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .home-about-grid { grid-template-columns: 1fr; gap: 32px; } }
.home-about-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 14px 0 18px;
    line-height: 1.2;
}
.home-about-text > p {
    color: #475569; line-height: 1.7; font-size: 17px; margin-bottom: 24px;
}
.about-feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .about-feature-list { grid-template-columns: 1fr; } }
.about-feature-list li {
    display: flex; gap: 10px; align-items: flex-start;
    background: #fff; padding: 12px 16px; border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    font-weight: 600; font-size: 14.5px;
    transition: .2s;
}
.about-feature-list li:hover { transform: translateX(4px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.home-about-image { position: relative; }
.home-about-image img {
    width: 100%; height: auto;
    border-radius: 28px;
    box-shadow: 0 30px 60px -20px rgba(45,48,71,.25);
    aspect-ratio: 4/3; object-fit: cover;
}
.about-floating-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
    color: #fff; padding: 18px 24px;
    border-radius: 22px;
    box-shadow: 0 16px 40px -12px var(--brand-primary);
    text-align: center;
    animation: bobble 4s ease-in-out infinite;
}
.about-floating-badge strong { display: block; font-size: 36px; line-height: 1; }
.about-floating-badge span { display: block; font-size: 12px; margin-top: 4px; opacity: .9; }

/* ====================================================================
   IMAGE LIGHTBOX
   ==================================================================== */
.img-lightbox {
    position: fixed; inset: 0; background: rgba(15, 23, 42, .96);
    z-index: 9999; display: none; align-items: center; justify-content: center;
    padding: 60px 40px;
}
.img-lightbox.is-open { display: flex; }
.img-lightbox img {
    max-width: 100%; max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    animation: scaleInLB .25s ease;
}
@keyframes scaleInLB { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.img-lightbox button {
    position: absolute; background: rgba(255,255,255,.12); color: #fff;
    border: none; width: 48px; height: 48px; border-radius: 50%;
    cursor: pointer; font-size: 24px;
    transition: .2s; display: grid; place-items: center;
    backdrop-filter: blur(10px);
}
.img-lightbox button:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.ilb-close { top: 20px; right: 20px; }
.ilb-prev { left: 20px; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 32px; }
.ilb-next { right: 20px; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 32px; }
.ilb-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: #fff; background: rgba(0,0,0,.5); padding: 6px 14px;
    border-radius: 999px; font-size: 13px; font-weight: 600;
    backdrop-filter: blur(8px);
}
@media (max-width: 600px) {
    .img-lightbox { padding: 60px 12px; }
    .ilb-prev, .ilb-next { width: 44px; height: 44px; font-size: 24px; }
}

/* Carousel item: button olarak */
.carousel-item { background: none; border: 0; padding: 0; cursor: pointer; }

/* ====================================================================
   PAGE HERO — alt sayfalar için resim + gradient overlay
   ==================================================================== */
.page-hero {
    position: relative;
    padding: clamp(70px, 12vw, 130px) 0 clamp(50px, 8vw, 80px);
    background: linear-gradient(135deg, var(--brand-light), #fff);
    overflow: hidden;
    isolation: isolate;
}
.page-hero.has-bg {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    z-index: 0;
    backdrop-filter: blur(2px);
}
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero h1 {
    font-size: clamp(30px, 5vw, 48px);
    font-family: var(--font-display);
    margin: 14px 0 10px;
    color: inherit;
    text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.page-hero p {
    font-size: 18px;
    color: inherit;
    opacity: .92;
    max-width: 680px; margin: 0 auto;
}
.breadcrumbs {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    padding: 8px 16px; border-radius: 999px;
    font-size: 13.5px; font-weight: 600;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    color: #475569;
}
.page-hero.has-bg .breadcrumbs {
    background: rgba(255,255,255,.95);
    color: #2D3047;
}
.breadcrumbs a { color: var(--brand-primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .bc-sep { color: #cbd5e1; }

/* ====================================================================
   HOME SECTIONS — admin'den eklenen dinamik bölümler
   ==================================================================== */
.home-section { padding: clamp(50px, 8vw, 80px) 0; position: relative; }
.home-section.hsec-bg-light { background: linear-gradient(180deg, #fff 0%, #fff8f0 100%); }
.home-section.hsec-bg-white { background: #fff; }
.home-section.hsec-bg-gradient { background: linear-gradient(135deg, var(--brand-primary, #FF6B9D) 0%, var(--brand-purple, #A06CD5) 100%); color: #fff; }
.home-section.hsec-bg-gradient .hsec-title, .home-section.hsec-bg-gradient .hsec-sub { color: #fff; }
.home-section.hsec-bg-dark { background: #1e293b; color: #fff; }
.home-section.hsec-bg-dark .hsec-title, .home-section.hsec-bg-dark .hsec-sub { color: #fff; }

.hsec-head { text-align: center; margin-bottom: 32px; }
.hsec-badge {
    display: inline-block; padding: 4px 14px; border-radius: 999px;
    background: var(--brand-primary, #FF6B9D); color: #fff;
    font-size: 12px; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase; margin-bottom: 10px;
}
.home-section.hsec-bg-gradient .hsec-badge { background: rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.hsec-title { font-size: clamp(22px, 3.5vw, 34px); margin: 0 0 10px; line-height: 1.2; }
.hsec-sub { color: #64748b; font-size: 16px; margin: 0 auto 14px; max-width: 640px; }
.home-section.hsec-bg-gradient .hsec-sub, .home-section.hsec-bg-dark .hsec-sub { color: rgba(255,255,255,.85); }
.hsec-divider {
    display: block; width: 60px; height: 4px; margin: 12px auto 0;
    background: linear-gradient(90deg, var(--brand-primary, #FF6B9D), var(--brand-purple, #A06CD5));
    border-radius: 2px;
}

/* GRID */
.hsec-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
    gap: 18px;
}
@media (max-width: 1024px) { .hsec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 768px)  { .hsec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
@media (max-width: 480px)  { .hsec-grid { grid-template-columns: 1fr; } }

/* CAROUSEL */
.hsec-carousel-wrap { position: relative; }
.hsec-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 18px * (var(--show, 4) - 1)) / var(--show, 4));
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 16px;
    scrollbar-width: thin;
}
.hsec-carousel[data-cols="2"] { --show: 2; }
.hsec-carousel[data-cols="3"] { --show: 3; }
.hsec-carousel[data-cols="4"] { --show: 4; }
.hsec-carousel[data-cols="5"] { --show: 5; }
.hsec-carousel[data-cols="6"] { --show: 6; }
.hsec-carousel > * { scroll-snap-align: start; }
@media (max-width: 1024px) { .hsec-carousel { --show: 3 !important; } }
@media (max-width: 768px)  { .hsec-carousel { --show: 2 !important; } }
@media (max-width: 480px)  { .hsec-carousel { --show: 1.2 !important; } }

.hsec-carousel::-webkit-scrollbar { height: 6px; }
.hsec-carousel::-webkit-scrollbar-track { background: rgba(0,0,0,.05); border-radius: 3px; }
.hsec-carousel::-webkit-scrollbar-thumb { background: var(--brand-primary, #FF6B9D); border-radius: 3px; }

.hsec-prev, .hsec-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: none; cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    color: var(--brand-primary, #FF6B9D); font-size: 24px;
    display: grid; place-items: center;
    z-index: 5;
    transition: .2s;
}
.hsec-prev { left: -10px; }
.hsec-next { right: -10px; }
.hsec-prev:hover, .hsec-next:hover { background: var(--brand-primary); color: #fff; transform: translateY(-50%) scale(1.1); }
@media (max-width: 768px) { .hsec-prev, .hsec-next { width: 36px; height: 36px; font-size: 20px; } }

/* CARD */
.hsec-card {
    display: flex; flex-direction: column;
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 6px 20px -12px rgba(0,0,0,.12);
    transition: .3s;
    text-decoration: none; color: inherit;
    cursor: pointer;
}
.hsec-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px -16px rgba(0,0,0,.2); }
.hsec-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f1f5f9; }
.hsec-card-media img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.hsec-card:hover .hsec-card-media img { transform: scale(1.07); }
.hsec-card-fallback { display: grid; place-items: center; height: 100%; font-size: 48px; opacity: .4; }
.hsec-card-tag {
    position: absolute; top: 10px; left: 10px;
    background: var(--brand-primary, #FF6B9D); color: #fff;
    padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700;
}
.hsec-play {
    position: absolute; inset: 0; display: grid; place-items: center;
    background: rgba(0,0,0,.25); color: #fff;
    transition: .3s;
}
.hsec-play span {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--brand-primary, #FF6B9D); color: #fff;
    display: grid; place-items: center;
    font-size: 22px; padding-left: 4px;
    box-shadow: 0 8px 24px rgba(255,107,157,.5);
    transition: .3s;
}
.hsec-card:hover .hsec-play { background: rgba(0,0,0,.4); }
.hsec-card:hover .hsec-play span { transform: scale(1.15); }

.hsec-card-body { padding: 12px 14px; }
.hsec-card-body strong { display: block; font-size: 14.5px; color: #1e293b; margin-bottom: 2px; }
.hsec-card-body span { font-size: 12.5px; color: #64748b; }

