/* ========================================
   GÖKKUŞAĞI ANAOKULU - STYLE.CSS
   The Joyful Discovery Garden Theme
   ======================================== */

:root {
    --bg-primary: #FEFEFE;
    --bg-secondary: #F0F7FF;
    --mint-green: #5BCFAD;
    --peach: #FF7F6B;
    --sunny-yellow: #FFD23F;
    --lavender: #A78BFA;
    --mint-dark: #2BA88A;
    --peach-dark: #E85D49;
    --yellow-dark: #F5B800;
    --lavender-dark: #7C5DC7;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 36px rgba(0,0,0,0.14);
    --squircle-sm: 12px;
    --squircle-md: 16px;
    --squircle-lg: 20px;
    --squircle-xl: 28px;
    --gradient-primary: linear-gradient(135deg, #5BCFAD 0%, #2BA88A 100%);
    --gradient-warm: linear-gradient(135deg, #FF7F6B 0%, #E85D49 100%);
    --gradient-sun: linear-gradient(135deg, #FFD23F 0%, #F5B800 100%);
    --gradient-dream: linear-gradient(135deg, #A78BFA 0%, #7C5DC7 100%);
    --border-color: rgba(0,0,0,0.08);
    --accent-line: 5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-primary);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   CURSOR BUBBLES
   ======================================== */
.cursor-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: bubbleFloat 1.5s ease-out forwards;
    opacity: 0.7;
}

@keyframes bubbleFloat {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.7;
    }
    100% {
        transform: scale(0) translateY(-100px);
        opacity: 0;
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 48px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 48px;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(3deg); }
}

.logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--mint-dark), var(--peach-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--squircle-sm);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 210, 63, 0.3);
}

.nav-link.active {
    background: var(--sunny-yellow);
    font-weight: 800;
    color: var(--text-dark);
}

.nav-cta {
    background: linear-gradient(135deg, var(--peach), var(--peach-dark));
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: var(--squircle-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(255,171,133,0.4);
}

.nav-cta:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,171,133,0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav .nav-link {
    font-size: 24px;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border-color);
    width: 80%;
    text-align: center;
}

.mobile-nav .nav-link.active {
    background: var(--sunny-yellow);
    font-weight: 800;
}

.mobile-nav .nav-cta.active {
    box-shadow: 0 0 0 3px var(--sunny-yellow);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: var(--sunny-yellow);
    border-radius: var(--squircle-sm);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 120px 24px 80px;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 280px;
    background: linear-gradient(135deg, var(--mint-green), transparent);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 220px;
    background: linear-gradient(135deg, var(--peach), transparent);
    top: 20%;
    right: 5%;
    animation-delay: -2s;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--sunny-yellow), transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

.shape-4 {
    width: 250px;
    height: 230px;
    background: linear-gradient(135deg, var(--lavender), transparent);
    bottom: 10%;
    right: -3%;
    animation-delay: -6s;
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
}

.shape-5 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--mint-green), var(--sunny-yellow));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -1s;
    opacity: 0.3;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.02);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(0.98);
    }
    75% {
        transform: translateY(-25px) rotate(3deg) scale(1.01);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 24px;
    border-radius: var(--squircle-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
    margin-bottom: 32px;
    animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes badgePop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--mint-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: titleReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .highlight {
    display: inline-block;
    position: relative;
}

.hero-title .highlight-mint {
    color: var(--mint-dark);
}

.hero-title .highlight-peach {
    color: var(--peach-dark);
}

.hero-title .highlight-yellow {
    background: linear-gradient(180deg, transparent 60%, var(--sunny-yellow) 60%);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: titleReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: titleReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-icon {
    width: 28px;
    height: 44px;
    border: 2px solid var(--text-light);
    border-radius: 14px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ========================================
   HERO SLIDER - Split Layout
   ======================================== */
.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 580px;
    max-height: 860px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    display: grid;
    grid-template-columns: 52% 48%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Left Side - Colored Content Panel */
.hero-slide-content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 56px 72px 72px;
    text-align: left;
    overflow: hidden;
}

/* Decorative circles */
.hero-slide-content::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.hero-slide-content::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    bottom: 40px;
    left: -40px;
    pointer-events: none;
}

/* Per-slide content backgrounds */
.hero-slide:nth-child(1) .hero-slide-content { background: var(--mint-green); }
.hero-slide:nth-child(2) .hero-slide-content { background: var(--peach); }
.hero-slide:nth-child(3) .hero-slide-content { background: var(--sunny-yellow); }
.hero-slide:nth-child(4) .hero-slide-content { background: var(--lavender); }

/* Right Side - Image */
.hero-slide-bg {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    overflow: hidden;
}

.hero-slide-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg img {
    transform: scale(1.06);
}

/* Overlay on image side */
.hero-slide-overlay {
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
}

.slide-overlay-gradient { background: linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.12)); }
.slide-overlay-mint { background: rgba(91,207,173,0.08); }
.slide-overlay-peach { background: rgba(255,127,107,0.08); }
.slide-overlay-lavender { background: rgba(167,139,250,0.08); }

