
/* ===== ÖZEL LOTUS CURSOR - LOGO ICON SVG ===== */
html, body {
    cursor: url("../images/logos/Logo_Icon.svg") 16 16, auto !important;
}

* {
    cursor: url("../images/logos/Logo_Icon.svg") 16 16, auto !important;
}

a, button, .play-word, .lotus-falling, .nav-link, .btn, input, textarea, select {
    cursor: url("../Logo_Icon.svg") 16 16, pointer !important;
}

/* ===== GENEL AYARLAR ===== */
:root {
    /* Pastel Renk Paleti - Modern ve Tatlı */
    --color-primary: #ff9aab;        /* Daha yumuşak ve modern pembe */
    --color-secondary: #8dd8c8;      /* Daha canlı ve modern mint */
    --color-accent: #ffd89b;         /* Sıcak sarı */
    --color-light: #fffaf7;          /* Daha temiz ve modern krem */
    --color-dark: #3d3d3d;           /* Daha modern koyu gri */
    --color-white: #ffffff;
    --color-tech: #6366f1;           /* Teknoloji vurgusu için mor */
    
    /* Gradient'ler - Modern ve Akıcı - Daha İyi Kontrast */
    --gradient-primary: linear-gradient(135deg, #ff8a9b 0%, #ff9aab 30%, #ffb3d9 70%, #ffd6e8 100%);
    --gradient-primary-text: linear-gradient(135deg, #e85a6f 0%, #ff8a9b 50%, #ff9aab 100%);
    --gradient-secondary: linear-gradient(135deg, #8dd8c8 0%, #a8edea 50%, #d4f4f1 100%);
    --gradient-accent: linear-gradient(135deg, #ffd89b 0%, #ffe4c4 60%, #fff0e1 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 154, 171, 0.96) 0%, rgba(141, 216, 200, 0.96) 100%);
    --gradient-tech: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
    
    /* Tipografi */
    --font-primary: 'Nunito', sans-serif;
    
    /* Spacing - Mobil Öncelikli */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
    
    /* Border Radius - Modern ve Yumuşak */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 9999px;
    
    /* Shadows - Modern ve Derinlik Hissi */
    --shadow-sm: 0 2px 8px rgba(255, 154, 171, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(255, 154, 171, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(255, 154, 171, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(255, 154, 171, 0.18), 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(255, 154, 171, 0.35), 0 0 20px rgba(141, 216, 200, 0.2);
    
    /* Animasyon Süreleri - Daha Akıcı */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: url("../images/logos/Logo_Icon.svg") 16 16, auto !important;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--color-light);
    cursor: url("../images/logos/Logo_Icon.svg") 16 16, auto !important;
}

/* Dekoratif Arka Plan Elementleri */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 138, 149, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 211, 192, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ===== MODERN HEADER / NAVIGATION - SIFIRDAN TASARIM ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(255, 138, 149, 0.15);
}

.main-nav {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 252, 253, 0.97) 100%);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border-bottom: 1px solid rgba(255, 154, 171, 0.12);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 20px rgba(255, 154, 171, 0.05);
}

.main-header.scrolled .main-nav {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.99) 0%, 
        rgba(255, 253, 254, 0.99) 100%);
    border-bottom: 1px solid rgba(255, 154, 171, 0.18);
    box-shadow: 0 4px 32px rgba(255, 154, 171, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.main-header.scrolled .nav-container {
    padding: 0.75rem 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-bounce);
    position: relative;
    z-index: 10;
}

.logo-image {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 138, 149, 0.2));
    transition: all var(--transition-bounce);
}

.main-header.scrolled .logo-image {
    height: 70px;
}

.nav-logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(255, 138, 149, 0.35));
}

.nav-logo:hover {
    transform: translateY(-2px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: #5a5a5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nav-icon {
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    opacity: 0.7;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 138, 149, 0.1) 0%, 
        rgba(125, 211, 192, 0.1) 100%);
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    z-index: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 138, 149, 0.4);
}

.nav-link span {
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.nav-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    width: 70%;
}

.nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
    color: var(--color-primary);
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active .nav-icon {
    opacity: 1;
    color: var(--color-primary);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 70%;
}

/* CTA Button */
.nav-cta-btn {
    background: var(--gradient-primary) !important;
    color: var(--color-white) !important;
    padding: 0.85rem 1.75rem !important;
    box-shadow: 0 4px 20px rgba(255, 138, 149, 0.35);
    margin-left: 0.5rem;
}

.nav-cta-btn::before {
    background: rgba(255, 255, 255, 0.2) !important;
}

.nav-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 138, 149, 0.45);
    color: var(--color-white) !important;
}

.nav-cta-btn .nav-icon,
.nav-cta-btn span {
    color: var(--color-white) !important;
    z-index: 1;
}

/* Call Button - Hemen Ara */
.nav-call-btn {
    background: var(--gradient-primary) !important;
    color: var(--color-white) !important;
    padding: 0.85rem 1.75rem !important;
    box-shadow: 0 4px 20px rgba(255, 138, 149, 0.35);
    margin-left: 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.nav-call-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    z-index: 0;
}

.nav-call-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.nav-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 138, 149, 0.45);
    color: var(--color-white) !important;
}

.nav-call-btn i,
.nav-call-btn span {
    color: var(--color-white) !important;
    position: relative;
    z-index: 1;
}

.nav-call-btn i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 2px solid rgba(255, 138, 149, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    border-color: var(--color-primary);
    background: rgba(255, 138, 149, 0.05);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION - DAHA ŞİRİN VE MODERN ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(255, 138, 149, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(125, 211, 192, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 216, 155, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 138, 149, 0.95) 0%, rgba(125, 211, 192, 0.95) 100%);
    overflow-x: visible;
    overflow-y: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Dekoratif Şirin Elementler - Özgür Hareket */
.hero-section .decorative-emoji-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 4rem;
    opacity: 0.3;
    animation: float-free-1 20s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

.hero-section .decorative-emoji-2 {
    position: absolute;
    top: 20%;
    right: 15%;
    font-size: 3rem;
    opacity: 0.3;
    animation: float-free-2 25s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

.hero-section .decorative-emoji-3 {
    position: absolute;
    bottom: 25%;
    left: 8%;
    font-size: 2.5rem;
    opacity: 0.25;
    animation: float-free-3 22s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}


/* Özgür hareket animasyonları - Her biri farklı yol izliyor */
@keyframes float-free-1 {
    0% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(120px, -80px);
    }
    40% {
        transform: translate(-100px, 120px);
    }
    60% {
        transform: translate(150px, 80px);
    }
    80% {
        transform: translate(-80px, -100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-free-2 {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-90px, 110px);
    }
    50% {
        transform: translate(130px, -70px);
    }
    75% {
        transform: translate(-110px, -90px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-free-3 {
    0% {
        transform: translate(0, 0);
    }
    30% {
        transform: translate(100px, 90px);
    }
    60% {
        transform: translate(-120px, -110px);
    }
    100% {
        transform: translate(0, 0);
    }
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.2));
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    opacity: 0.98;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-xl);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: var(--shadow-xl), 
        0 0 40px rgba(255, 154, 171, 0.45),
        0 0 25px rgba(141, 216, 200, 0.25),
        inset 0 2px 15px rgba(255, 255, 255, 0.4);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    border: 3px solid var(--color-white);
    border-radius: var(--radius-xl);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transition: left var(--transition-normal);
    z-index: 0;
}

.btn-outline-light:hover::before {
    left: 0;
}

.btn-outline-light:hover {
    color: var(--color-primary) !important;
    transform: translateY(-5px) scale(1.05);
    border-color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light span {
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--color-white);
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===== ANIMASYONLAR - DAHA YUMUŞAK ===== */
.animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-delay {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

.animate-fade-in-delay-4 {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== SECTION STYLES - DAHA MODERN ===== */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

/* Hero section hariç - çünkü kendi gradient'i var */
.hero-section::before {
    display: none;
}

/* Section container'ları overlay'in üstünde */
section .container {
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    margin: 0;
    flex-shrink: 0;
    text-shadow: 0 0 40px rgba(255, 154, 171, 0.25);
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .section-title {
        color: #ff8a9b;
        background: none;
    }
}

.section-title::before {
    content: '✨';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: sparkle 2s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(255, 154, 171, 0.5), 0 2px 6px rgba(141, 216, 200, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1.2);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-dark);
    opacity: 0.7;
    position: relative;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin: 0;
    max-width: 400px;
    line-height: 1.6;
    text-align: left;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.section-subtitle i {
    color: var(--color-primary);
    opacity: 0.8;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(180deg, 
        var(--color-light) 0%, 
        rgba(255, 255, 255, 0.98) 30%,
        var(--color-light) 60%,
        rgba(255, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 154, 171, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(141, 216, 200, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* About Intro Card */
.about-intro-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 248, 250, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 154, 171, 0.12);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.about-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 154, 171, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
    z-index: 0;
}

.about-intro-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(141, 216, 200, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite reverse;
    z-index: 0;
}

.about-intro-text {
    position: relative;
    z-index: 1;
}

.about-intro-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.9;
    color: var(--color-dark);
    margin: 0;
    text-align: justify;
}

.about-intro-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* About Subtitle */
.about-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    background: var(--gradient-primary-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-subsection {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Why Choose Cards */
.why-choose-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    border: 2px solid rgba(255, 138, 149, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 138, 149, 0.3);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.why-choose-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: var(--color-dark);
    line-height: 1.7;
    margin: 0;
}

/* About CTA Card */
.about-cta-card {
    background: linear-gradient(135deg, 
        rgba(255, 138, 149, 0.1) 0%, 
        rgba(125, 211, 192, 0.1) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 138, 149, 0.2);
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 149, 0.1);
    border-radius: var(--radius-full);
}

.contact-item strong {
    font-size: 1.2rem;
    color: var(--color-dark);
}

/* Kurucu Müdür Kartı */
.founder-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 138, 149, 0.1);
    margin-top: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.founder-left {
    flex-shrink: 0;
}

.founder-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 138, 149, 0.2);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
    padding: 2px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--color-light);
}

.founder-separator {
    width: 1px;
    height: 75px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(200, 200, 200, 0.3),
        rgba(200, 200, 200, 0.3),
        transparent
    );
    flex-shrink: 0;
}

.founder-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-name {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.2;
}

.founder-title {
    font-size: clamp(0.5rem, 0.9vw, 0.6rem);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
}

.founder-contact {
    display: flex;
    align-items: center;
}

.founder-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.founder-phone-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(125, 211, 192, 0.4);
    background: rgba(125, 211, 192, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.founder-phone-icon:hover {
    background: rgba(125, 211, 192, 0.2);
    border-color: rgba(125, 211, 192, 0.6);
    transform: scale(1.05);
}

.founder-phone-icon i {
    font-size: 0.65rem;
    color: var(--color-secondary);
}

.founder-phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.founder-phone-number {
    font-size: clamp(0.55rem, 1vw, 0.7rem);
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.founder-phone-number:hover {
    color: var(--color-primary);
}

.founder-contact-label {
    font-size: 0.475rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .about-subsection {
        margin-bottom: 2rem;
    }
    
    .about-subtitle {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 1.5rem;
    }
    
    .feature-card-small {
        padding: 0.75rem;
    }
    
    .feature-card-small h4 {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    
    .feature-card-small p {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }
    
    .feature-icon-small {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon-small i {
        font-size: 1.1rem;
    }
    
    .about-intro-card {
        padding: 1.5rem;
    }
    
    .about-cta-card {
        padding: 1.5rem;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .founder-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .founder-photo {
        width: 120px;
        height: 120px;
    }
    
    .founder-name {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .founder-title {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    /* Programs responsive */
    .program-card {
        margin-bottom: 1.5rem;
    }
    
    /* Teachers responsive */
    .teacher-card {
        margin-bottom: 1.5rem;
    }
    
    .teacher-avatar {
        width: 100px;
        height: 100px;
    }
    
    .teacher-avatar i {
        font-size: 3.5rem;
    }
    
    .founder-separator {
        width: 200px;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            rgba(200, 200, 200, 0.3),
            rgba(200, 200, 200, 0.3),
            transparent
        );
    }
    
    .founder-right {
        align-items: center;
    }
    
    .founder-phone-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-phone-info {
        align-items: center;
        text-align: center;
    }
}

.feature-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 250, 252, 0.95) 50%,
        rgba(255, 245, 248, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 154, 171, 0.1);
    height: 100%;
    border: 2px solid rgba(255, 154, 171, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card-small {
    padding: 1rem;
}

.feature-card-small h4 {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 0.5rem;
}

.feature-card-small p {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 154, 171, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate-bg 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl), 
        0 0 40px rgba(255, 154, 171, 0.2),
        0 0 20px rgba(141, 216, 200, 0.15);
    border-color: rgba(255, 154, 171, 0.35);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 252, 254, 0.98) 50%,
        rgba(255, 248, 252, 0.96) 100%);
}

.feature-card:hover::after {
    opacity: 0.6;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
    filter: blur(10px);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
}

.feature-icon-small i {
    font-size: 1.3rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 154, 171, 0.2);
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .feature-card h4 {
        color: #ff8a9b;
        background: none;
    }
}

.feature-card p {
    color: #2d2d2d;
    opacity: 0.9;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.feature-tech-indicator {
    margin-top: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: var(--gradient-tech);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-tech-indicator {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Hero İstatistikler */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.stat-item {
    text-align: center;
    min-width: 120px;
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
    opacity: 0.7;
    margin-left: 2px;
}

.stat-item:last-child .stat-number::after {
    content: '%';
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero Teknoloji Badge'leri */
.hero-tech-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.tech-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: var(--radius-full);
    transition: transform var(--transition-normal);
}

.tech-badge i {
    font-size: 1rem;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.tech-badge:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    background: var(--color-white);
    position: relative;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, 
        rgba(255, 154, 171, 0.03) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.program-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 250, 252, 0.95) 50%,
        rgba(255, 245, 248, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 154, 171, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 154, 171, 0.15);
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(141, 216, 200, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate-bg 25s linear infinite reverse;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl), 
        0 0 45px rgba(255, 154, 171, 0.25),
        0 0 25px rgba(141, 216, 200, 0.18);
    border-color: rgba(255, 154, 171, 0.4);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 252, 254, 0.98) 50%,
        rgba(255, 248, 252, 0.96) 100%);
}

.program-card:hover::after {
    opacity: 0.7;
}

.program-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.program-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.program-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 154, 171, 0.2);
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .program-card h4 {
        color: #ff8a9b;
        background: none;
    }
}

.program-description {
    color: #2d2d2d;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-weight: 400;
}

.program-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.program-features li {
    padding: var(--spacing-xs) 0;
    color: #2d2d2d;
    opacity: 0.9;
    opacity: 0.8;
}

.program-features li i {
    color: var(--color-secondary);
    margin-right: var(--spacing-xs);
}

/* Branş Kartları */
.branch-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: 2px solid rgba(255, 138, 149, 0.1);
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.branch-card:hover::before {
    width: 200px;
    height: 200px;
}

.branch-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 138, 149, 0.3);
}