/* Badge */
.hero-slide .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    width: fit-content;
    box-shadow: none;
    border-radius: var(--squircle-lg);
}

.hero-slide .hero-badge .hero-badge-dot {
    background: var(--text-dark);
}

/* Title */
.hero-slide .hero-title {
    font-size: clamp(32px, 3.6vw, 52px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

/* Highlight overrides for split layout */
.hero-slide .hero-title .highlight {
    position: relative;
    z-index: 1;
}

.hero-slide .hero-title .highlight::after {
    content: '';
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: 4px;
    height: 32%;
    background: rgba(255,255,255,0.4);
    z-index: -1;
}

.hero-slide .hero-title .highlight-mint,
.hero-slide .hero-title .highlight-peach,
.hero-slide .hero-title .highlight-yellow,
.hero-slide .hero-title .highlight-lavender {
    color: var(--text-dark);
    background: none;
}

/* Subtitle */
.hero-slide .hero-subtitle {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.72;
    line-height: 1.75;
    max-width: 440px;
    margin: 0 0 32px 0;
}

/* Buttons */
.hero-slide .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-slide .hero-buttons .btn-primary {
    background: var(--text-dark);
    color: white;
}

.hero-slide .hero-buttons .btn-secondary {
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--text-dark);
}

/* Features */
.hero-slide-content .slide-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-slide-content .slide-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.45);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    backdrop-filter: none;
    border-radius: var(--squircle-sm);
}

.slide-feature svg {
    width: 14px;
    height: 14px;
    color: var(--text-dark);
}