.branch-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    display: block;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.branch-card span {
    font-weight: 700;
    color: var(--color-dark);
    display: block;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.branch-card:hover i {
    color: var(--color-white);
    transform: scale(1.2) rotate(10deg);
}

.branch-card:hover span {
    color: var(--color-white);
    transform: scale(1.1);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: linear-gradient(180deg, 
        var(--color-light) 0%, 
        rgba(255, 255, 255, 0.98) 25%,
        var(--color-light) 50%,
        rgba(240, 255, 250, 0.95) 75%,
        var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(141, 216, 200, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(255, 154, 171, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, 
        rgba(141, 216, 200, 0.03) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Galeri Filtreleri */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.filter-btn span {
    position: relative;
    z-index: 1;
    color: var(--color-primary);
    transition: color var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: #ffffff !important;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn:hover span,
.filter-btn.active span {
    color: #ffffff !important;
    font-weight: 600;
}

.gallery-item-filter {
    transition: all var(--transition-normal);
    display: flex;
    height: 100%;
}

.gallery-item-filter.hidden {
    display: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: #fbfafa;
}

.gallery-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease, opacity 0.5s ease-in-out;
    border-radius: var(--radius-md);
    background-color: #fbfafa;
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 138, 149, 0.92) 0%, 
        rgba(255, 154, 171, 0.90) 50%,
        rgba(125, 200, 185, 0.92) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    opacity: 0;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-category {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-lightbox-caption {
    display: none;
}

/* Mobil için lightbox ayarları */
@media (max-width: 768px) {
    .gallery-lightbox {
        padding: 1rem;
    }
    
    .gallery-lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .gallery-lightbox-img {
        max-width: 95%;
        max-height: 85vh;
    }
    
}

/* ===== TEACHERS SECTION ===== */
.teachers-section {
    background: linear-gradient(180deg, 
        var(--color-white) 0%, 
        rgba(255, 250, 252, 0.98) 40%,
        var(--color-white) 80%,
        rgba(255, 245, 248, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.teachers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 154, 171, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(141, 216, 200, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.teacher-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 250, 252, 0.95) 50%,
        rgba(255, 245, 248, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 154, 171, 0.1);
    height: 100%;
    border: 2px solid rgba(255, 154, 171, 0.15);
    position: relative;
    overflow: hidden;
}

.teacher-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 154, 171, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: rotate-bg 18s linear infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.teacher-card::after {
    content: '👩‍🏫';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    opacity: 0.05;
    z-index: 0;
}

.teacher-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl), 
        0 0 40px rgba(255, 154, 171, 0.22),
        0 0 20px rgba(141, 216, 200, 0.16);
    border-color: rgba(255, 154, 171, 0.38);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 252, 254, 0.98) 50%,
        rgba(255, 248, 252, 0.96) 100%);
}

.teacher-card:hover::before {
    opacity: 1;
}

.teacher-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.teacher-card:hover .teacher-avatar {
    transform: scale(1.05);
}

.teacher-avatar i {
    font-size: 5rem;
    color: var(--color-white);
}

.teacher-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 154, 171, 0.2);
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .teacher-card h4 {
        color: #ff8a9b;
        background: none;
    }
}

.teacher-role {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.teacher-bio {
    color: #2d2d2d;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.teacher-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.teacher-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.teacher-social a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--color-light);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 138, 149, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 138, 149, 0.3);
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--color-light);
    padding-top: var(--spacing-sm);
}

.testimonial-author strong {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--color-dark);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, 
        rgba(255, 248, 250, 0.6) 0%, 
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 252, 254, 0.98) 50%,
        rgba(255, 255, 255, 1) 70%,
        rgba(240, 255, 250, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 154, 171, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(141, 216, 200, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(255, 216, 155, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-map-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 154, 171, 0.12);
    height: 100%;
    transition: all var(--transition-normal);
}

.contact-map-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 154, 171, 0.28);
    background: rgba(255, 255, 255, 1);
}

.map-title,
.form-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    background: var(--gradient-primary-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-title i,
.form-title i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 154, 171, 0.2);
}

/* Video Card */
.video-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 154, 171, 0.12);
    transition: all var(--transition-normal);
    position: sticky;
    top: 100px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 154, 171, 0.28);
    background: rgba(255, 255, 255, 1);
}

.video-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    background: var(--gradient-primary-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-title i {
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .map-title,
    .form-title {
        color: #ff8a9b;
        background: none;
    }
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.contact-form label i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 138, 149, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 138, 149, 0.15), var(--shadow-md);
    transform: translateY(-2px);
    background: var(--color-white);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    height: 100%;
    border: 2px solid rgba(255, 154, 171, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 154, 171, 0.28);
    background: rgba(255, 255, 255, 1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 0.75rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(255, 138, 149, 0.3);
    transition: all var(--transition-bounce);
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
    filter: blur(6px);
}

.contact-info-card:hover .contact-icon::after {
    opacity: 0.4;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 18px rgba(255, 138, 149, 0.4);
}

.contact-info-card h5 {
    font-weight: 700;
    color: #ff8a9b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

.contact-info-card p {
    color: #2d2d2d;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    font-weight: 400;
}

.contact-info-card a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 154, 171, 0.3) 50%, 
        transparent 100%);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-container {
    justify-content: flex-start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .logo-icon {
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    transition: all var(--transition-normal);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-logo .logo-main {
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.footer-logo .logo-sub {
    color: var(--color-secondary) !important;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.footer-title i {
    color: var(--color-secondary);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
}

.footer-hours span {
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-lg);
    opacity: 0.7;
}

.footer-bottom a {
    text-decoration: underline;
    color: inherit;
    transition: all var(--transition-normal);
}

.footer-bottom a:hover {
    color: var(--color-primary);
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN - MOBİL ÖNCELİKLİ ===== */
/* Mobil İlk Yaklaşım - Varsayılan mobil, sonra büyük ekranlar için media query */

/* Tablet ve üzeri */
/* Tablet ve Küçük PC'ler için - Menü Taşmasını Önle */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
        gap: 0.75rem;
    }
    
    .logo-image {
        height: 65px;
    }
    
    .main-header.scrolled .logo-image {
        height: 60px;
    }
    
    .nav-menu {
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .nav-icon {
        font-size: 0.8rem;
        display: none; /* Icon'ları gizle, sadece metin göster */
    }
    
    .nav-link span {
        font-size: 0.85rem;
    }
    
    .nav-call-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .nav-call-btn i {
        display: none; /* Ara butonundaki icon'u da gizle */
    }
}

/* Daha küçük tabletler için */
@media (min-width: 768px) and (max-width: 900px) {
    .nav-link {
        padding: 0.45rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .nav-link span {
        font-size: 0.8rem;
    }
    
    .nav-call-btn {
        padding: 0.45rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    section {
        padding: clamp(4rem, 8vw, 6rem) 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: auto;
    }
}

/* Küçük mobil - Öncelikli Optimizasyon */
@media (max-width: 576px) {
    /* Genel Spacing */
    section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Başlıklar */
    .section-title-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title::before {
        display: none;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 0;
    }
    
    .section-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        text-align: center;
        max-width: 100%;
        padding: 0.5rem 1rem;
    }
    
    .section-subtitle::before {
        display: none;
    }
    
    /* Kartlar */
    .feature-card,
    .program-card,
    .teacher-card,
    .testimonial-card {
        margin-bottom: var(--spacing-md);
        padding: 1.25rem;
    }
    
    .feature-card h4,
    .program-card h4,
    .teacher-card h4 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }
    
    .program-card h4 {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    }
    
    .feature-card p,
    .program-description,
    .teacher-bio {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.7;
    }
    
    .feature-icon,
    .program-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i,
    .program-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card:hover,
    .program-card:hover,
    .teacher-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    /* Hero Bölümü - Kompakt */
    .hero-section {
        min-height: 50vh;
        padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    /* Hero Butonları - Küçült */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        margin-top: 0.75rem;
        gap: 1rem !important;
        row-gap: 1rem !important;
    }
    
    .hero-buttons .btn,
    .hero-buttons a,
    .hero-btn-mobile {
        margin: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block !important;
    }
    
    .hero-buttons .btn:first-child {
        margin-bottom: 1rem !important;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 0.85rem 1.25rem;
        font-size: 0.85rem;
        margin: 0 !important;
    }
    
    /* Hero görselleri */
    .hero-section img[src*="lotus_cocuk.png"] {
        max-height: 60vh;
    }
    
    .hero-section img[src*="Lotus_Yazi.png"] {
        max-width: 75%;
    }
    
    /* Hero Butonları */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
        row-gap: 1rem !important;
        width: 100%;
    }
    
    .hero-buttons .btn,
    .hero-buttons a,
    .hero-btn-mobile {
        width: 100%;
        margin: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block !important;
    }
    
    .hero-buttons .btn:first-child {
        margin-bottom: 1rem !important;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
        margin: 0 !important;
    }
    
    /* İstatistikler - Kompakt */
    .hero-stats {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        margin-top: 0.25rem;
    }
    
    /* Teknoloji Badge'leri */
    .hero-tech-badges {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-xs);
    }
    
    .tech-badge {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* Logo Görselleri */
    .lotus-logo-img {
        max-width: 100%;
        height: auto;
    }
    
    .footer-logo-img {
        height: 50px !important;
        width: auto;
    }
    
    .footer-logo .logo-icon {
        height: 50px;
    }
    
    .footer-logo .logo-main {
        font-size: 1.3rem;
    }
    
    .footer-logo .logo-sub {
        font-size: 0.9rem;
    }
    
    /* Galeri */
    .gallery-item {
        min-height: 180px;
    }
    
    .gallery-image {
        min-height: 180px;
    }
    
    /* Video Kartı */
    .video-card {
        margin-top: 1.5rem;
    }
    
    /* İletişim */
    .contact-map-card iframe,
    .map-image-wrapper img {
        height: 350px;
    }
    
    /* İstatistikler - Küçült */
    .hero-stats {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .stat-item {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: clamp(1.4rem, 5vw, 1.7rem);
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        margin-top: 0.25rem;
    }
    
    /* Animasyonları mobilde azalt (performans için) */
    .feature-card:hover,
    .program-card:hover,
    .teacher-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    /* Dekoratif emoji'leri mobilde küçült veya gizle */
    .hero-section .decorative-emoji-1,
    .hero-section .decorative-emoji-2,
    .hero-section .decorative-emoji-3 {
        font-size: 2rem;
        opacity: 0.2;
    }
    
    /* Hero sol görsel (Lotus_Yazi.png) - Küçük cihazlarda gizle */
    .hero-section > div[style*="left: 0"] {
        display: none !important;
    }
    
    /* Hero sağ görsel (lotus_cocuk.png) - Mobilde z-index düşür */
    .hero-section > div[style*="right: 0"] {
        z-index: 0 !important;
    }
    
    /* Hero içeriğinin z-index'ini artır - menünün üstünde olsun */
    .hero-section .container {
        position: relative;
        z-index: 100;
    }
    
    .hero-section {
        z-index: 1;
    }
    
    /* Hero başlık ve içerik z-index */
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-buttons,
    .hero-stats {
        position: relative;
        z-index: 101;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0.5rem 1rem !important;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .main-header.scrolled .nav-container {
        padding: 0.5rem 1rem !important; /* Scroll'da da aynı kalacak */
    }
    
    .logo-image {
        height: 50px !important;
    }
    
    .main-header.scrolled .logo-image {
        height: 50px !important; /* Scroll'da da aynı kalacak */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, 
            rgba(255, 250, 252, 0.98) 0%, 
            rgba(255, 245, 248, 0.97) 50%,
            rgba(255, 240, 245, 0.96) 100%);
        backdrop-filter: blur(50px) saturate(200%);
        -webkit-backdrop-filter: blur(50px) saturate(200%);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(255, 154, 171, 0.25);
        border-left: 3px solid rgba(255, 154, 171, 0.3);
        transition: right var(--transition-normal);
        z-index: 9999;
        gap: 0.5rem;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
        color: var(--color-dark);
        background: rgba(255, 255, 255, 0.5);
        margin-bottom: 0.5rem;
        transition: all var(--transition-normal);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--color-primary);
        background: rgba(255, 154, 171, 0.15);
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: rgba(255, 154, 171, 0.2);
        border-left: 4px solid var(--color-primary);
        font-weight: 700;
    }
    
    .nav-link .nav-icon {
        color: var(--color-primary);
        margin-right: 0.75rem;
    }
    
    .nav-cta-btn,
    .nav-call-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Contact Section Responsive */
    .contact-map-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-info-card {
        padding: 1.25rem 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-info-card h5 {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 0.5rem;
    }
    
    .contact-info-card p {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        line-height: 1.5;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .contact-info-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    /* Video Card Mobile */
    .video-card {
        position: relative;
        top: auto;
        margin-top: 2rem;
    }
    
    .video-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile Menu Overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 154, 171, 0.15);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-normal);
        z-index: -1;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }
    
    
    .navbar-nav {
        padding: 1rem 0;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .btn-nav-cta {
        width: 100%;
        justify-content: center;
    }
    
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Feature Icons */
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    /* Program Icons */
    .program-icon {
        width: 80px;
        height: 80px;
    }
    
    .program-icon i {
        font-size: 2rem;
    }
    
    /* Teacher Avatar */
    .teacher-avatar {
        width: 100px;
        height: 100px;
    }
    
    .teacher-avatar i {
        font-size: 4rem;
    }
    
    /* Contact Form */
    .contact-card {
        padding: var(--spacing-md);
    }
    
    /* Footer */
    .footer-section {
        padding: var(--spacing-lg) 0 var(--spacing-md);
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scroll için ekstra padding */
section {
    scroll-margin-top: 100px;
}

/* ===== EKSTRA MODERN DETAYLAR ===== */

/* Glassmorphism efektleri */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Hover efektleri için glow */
.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(255, 138, 149, 0.4),
                0 0 40px rgba(125, 211, 192, 0.2);
}

/* Yumuşak geçişler için */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll bar özelleştirme (webkit tarayıcılar için) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Loading animasyonu için hazırlık */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Teknoloji vurgusu için özel animasyon */
@keyframes tech-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

.tech-highlight {
    animation: tech-pulse 2s infinite;
}

/* ===== OYUN STİLLERİ ===== */
.play-word {
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    animation: play-word-pulse 2s ease-in-out infinite;
}

.play-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.play-word:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.play-word:hover::before {
    opacity: 1;
}

@keyframes play-word-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-5px); }
}