/* Staggered Animations */
.hero-slide .hero-badge,
.hero-slide .hero-title,
.hero-slide .hero-subtitle,
.hero-slide .hero-buttons,
.hero-slide .slide-features {
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-badge {
    animation: heroIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-slide.active .hero-title {
    animation: heroIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-slide.active .hero-subtitle {
    animation: heroIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-slide.active .hero-buttons {
    animation: heroIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hero-slide.active .slide-features {
    animation: heroIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation Dots - Bottom Left */
.slider-nav {
    position: absolute;
    bottom: 36px;
    left: 72px;
    z-index: 100;
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(45, 52, 54, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(45, 52, 54, 0.45);
}

.slider-dot.active {
    background: var(--text-dark);
    width: 32px;
    border-radius: 4px;
}

/* Arrows - Bottom Right (over image) */
.slider-arrows {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 100;
    display: flex;
    gap: 6px;
    pointer-events: none;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: var(--squircle-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
}

/* Progress Bar - Only on content side */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 3px;
    background: rgba(0, 0, 0, 0.06);
    z-index: 100;
}

.slider-progress-bar {
    height: 100%;
    background: var(--text-dark);
    width: 0;
    transition: width 0.1s linear;
}

/* Slider Mobile */
@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .hero-slides {
        height: auto;
    }

    .hero-slide {
        position: relative;
        display: none;
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto;
        opacity: 1;
        visibility: visible;
    }

    .hero-slide.active {
        display: grid;
    }

    .hero-slide-bg {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-slide-overlay {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-slide-content {
        grid-column: 1;
        grid-row: 2;
        padding: 36px 24px 64px;
    }

    .hero-slide-content::before {
        width: 140px;
        height: 140px;
        top: -30px;
        right: -30px;
    }

    .hero-slide-content::after {
        width: 90px;
        height: 90px;
    }

    .hero-slide .hero-title {
        font-size: clamp(26px, 7vw, 36px);
    }

    .hero-slide .hero-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .slider-nav {
        left: 24px;
        bottom: 18px;
    }

    .slider-arrows {
        right: 16px;
        bottom: 12px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-progress {
        width: 100%;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--squircle-md);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mint-green), var(--mint-dark));
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(123,196,168,0.4);
}

.btn-primary:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 32px rgba(123,196,168,0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 24px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sunny-yellow);
    padding: 8px 20px;
    border-radius: var(--squircle-lg);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid var(--yellow-dark);
}

/* Section Divider */
.section + .section::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--mint-green), var(--peach), var(--sunny-yellow), var(--lavender));
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   FEATURES
   ======================================== */
.features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--squircle-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(91,207,173,0.08) 0%, transparent 40%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(91,207,173,0.18);
}

.feature-card:nth-child(2)::before { background: linear-gradient(180deg, rgba(255,127,107,0.08) 0%, transparent 40%); }
.feature-card:nth-child(2):hover { box-shadow: 0 12px 36px rgba(255,127,107,0.18); }
.feature-card:nth-child(3)::before { background: linear-gradient(180deg, rgba(255,210,63,0.10) 0%, transparent 40%); }
.feature-card:nth-child(3):hover { box-shadow: 0 12px 36px rgba(255,210,63,0.18); }
.feature-card:nth-child(4)::before { background: linear-gradient(180deg, rgba(167,139,250,0.08) 0%, transparent 40%); }
.feature-card:nth-child(4):hover { box-shadow: 0 12px 36px rgba(167,139,250,0.18); }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: var(--squircle-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-dark);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   EVENTS
   ======================================== */
.events {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.events-timeline {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.events-timeline::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: var(--squircle-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(40px);
}

.event-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.event-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--squircle-md);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-date-day {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--peach-dark);
    line-height: 1;
}

.event-date-month {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
}

.event-category {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: var(--squircle-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.category-workshop { background: var(--mint-green); color: var(--text-dark); }
.category-trip { background: var(--peach); color: var(--text-dark); }
.category-show { background: var(--lavender); color: var(--text-dark); }
.category-sport { background: var(--sunny-yellow); color: var(--text-dark); }

.event-content {
    padding: 24px;
}

.event-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.event-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========================================
   NEWS BENTO GRID
   ======================================== */
.news {
    background: var(--bg-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 24px;
}

.bento-item {
    background: var(--white);
    border-radius: var(--squircle-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.bento-item.visible {
    opacity: 1;
    transform: scale(1);
}

.bento-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.bento-menu-card .bento-overlay {
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
}

.bento-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover .bento-image img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
}

.bento-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: var(--squircle-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: var(--mint-green);
    color: var(--text-dark);
}

.bento-title {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bento-large .bento-title {
    font-size: 28px;
}

.bento-excerpt {
    font-size: 14px;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-text-card {
    background: linear-gradient(135deg, var(--mint-green), var(--mint-dark));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.bento-text-card .bento-overlay {
    background: none;
    position: relative;
}

.bento-text-card .bento-title {
    color: var(--text-dark);
}

.bento-text-card .bento-excerpt {
    color: var(--text-dark);
    opacity: 0.8;
}

.bento-quote-card {
    background: linear-gradient(135deg, var(--lavender), var(--lavender-dark));
}

.bento-stat-card {
    background: linear-gradient(135deg, var(--peach), var(--peach-dark));
    text-align: center;
}

.bento-stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.bento-stat-label {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-top: 8px;
}

/* ========================================
   PARENT HUB
   ======================================== */
.parent-hub {
    background: var(--bg-primary);
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hub-card {
    background: var(--white);
    border-radius: var(--squircle-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.hub-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hub-card:nth-child(1):hover { transform: translateY(-12px); box-shadow: 0 12px 36px rgba(91,207,173,0.18); }
.hub-card:nth-child(2):hover { transform: translateY(-12px); box-shadow: 0 12px 36px rgba(255,127,107,0.18); }
.hub-card:nth-child(3):hover { transform: translateY(-12px); box-shadow: 0 12px 36px rgba(255,210,63,0.18); }
.hub-card:nth-child(4):hover { transform: translateY(-12px); box-shadow: 0 12px 36px rgba(167,139,250,0.18); }

.hub-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.hub-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: var(--squircle-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hub-card:hover .hub-icon {
    transform: scale(1.15) rotate(-5deg);
}

.hub-icon-mint { background: var(--mint-green); }
.hub-icon-peach { background: var(--peach); }
.hub-icon-yellow { background: var(--sunny-yellow); }
.hub-icon-lavender { background: var(--lavender); }

.hub-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.hub-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hub-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mint-dark);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.hub-link:hover {
    gap: 12px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-preview {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Gallery: fill last row when odd items */
.gallery-mosaic .gallery-item:last-child:nth-child(3n+2) {
    grid-column: span 2;
}

/* Full Gallery Page */
.gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-full .gallery-item {
    height: 280px;
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-full .gallery-item:nth-child(1),
.gallery-full .gallery-item:nth-child(6),
.gallery-full .gallery-item:nth-child(11) {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    background: var(--white);
    border-radius: var(--squircle-md);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-soft);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--mint-green);
    transform: scale(1.05);
}

/* ========================================
   CTA SECTION — Invitation Card
   ======================================== */
.cta-section {
    padding: 120px 24px;
    background: #FFF9F2;
    position: relative;
    overflow: hidden;
}

.cta-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.cta-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--mint-green);
    top: -10%;
    left: -5%;
    animation: ctaFloat 12s ease-in-out infinite;
}

.cta-blob-2 {
    width: 350px;
    height: 350px;
    background: var(--peach);
    bottom: -10%;
    right: -5%;
    animation: ctaFloat 12s ease-in-out infinite reverse;
}

.cta-blob-3 {
    width: 250px;
    height: 250px;
    background: var(--lavender);
    top: 50%;
    left: 60%;
    animation: ctaFloat 10s ease-in-out infinite 2s;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.cta-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--squircle-xl);
    padding: 64px 72px;
    position: relative;
    z-index: 10;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.03),
        0 24px 80px rgba(0,0,0,0.06),
        0 8px 24px rgba(0,0,0,0.04);
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(91,207,173,0.15), rgba(255,210,63,0.15));
    color: var(--mint-dark);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-highlight {
    background: linear-gradient(135deg, var(--mint-dark), var(--lavender-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--mint-green), var(--mint-dark));
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--squircle-md);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 28px rgba(43,168,138,0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(43,168,138,0.35);
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--text-dark);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--squircle-md);
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta-phone:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: var(--peach);
    box-shadow: 0 8px 28px rgba(255,127,107,0.15);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cta-trust-num {
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.cta-trust-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-trust-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ========================================
   SUB-PAGE CTA (galeri, hakkımızda, eğitim)
   ======================================== */
.cta-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content .cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content .cta-desc {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   CONTACT PAGE v3 — Clean & Modern
   ======================================== */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-block:hover {
    border-color: var(--mint-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.cib-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cib-icon-mint { background: var(--mint-green); color: var(--text-dark); }
.cib-icon-peach { background: var(--peach); color: var(--text-dark); }
.cib-icon-yellow { background: var(--sunny-yellow); color: var(--text-dark); }
.cib-icon-lavender { background: var(--lavender); color: var(--white); }

.cib-content h4 {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cib-content p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.cib-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.cib-content a:hover {
    color: var(--mint-dark);
}

.contact-map-block {
    overflow: hidden;
    height: 200px;
    border: 2px solid var(--border-color);
}

.contact-map-block iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   FOOTER — Warm & Modern
   ======================================== */
.footer {
    background: #FAF7F3;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.footer-rainbow {
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--mint-green),
        var(--sunny-yellow),
        var(--peach),
        var(--lavender),
        var(--mint-green)
    );
    background-size: 200% 100%;
    animation: rainbowSlide 8s linear infinite;
}

@keyframes rainbowSlide {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 24px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-pill {
    width: 40px;
    height: 40px;
    border-radius: var(--squircle-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-pill:hover {
    transform: translateY(-3px) scale(1.08);
}

.social-pill.social-instagram { background: rgba(255,127,107,0.12); color: var(--peach-dark); }
.social-pill.social-instagram:hover { background: var(--peach); color: var(--white); }
.social-pill.social-facebook { background: rgba(167,139,250,0.12); color: var(--lavender-dark); }
.social-pill.social-facebook:hover { background: var(--lavender); color: var(--white); }
.social-pill.social-youtube { background: rgba(232,93,73,0.12); color: var(--peach-dark); }
.social-pill.social-youtube:hover { background: var(--peach-dark); color: var(--white); }
.social-pill.social-whatsapp { background: rgba(43,168,138,0.12); color: var(--mint-dark); }
.social-pill.social-whatsapp:hover { background: var(--mint-dark); color: var(--white); }

.footer-nav {
    display: flex;
    gap: 48px;
}

.footer-nav-col {
    flex: 1;
}

.footer-nav-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--mint-dark);
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fcc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--squircle-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

a.fcc-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.fcc-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fcc-icon-phone { background: rgba(91,207,173,0.12); color: var(--mint-dark); }
.fcc-icon-email { background: rgba(255,127,107,0.12); color: var(--peach-dark); }
.fcc-icon-pin { background: rgba(167,139,250,0.12); color: var(--lavender-dark); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   PAGE HERO (Subpages)
   ======================================== */
.page-hero {
    padding: 160px 24px 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-shapes {
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-hero-desc {
    font-size: 18px;
    color: var(--text-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--mint-dark);
}

.breadcrumb-separator {
    color: var(--peach-dark);
    font-weight: 700;
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--squircle-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--mint-dark);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--squircle-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:nth-child(1):hover { box-shadow: 0 12px 36px rgba(91,207,173,0.18); }
.value-card:nth-child(2):hover { box-shadow: 0 12px 36px rgba(255,127,107,0.18); }
.value-card:nth-child(3):hover { box-shadow: 0 12px 36px rgba(167,139,250,0.18); }

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: var(--squircle-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.value-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--white);
    border-radius: var(--squircle-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:nth-child(1):hover { box-shadow: 0 12px 36px rgba(91,207,173,0.18); }
.team-card:nth-child(2):hover { box-shadow: 0 12px 36px rgba(255,127,107,0.18); }
.team-card:nth-child(3):hover { box-shadow: 0 12px 36px rgba(255,210,63,0.18); }
.team-card:nth-child(4):hover { box-shadow: 0 12px 36px rgba(167,139,250,0.18); }

.team-card:hover {
    transform: translateY(-8px);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-role {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   EDUCATION PAGE
   ======================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.program-card {
    background: var(--white);
    border-radius: var(--squircle-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program-card:nth-child(1):hover { box-shadow: 0 12px 36px rgba(91,207,173,0.18); }
.program-card:nth-child(2):hover { box-shadow: 0 12px 36px rgba(255,127,107,0.18); }
.program-card:nth-child(3):hover { box-shadow: 0 12px 36px rgba(167,139,250,0.18); }

.program-card:hover {
    transform: translateY(-8px);
}

.program-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: var(--squircle-sm);
    font-size: 12px;
    font-weight: 700;
    background: var(--white);
    color: var(--text-dark);
}

.program-content {
    padding: 32px;
}

.program-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.program-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.program-features {
    list-style: none;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.program-features li svg {
    color: var(--mint-dark);
    flex-shrink: 0;
}

/* Daily Flow Timeline */
.daily-flow {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 120px;
}

.daily-flow::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--mint-green), var(--peach), var(--sunny-yellow), var(--lavender), var(--mint-green));
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    position: relative;
}

.flow-time {
    position: absolute;
    left: -120px;
    width: 100px;
    text-align: right;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.flow-dot {
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--mint-green);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: -8px;
}

.flow-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.flow-emoji {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.flow-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 600px) {
    .daily-flow {
        padding-left: 0;
    }

    .daily-flow::before {
        display: none;
    }

    .flow-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .flow-time {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 4px;
        font-size: 12px;
        color: var(--text-light);
    }

    .flow-dot {
        display: none;
    }
}

/* ========================================
   CONTACT PAGE — Form & Layout
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--border-color);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--mint-dark);
    box-shadow: 0 0 0 3px rgba(91,207,173,0.12);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-card .btn {
    margin-top: 4px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }

    .bento-tall {
        grid-row: span 1;
        min-height: 200px;
    }

    .hub-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-nav {
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .header {
        padding: 16px 24px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-full .gallery-item:nth-child(1),
    .gallery-full .gallery-item:nth-child(6),
    .gallery-full .gallery-item:nth-child(11) {
        grid-column: span 2;
        grid-row: span 1;
        height: 280px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        gap: 40px;
    }

    .cta-card {
        padding: 48px 36px;
    }

    .cta-trust {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 16px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large, .bento-wide {
        grid-column: span 1;
    }

    .hub-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item,
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .event-card {
        flex: 0 0 280px;
    }

    .cta-section {
        padding: 80px 16px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-phone {
        justify-content: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 16px;
    }

    .cta-trust-dot {
        display: none;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

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

    .team-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .gallery-full {
        grid-template-columns: 1fr;
    }

    .gallery-full .gallery-item,
    .gallery-full .gallery-item:nth-child(1),
    .gallery-full .gallery-item:nth-child(6),
    .gallery-full .gallery-item:nth-child(11) {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

    .schedule-table {
        overflow-x: auto;
    }

    .schedule-table table {
        min-width: 600px;
    }

    .footer-inner {
        padding: 48px 16px 24px;
    }

    .footer-top {
        gap: 32px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