/* Oyun Modal */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.game-modal-content {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 248, 250, 0.98) 0%, 
        rgba(255, 240, 245, 0.95) 50%,
        rgba(240, 255, 250, 0.95) 100%);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: gameModalFadeIn 0.3s ease;
}

@keyframes gameModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.game-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 138, 149, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-close-btn:hover {
    background: rgba(255, 138, 149, 0.3);
    transform: rotate(90deg);
}

/* Oyun Ekranları */
.game-screen {
    padding: 3rem 2rem;
    text-align: center;
}

/* Başlangıç Ekranı */
.game-logo-container {
    margin-bottom: 2rem;
}

.game-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 138, 149, 0.3));
}

.game-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.game-info {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.game-info p {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.game-info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.game-info-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(255, 138, 149, 0.1);
}

.game-info-list li:last-child {
    border-bottom: none;
}

.game-instructions {
    background: rgba(125, 211, 192, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    text-align: center;
}

.game-start-btn {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: 0 4px 20px rgba(255, 138, 149, 0.4);
}

.game-start-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 138, 149, 0.5);
}

/* Oyun Ekranı */
.game-header {
    margin-bottom: 1.5rem;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.game-stat {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-stat.warning {
    background: rgba(255, 138, 149, 0.2);
    animation: pulse 1s infinite;
}

.game-stat i {
    font-size: 1.5rem;
}

.game-area {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(180deg, 
        rgba(255, 240, 245, 0.3) 0%,
        rgba(240, 255, 250, 0.3) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255, 138, 149, 0.2);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.lotus-falling {
    position: absolute;
    cursor: pointer !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 138, 149, 0.3));
    animation: lotus-float 2s ease-in-out infinite;
    pointer-events: auto !important;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.lotus-falling:hover {
    transform: scale(1.1);
}

@keyframes lotus-float {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/* Bitiş Ekranı */
.game-end-content {
    padding: 2rem 0;
}

.game-end-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.game-end-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.game-final-score {
    background: linear-gradient(135deg, 
        rgba(255, 138, 149, 0.1) 0%,
        rgba(125, 211, 192, 0.1) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2rem 0;
}

.score-label {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.score-value {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.game-end-message {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
}

.game-end-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.game-btn {
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
}

.game-btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 138, 149, 0.4);
}

.game-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 138, 149, 0.5);
}

.game-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.game-btn-secondary:hover {
    background: rgba(255, 138, 149, 0.1);
    transform: translateY(-3px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .game-modal-content {
        max-width: 100%;
        border-radius: var(--radius-lg);
        margin: 0.5rem;
    }
    
    .game-screen {
        padding: 2rem 1rem;
    }
    
    .game-area {
        height: 400px;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-stat {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .game-end-buttons {
        flex-direction: column;
    }
    
    .game-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lotus-falling {
        font-size: 35px !important;
    }
}

/* ============================================
   RESPONSIVE BREAKPOINT YAPISI
   Desktop (992px+): Mevcut görünüm korunur
   Tablet (768px-991px): Optimize edilir
   Mobil (576px-767px): Optimize edilir
   Küçük Mobil (0-575px): Optimize edilir
   ============================================ */

/* ===== TABLET (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    /* Genel ayarlar */
    .container {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    section {
        padding: clamp(3rem, 6vw, 5rem) 0;
    }
    
    /* Başlıklar */
    .section-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    /* Hero Bölümü */
    .hero-section {
        min-height: 70vh;
        padding: clamp(3rem, 6vw, 5rem) 0;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    }
    
    /* Hero görselleri */
    .hero-section img[src*="lotus_cocuk.png"] {
        max-height: 75vh;
    }
    
    .hero-section img[src*="Lotus_Yazi.png"] {
        max-width: 60%;
    }
    
    /* Kartlar */
    .feature-card,
    .program-card,
    .teacher-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h4,
    .program-card h4,
    .teacher-card h4 {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
    }
    
    .feature-card p,
    .program-description,
    .teacher-bio {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    /* Galeri */
    .gallery-item {
        min-height: 220px;
    }
    
    .gallery-image {
        min-height: 220px;
    }
    
    /* Video Kartı */
    .video-card {
        margin-top: 2rem;
    }
    
    /* İletişim Bölümü */
    .contact-map-card,
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-map-card iframe,
    .map-image-wrapper img {
        height: 450px;
    }
    
    /* İstatistikler */
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    
    .stat-label {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }
}

/* ===== MOBİL (576px - 767px) ===== */
@media (min-width: 576px) and (max-width: 767px) {
    /* Genel ayarlar */
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    section {
        padding: clamp(2.5rem, 5vw, 4rem) 0;
    }
    
    /* Başlıklar */
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }
    
    /* Hero Bölümü */
    .hero-section {
        min-height: 60vh;
        padding: clamp(2.5rem, 5vw, 4rem) 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.2rem);
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    }
    
    /* Hero görselleri */
    .hero-section img[src*="lotus_cocuk.png"] {
        max-height: 65vh;
    }
    
    .hero-section img[src*="Lotus_Yazi.png"] {
        max-width: 70%;
    }
    
    /* Kartlar - 2 sütun */
    .feature-card,
    .program-card,
    .teacher-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-card h4,
    .program-card h4,
    .teacher-card h4 {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    }
    
    .feature-card p,
    .program-description,
    .teacher-bio {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }
    
    /* Galeri - 2 sütun */
    .gallery-item {
        min-height: 200px;
    }
    
    .gallery-image {
        min-height: 200px;
    }
    
    /* Video Kartı */
    .video-card {
        margin-top: 1.5rem;
    }
    
    /* İletişim */
    .contact-map-card iframe,
    .map-image-wrapper img {
        height: 400px;
    }
    
    /* İstatistikler */
    .hero-stats {
        gap: 1.25rem;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 5vw, 2.3rem);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }
    
    /* Butonlar */
    .btn-primary,
    .btn-outline-light {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* ===== KÜÇÜK MOBİL (0 - 575px) - Mevcut stiller korunur ===== */
/* Zaten mevcut @media (max-width: 576px) bloğu var, ek optimizasyonlar buraya eklenecek */

/* ===== DESKTOP (992px+) - Mevcut görünüm korunur ===== */
/* 992px ve üzeri için özel bir media query yok, 
   çünkü mevcut desktop görünümü zaten 992px+ için tasarlanmış */
