/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Mobile First Approach */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

/* Browser Compatibility Fallbacks */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* IE Compatibility */
.ie-fallback {
    display: none;
}

/* Modern browser detection */
@supports (display: flex) {
    .modern-browser {
        display: block;
    }
}

@supports not (display: flex) {
    .modern-browser {
        display: none;
    }
    .ie-fallback {
        display: block;
    }
}

:root {
    /* Color Palette - Çocuk Dostu Renkler */
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #45B7D1;
    --yellow-color: #FFD93D;
    --orange-color: #FF8C42;
    --purple-color: #9B59B6;
    --green-color: #2ECC71;
    --pink-color: #F8BBD9;
    --blue-color: #3498DB;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', 'Roboto', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 15px;
    --radius-large: 25px;
}

/* Fallback for browsers that don't support CSS variables */
.legacy-browser {
    /* Override CSS variables with actual values */
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #45B7D1;
    --white: #FFFFFF;
    --dark-gray: #343A40;
}

/* Basic reset for better compatibility */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Ensure all elements have proper display */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Fix for older browsers */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Critical fixes for better compatibility */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Ensure proper display for all elements */
section, article, aside, nav, header, footer, main {
    display: block;
}

/* Fix for flexbox in older browsers */
.flex-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-item {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* Fix for grid in older browsers */
.grid-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid-item {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

/* Modern browsers use grid */
@supports (display: grid) {
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .grid-item {
        -webkit-box-flex: unset;
        -moz-box-flex: unset;
        -webkit-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

.legacy-browser .btn-primary {
    background: #FF6B6B;
    background: -webkit-linear-gradient(45deg, #FF6B6B, #4ECDC4);
    background: -moz-linear-gradient(45deg, #FF6B6B, #4ECDC4);
    background: -o-linear-gradient(45deg, #FF6B6B, #4ECDC4);
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
}

.legacy-browser .btn-secondary {
    background: #4ECDC4;
    background: -webkit-linear-gradient(45deg, #4ECDC4, #45B7D1);
    background: -moz-linear-gradient(45deg, #4ECDC4, #45B7D1);
    background: -o-linear-gradient(45deg, #4ECDC4, #45B7D1);
    background: linear-gradient(45deg, #4ECDC4, #45B7D1);
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #343A40;
    color: var(--dark-gray);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    opacity: 1;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Loading state */
body:not(.loaded) * {
    pointer-events: none;
}

/* Ensure all interactive elements work */
button, a, input, select, textarea {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Fix for older browsers - ensure visibility */
.hidden {
    display: none !important;
    visibility: hidden !important;
}

.visible {
    display: block !important;
    visibility: visible !important;
}

/* Ensure proper z-index stacking */
.header {
    z-index: 1000;
}

.modal {
    z-index: 2000;
}

.whatsapp-button {
    z-index: 1500;
}

.back-to-top {
    z-index: 1000;
}

/* Ensure proper text rendering */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

p {
    margin: 0 0 1rem 0;
}

/* Fix for images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix for links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding: var(--container-padding);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    background: #ffffff; /* Fallback for older browsers */
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    -webkit-box-shadow: var(--shadow-light);
    -moz-box-shadow: var(--shadow-light);
    box-shadow: var(--shadow-light);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box; /* Old webkit */
    display: -moz-box; /* Old Firefox */
    display: -ms-flexbox; /* IE 10 */
    display: -webkit-flex; /* New webkit */
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.nav-logo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo span {
    white-space: nowrap;
    font-size: 1.15rem;
    line-height: 1.2;
}

.logo-img {
    width: 60px;
    height: 45px;
    margin-right: 15px;
    object-fit: contain;
}

.nav-logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--yellow-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #FF6B6B; /* Fallback for older browsers */
    background: -webkit-linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--yellow-color) 75%, 
        var(--orange-color) 100%);
    background: -moz-linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--yellow-color) 75%, 
        var(--orange-color) 100%);
    background: -o-linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--yellow-color) 75%, 
        var(--orange-color) 100%);
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--yellow-color) 75%, 
        var(--orange-color) 100%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    order: 1;
    text-align: center;
    width: 100%;
}

.hero-video {
    order: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image {
    order: 3;
    display: none; /* Video olduğu için eski figürleri gizle */
}

/* Video container'ı daha küçük yap */
.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Fallback for browsers that don't support grid */
@supports not (display: grid) {
    .hero-content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    
    .hero-text {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 2rem;
    }
    
    .hero-image {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.hero-title {
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #FFFFFF;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 400;
}

.colorful-text {
    background: linear-gradient(45deg, var(--yellow-color), var(--orange-color), var(--pink-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border: none;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    font-family: 'Comic Neue', Arial, sans-serif;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #FFD93D;
    background: -webkit-linear-gradient(45deg, #FFD93D, #FF8C42);
    background: -moz-linear-gradient(45deg, #FFD93D, #FF8C42);
    background: -o-linear-gradient(45deg, #FFD93D, #FF8C42);
    background: linear-gradient(45deg, #FFD93D, #FF8C42);
    background: linear-gradient(45deg, var(--yellow-color), var(--orange-color));
    color: #FFFFFF;
    color: var(--white);
}

.btn-primary:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BASİT VE TEMİZ LAYOUT SİSTEMİ */
.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gökyüzü elementleri - Üst kısımda basit düzen */
/* Bulut 1 - Sol üst */
.cloud-1 {
    position: absolute;
    top: 50px;
    left: 30%;
    z-index: 2;
    font-size: 3.5rem;
    animation: drift 6s ease-in-out infinite;
    animation-delay: 0s;
    opacity: 0.9;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Bulut 2 - Orta üst */
.cloud-2 {
    position: absolute;
    top: 30px;
    right: 45%;
    z-index: 2;
    font-size: 3.5rem;
    animation: drift 6s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0.9;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Bulut 3 - Sağ üst */
.cloud-3 {
    position: absolute;
    top: 50px;
    right: 29%;
    z-index: 2;
    font-size: 3.5rem;
    animation: drift 6s ease-in-out infinite;
    animation-delay: 4s;
    opacity: 0.9;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Yıldız 1 - Sol orta üst */
.star-1 {
    position: absolute;
    top: 100px;
    left: 25%;
    z-index: 3;
    font-size: 3rem;
    animation: twinkle 2s ease-in-out infinite;
    animation-delay: 1s;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Yıldız 2 - Orta üst */
.star-2 {
    position: absolute;
    top: 80px;
    left: 50%;
    z-index: 3;
    font-size: 3rem;
    animation: twinkle 2s ease-in-out infinite;
    animation-delay: 2.5s;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Yıldız 3 - Sağ orta üst */
.star-3 {
    position: absolute;
    top: 100px;
    right: 25%;
    z-index: 3;
    font-size: 3rem;
    animation: twinkle 2s ease-in-out infinite;
    animation-delay: 4s;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Güneş - Sağ üst köşe */
.sun {
    position: absolute;
    bottom: 2%;
    right: 45%;
    z-index: 4;
    font-size: 4.5rem;
    animation: sun-rotate 10s linear infinite;
    filter: drop-shadow(2px 2px 4px rgba(255, 165, 0, 0.3));
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Anaokulu binası - Merkezde */
.kindergarten-building {
    position: relative;
    z-index: 20;
    -webkit-animation: float 4s ease-in-out infinite;
    animation: float 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ördek karakteri - Sol üst */
.duck-character {
    position: absolute;
    left: 30%;
    top: 45%;
    z-index: 3;
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.duck-character:hover {
    -webkit-transform: scale(1.2) rotate(10deg);
    -moz-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    -o-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Ayı karakteri - Sağ üst */
.bear-character {
    position: absolute;
    right: 30%;
    top: 40%;
    z-index: 3;
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.bear-character:hover {
    -webkit-transform: scale(1.2) rotate(10deg);
    -moz-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    -o-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Sanat aktivitesi - Sol alt */
.art-activity {
    position: absolute;
    left: 30%;
    bottom: 20%;
    z-index: 3;
    font-size: 2.8rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.art-activity:hover {
    -webkit-transform: scale(1.3) rotate(-10deg);
    -moz-transform: scale(1.3) rotate(-10deg);
    -ms-transform: scale(1.3) rotate(-10deg);
    -o-transform: scale(1.3) rotate(-10deg);
    transform: scale(1.3) rotate(-10deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Kitap aktivitesi - Alt orta */
.book-activity {
    position: absolute;
    bottom: 2%;
    left: 30%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 2.8rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.book-activity:hover {
    -webkit-transform: scale(1.3) rotate(-10deg);
    -moz-transform: scale(1.3) rotate(-10deg);
    -ms-transform: scale(1.3) rotate(-10deg);
    -o-transform: scale(1.3) rotate(-10deg);
    transform: scale(1.3) rotate(-10deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Futbol aktivitesi - Sağ alt */
.soccer-activity {
    position: absolute;
    bottom: 2%;
    right: 30%;
    z-index: 3;
    font-size: 2.8rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.soccer-activity:hover {
    -webkit-transform: scale(1.3) rotate(-10deg);
    -moz-transform: scale(1.3) rotate(-10deg);
    -ms-transform: scale(1.3) rotate(-10deg);
    -o-transform: scale(1.3) rotate(-10deg);
    transform: scale(1.3) rotate(-10deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Genel Responsive Ayarlar */
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

/* Cross-browser uyumluluk */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Flexbox fallback */
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Mobil uyumluluk - Basit sistem */
@media (max-width: 768px) {
    .hero-image {
        height: 400px;
    }
    
    /* Gökyüzü elementleri - Mobilde daha küçük */
    .sky-elements {
        top: 15px;
        height: 60px;
        padding: 0 30px;
    }
    
    .cloud {
        font-size: 2rem;
    }
    
    .star {
        font-size: 1.4rem;
    }
    
    .sun {
        font-size: 2.5rem;
        top: 5px;
        right: 15px;
    }
    
    /* Karakterler - Mobilde daha kompakt */
    .left-characters {
        left: 15px;
        top: 35%;
    }
    
    .right-characters {
        right: 15px;
        top: 35%;
    }
    
    .character {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    /* Aktivite bölgesi - Mobilde daha kompakt */
    .activity-zone {
        bottom: 20px;
        gap: 25px;
    }
    
    .activity-item {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    /* Anaokulu binası - Mobilde daha küçük */
    .sign-image {
        width: 80px;
    }
    
    .building-roof {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 25px solid #FF6B6B;
    }
    
    .building-body {
        width: 80px;
        height: 55px;
    }
    
    .window {
        width: 12px;
        height: 12px;
    }
    
    .window-1, .window-2 {
        top: 8px;
    }
    
    .window-1 {
        left: 8px;
    }
    
    .window-2 {
        right: 8px;
    }
    
    .door {
        width: 15px;
        height: 25px;
    }
    
    /* Balon ve çiçek grupları - Mobilde daha kompakt */
    .flower-group {
        left: 10px;
        bottom: 70px;
        gap: 12px;
    }
    
    .balloon-group {
        right: 10px;
        top: 70px;
    }
    
    .balloon, .flower {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
        padding: 5px;
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 480px) {
    .hero-image {
        height: 350px;
    }
    
    .sky-elements {
        top: 10px;
        height: 50px;
        padding: 0 20px;
    }
    
    .cloud {
        font-size: 1.6rem;
    }
    
    .star {
        font-size: 1.2rem;
    }
    
    .sun {
        font-size: 2rem;
        top: 5px;
        right: 10px;
    }
    
    .left-characters {
        left: 20px;
    }
    
    .right-characters {
        right: 20px;
    }
    
    .character {
        font-size: 1.6rem;
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .activity-zone {
        bottom: 30px;
        gap: 20px;
    }
    
    .activity-item {
        font-size: 1.4rem;
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .sign-image {
        width: 60px;
    }
    
    .building-roof {
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 20px solid #FF6B6B;
    }
    
    .building-body {
        width: 60px;
        height: 40px;
    }
    
    .flower-group {
        left: 8px;
        bottom: 50px;
        gap: 10px;
    }
    
    .balloon-group {
        right: 8px;
        top: 50px;
    }
    
    .balloon, .flower {
        font-size: 1.1rem;
        width: 30px;
        height: 30px;
        padding: 4px;
    }
}

/* Anaokulu binası - Merkezde */
.kindergarten-building {
    position: relative;
    z-index: 10;
    -webkit-animation: float 4s ease-in-out infinite;
    animation: float 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tabela */
.building-sign {
    position: relative;
    z-index: 15;
    margin-bottom: 10px;
    -webkit-animation: float 3s ease-in-out infinite;
    animation: float 3s ease-in-out infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.sign-image {
    width: 120px;
    height: auto;
    -webkit-filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.sign-image:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.building-roof {
    width: 10;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 70px solid #FF6B6B;
    margin: 0 auto;
    -webkit-filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.building-body {
    width: 220px;
    height: 120px;
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
    border-radius: 0 0 10px 10px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.window {
    position: absolute;
    width: 40px;
    height: 30px;
    background: #FFD93D;
    border: 2px solid #FF8C42;
    border-radius: 3px;
}

.window-1 {
    top: 25px;
    left: 25px;
}

.window-2 {
    top: 25px;
    right: 25px;
}

.door {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: #8B4513;
    border-radius: 3px 3px 0 0;
}

.building-flag {
    position: absolute;
    top: 0px;
    right: -10px;
    -webkit-animation: flag-wave 3s ease-in-out infinite;
    animation: flag-wave 3s ease-in-out infinite;
    transform-origin: top center;
}

.turkish-flag {
    position: relative;
    width: 50px;
    height: 35px;
    background: #E30A17;
    border-radius: 3px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
}

.flag-red {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E30A17 0%, #C41E3A 100%);
    border-radius: 3px;
}

.flag-crescent {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.flag-crescent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #E30A17;
    border-radius: 50%;
    transform: translateY(-50%);
}

.flag-star {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 10px;
    height: 10px;
    background: white;
    transform: translateY(-50%) rotate(0deg);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.flag-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}

/* Kiraz çiçeği - Sol orta */
.cherry-flower {
    position: absolute;
    left: 12%;
    bottom: 60%;
    z-index: 2;
    font-size: 2.5rem;
    animation: flower-sway 4s ease-in-out infinite;
    animation-delay: 0s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.cherry-flower:hover {
    -webkit-transform: scale(1.2) rotate(5deg);
    -moz-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    -o-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Ayçiçeği - Sol alt */
.sunflower {
    position: absolute;
    left: 10%;
    bottom: 5%;
    z-index: 2;
    font-size: 2.5rem;
    animation: flower-sway 4s ease-in-out infinite;
    animation-delay: 1s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.sunflower:hover {
    -webkit-transform: scale(1.2) rotate(5deg);
    -moz-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    -o-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Ebegümeci çiçeği - Sağ orta */
.hibiscus-flower {
    position: absolute;
    right: 12%;
    bottom: 55%;
    z-index: 2;
    font-size: 2.5rem;
    animation: flower-sway 4s ease-in-out infinite;
    animation-delay: 2s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.hibiscus-flower:hover {
    -webkit-transform: scale(1.2) rotate(5deg);
    -moz-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    -o-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Kırmızı balon - Sağ alt */
.red-balloon {
    position: absolute;
    right: 30%;
    bottom: 20%;
    z-index: 2;
    font-size: 2.8rem;
    animation: balloon-float 6s ease-in-out infinite;
    animation-delay: 0s;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    box-shadow: none;
}

.red-balloon:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@-webkit-keyframes float {
    0%, 100% { -webkit-transform: translateY(0px) rotate(0deg); }
    50% { -webkit-transform: translateY(-20px) rotate(10deg); }
}

@-moz-keyframes float {
    0%, 100% { -moz-transform: translateY(0px) rotate(0deg); }
    50% { -moz-transform: translateY(-20px) rotate(10deg); }
}

@-o-keyframes float {
    0%, 100% { -o-transform: translateY(0px) rotate(0deg); }
    50% { -o-transform: translateY(-20px) rotate(10deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@-webkit-keyframes bounce {
    0%, 100% { 
        -webkit-transform: translateY(0px) scale(1); 
    }
    25% { 
        -webkit-transform: translateY(-15px) scale(1.1); 
    }
    50% { 
        -webkit-transform: translateY(-25px) scale(1.05); 
    }
    75% { 
        -webkit-transform: translateY(-10px) scale(1.1); 
    }
}

@-moz-keyframes bounce {
    0%, 100% { 
        -moz-transform: translateY(0px) scale(1); 
    }
    25% { 
        -moz-transform: translateY(-15px) scale(1.1); 
    }
    50% { 
        -moz-transform: translateY(-25px) scale(1.05); 
    }
    75% { 
        -moz-transform: translateY(-10px) scale(1.1); 
    }
}

@-o-keyframes bounce {
    0%, 100% { 
        -o-transform: translateY(0px) scale(1); 
    }
    25% { 
        -o-transform: translateY(-15px) scale(1.1); 
    }
    50% { 
        -o-transform: translateY(-25px) scale(1.05); 
    }
    75% { 
        -o-transform: translateY(-10px) scale(1.1); 
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    25% { 
        transform: translateY(-15px) scale(1.1); 
    }
    50% { 
        transform: translateY(-25px) scale(1.05); 
    }
    75% { 
        transform: translateY(-10px) scale(1.1); 
    }
}

@-webkit-keyframes drift {
    0%, 100% { 
        -webkit-transform: translateX(0px) translateY(0px); 
    }
    25% { 
        -webkit-transform: translateX(10px) translateY(-5px); 
    }
    50% { 
        -webkit-transform: translateX(20px) translateY(-10px); 
    }
    75% { 
        -webkit-transform: translateX(10px) translateY(-5px); 
    }
}

@-moz-keyframes drift {
    0%, 100% { 
        -moz-transform: translateX(0px) translateY(0px); 
    }
    25% { 
        -moz-transform: translateX(10px) translateY(-5px); 
    }
    50% { 
        -moz-transform: translateX(20px) translateY(-10px); 
    }
    75% { 
        -moz-transform: translateX(10px) translateY(-5px); 
    }
}

@keyframes drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px); 
    }
    25% { 
        transform: translateX(10px) translateY(-5px); 
    }
    50% { 
        transform: translateX(20px) translateY(-10px); 
    }
    75% { 
        transform: translateX(10px) translateY(-5px); 
    }
}

@-webkit-keyframes twinkle {
    0%, 100% { 
        opacity: 0.6; 
        -webkit-transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        -webkit-transform: scale(1.2) rotate(180deg); 
    }
}

@-moz-keyframes twinkle {
    0%, 100% { 
        opacity: 0.6; 
        -moz-transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        -moz-transform: scale(1.2) rotate(180deg); 
    }
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

@-webkit-keyframes balloon-float {
    0%, 100% { 
        -webkit-transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        -webkit-transform: translateY(-30px) rotate(5deg); 
    }
    50% { 
        -webkit-transform: translateY(-40px) rotate(-5deg); 
    }
    75% { 
        -webkit-transform: translateY(-20px) rotate(3deg); 
    }
}

@-moz-keyframes balloon-float {
    0%, 100% { 
        -moz-transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        -moz-transform: translateY(-30px) rotate(5deg); 
    }
    50% { 
        -moz-transform: translateY(-40px) rotate(-5deg); 
    }
    75% { 
        -moz-transform: translateY(-20px) rotate(3deg); 
    }
}

@keyframes balloon-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-30px) rotate(5deg); 
    }
    50% { 
        transform: translateY(-40px) rotate(-5deg); 
    }
    75% { 
        transform: translateY(-20px) rotate(3deg); 
    }
}

@-webkit-keyframes wave {
    0%, 100% { 
        -webkit-transform: rotate(0deg); 
    }
    25% { 
        -webkit-transform: rotate(10deg); 
    }
    75% { 
        -webkit-transform: rotate(-10deg); 
    }
}

@-moz-keyframes wave {
    0%, 100% { 
        -moz-transform: rotate(0deg); 
    }
    25% { 
        -moz-transform: rotate(10deg); 
    }
    75% { 
        -moz-transform: rotate(-10deg); 
    }
}

@keyframes wave {
    0%, 100% { 
        transform: rotate(0deg); 
    }
    25% { 
        transform: rotate(10deg); 
    }
    75% { 
        transform: rotate(-10deg); 
    }
}

@keyframes flag-wave {
    0%, 100% { 
        transform: rotate(-3deg) scale(1);
        filter: brightness(1);
    }
    25% { 
        transform: rotate(-1deg) scale(1.02);
        filter: brightness(1.05);
    }
    50% { 
        transform: rotate(2deg) scale(1);
        filter: brightness(1.1);
    }
    75% { 
        transform: rotate(1deg) scale(1.02);
        filter: brightness(1.05);
    }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

/* Ek pattern'ler */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 60px 60px, 30px 30px, 40px 40px;
    animation: pattern-move 20s linear infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    background-size: 100px 100px;
    animation: pattern-shift 15s linear infinite;
    z-index: 1;
}

@keyframes pattern-move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

@keyframes pattern-shift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

/* Section Styles */
section {
    padding: 80px 0;
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Programs Section */
.programs {
    background: var(--white);
}

.program-description {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    text-align: center;
}

.program-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.program-description p:last-child {
    margin-bottom: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    text-align: left;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-color);
    font-weight: bold;
}

/* Teachers Section */
.teachers {
    background: var(--light-gray);
}

.team-section {
    margin-bottom: 3rem;
}

.team-category {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.team-category::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.teacher-card {
    background: var(--white);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.teacher-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--accent-color), var(--purple-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.teacher-image i {
    font-size: 4rem;
    color: var(--white);
}

.teacher-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Kurucu kartında fotoğrafı daha belirgin göster */
.founder-card .teacher-image {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.founder-card .teacher-photo {
    width: 100%;
    height: 100%;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.founder-card .teacher-image .teacher-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: var(--white);
}

.founder-card .teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: var(--white);
    display: block;
}

.teacher-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.teacher-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.teacher-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-radius: var(--radius-small);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Activities Section */
.activities {
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.activity-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.activity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.activity-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Google Maps Section */
.map-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.map-container {
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.map-address, .map-contact {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-address h3, .map-contact h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.map-address p, .map-contact p {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-contact p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Map Container */
.map-container {
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-radius: var(--radius-small);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    width: 50px;
    height: 35px;
    margin-right: 12px;
    object-fit: contain;
}

.footer-logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--yellow-color);
}

.footer-section p {
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 1rem;
    text-align: center;
    color: #adb5bd;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-button a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-button a:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}


.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    font-size: 20px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: pulse-glow 2s ease-in-out infinite;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 107, 107, 0.7);
    }
}

/* Responsive Design */

/* Tablet ve küçük ekranlar için */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .programs-grid,
    .teachers-grid,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-elements {
        width: 300px;
        height: 300px;
    }
    
    .floating-character {
        font-size: 2rem;
    }
    
    .floating-icon {
        font-size: 1.8rem;
    }
    
    .floating-cloud {
        font-size: 1.5rem;
    }
    
    .floating-star {
        font-size: 1.2rem;
    }
    
    .floating-balloon {
        font-size: 1.5rem;
    }
    
    .kindergarten-building {
        bottom: 10px;
    }
    
    .building-roof {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 25px solid #FF6B6B;
    }
    
    .building-body {
        width: 80px;
        height: 55px;
    }
    
    .window {
        width: 12px;
        height: 12px;
    }
    
    .window-1, .window-2 {
        top: 10px;
    }
    
    .window-3, .window-4 {
        bottom: 10px;
    }
    
    .window-1, .window-3 {
        left: 10px;
    }
    
    .window-2, .window-4 {
        right: 10px;
    }
    
    .door {
        width: 15px;
        height: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-address, .map-contact {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .programs-grid,
    .teachers-grid,
    .activities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobil için ek iyileştirmeler */
    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        order: -1; /* Ücret kartını en üste taşı */
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    /* Mobil için detaylandırılmış kart stilleri */
    .approach-list {
        text-align: center;
    }
    
    .age-groups {
        gap: 0.5rem;
    }
    
    .age-group {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .daily-schedule {
        max-height: 250px;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .time {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .activity {
        text-align: center;
        margin-left: 0;
        font-size: 0.8rem;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-carousel {
        padding: 0 1rem;
    }
    
    .faq-list {
        padding: 0 1rem;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Mobil menü iyileştirmeleri */
    .nav-logo span {
        font-size: 1.2rem;
    }
    
    .nav-logo .logo-img {
        width: 35px;
        height: 35px;
    }
    
    /* Mobil form iyileştirmeleri */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* iOS zoom önleme */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    .nav-logo .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .program-card,
    .teacher-card,
    .activity-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Çok küçük ekranlar için ek iyileştirmeler */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin: 0.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    .nav-logo .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .program-card,
    .teacher-card,
    .activity-card,
    .announcement-card,
    .blog-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
        object-fit: cover;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 98%;
        max-width: 350px;
        padding: 1rem;
    }
    
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top {
        bottom: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.loader-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.loader-subtext {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Hero Video Styles */
.hero-video {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Container with Flowers */
.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    z-index: 2;
}

/* Left Side Flowers */
.flowers-left {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
    opacity: 1;
}

/* Right Side Flowers */
.flowers-right {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
    opacity: 1;
}

/* Individual Flower Styles */
.flower {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.flower:hover {
    transform: scale(1.3) rotate(15deg);
}

/* Flower Animation Delays */
.flower:nth-child(1) { animation-delay: 0s; }
.flower:nth-child(2) { animation-delay: 0.5s; }
.flower:nth-child(3) { animation-delay: 1s; }
.flower:nth-child(4) { animation-delay: 1.5s; }
.flower:nth-child(5) { animation-delay: 2s; }
.flower:nth-child(6) { animation-delay: 2.5s; }

/* Right side flowers reverse order */
.flowers-right .flower:nth-child(1) { animation-delay: 2.5s; }
.flowers-right .flower:nth-child(2) { animation-delay: 2s; }
.flowers-right .flower:nth-child(3) { animation-delay: 1.5s; }
.flowers-right .flower:nth-child(4) { animation-delay: 1s; }
.flowers-right .flower:nth-child(5) { animation-delay: 0.5s; }
.flowers-right .flower:nth-child(6) { animation-delay: 0s; }

.video-container-simple {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.video-container-simple video {
    width: 100%;
    height: auto;
    max-height: 380px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    -webkit-object-fit: contain;
    -moz-object-fit: contain;
    -ms-object-fit: contain;
    /* Fallback for older browsers */
    background: #000;
}

.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #FF6B6B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.hero-video-play i {
    margin-left: 4px;
}

.hero-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #FF6B6B;
    color: #ffffff;
}

.hero-video-play.is-hidden {
    display: none;
}

.video-container-simple video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Video Responsive */
@media (max-width: 768px) {
    .video-container-simple {
        padding: 5px;
        margin: 10px 0;
    }

    .video-container-simple video {
        max-height: 250px;
        border-radius: 8px;
    }

    .hero-video-play {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-container-simple {
        padding: 3px;
        margin: 5px 0;
    }
    
    .video-container-simple video {
        max-height: 200px;
        border-radius: 6px;
    }
}

.hero-video-player {
    width: 100% !important;
    height: auto !important;
    max-height: 400px !important;
    display: block !important;
    border-radius: 15px !important;
    background: #ffffff !important;
    cursor: pointer;
    object-fit: cover !important;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    border: 2px solid #e9ecef !important;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Video element hover effect */
.hero-video-player:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: #FF6B6B !important;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 107, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

/* Video controls styling */
.hero-video-player::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.7);
}

.hero-video-player::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
}

.hero-video-player::-webkit-media-controls-play-button {
    background: rgba(255, 107, 107, 0.8);
    border-radius: 50%;
}

.hero-video-player::-webkit-media-controls-play-button:hover {
    background: rgba(255, 107, 107, 1);
}

.video-play-button.hidden {
    display: none !important;
}

.video-play-button:hover {
    background: rgba(255, 107, 107, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

.video-play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px; /* Play icon için küçük offset */
}

.hero-video-player:hover {
    transform: scale(1.02);
}

/* Video oynatma butonu */
.hero-video-player::-webkit-media-controls-play-button {
    background-color: rgba(255, 107, 107, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.hero-video-player::-webkit-media-controls-play-button:hover {
    background-color: rgba(255, 107, 107, 1);
    transform: scale(1.1);
}

/* Video Fallback Styles */
.video-fallback {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.fallback-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-large);
}

.fallback-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-radius: 0 0 var(--radius-large) var(--radius-large);
}

.fallback-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.fallback-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.fallback-overlay .btn {
    margin-top: 1rem;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-radius: 0 0 var(--radius-large) var(--radius-large);
    pointer-events: none; /* Tıklamaları video'ya geçir */
    z-index: 5;
}

.video-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive Video */
@media (max-width: 768px) {
    .hero-content {
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .video-container {
        order: 2;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-video {
        max-width: 100%;
        width: 100%;
    }
    
    .video-container-main {
        max-height: 320px;
    }
    
    .hero-video-player {
        max-height: 320px;
        width: 100%;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
    
    .flowers-left,
    .flowers-right {
        display: none; /* Çiçekler tamamen gizli */
    }
    
    .video-overlay h3 {
        font-size: 1.1rem;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Tablet için çiçekleri küçült */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 1.5rem;
    }
    
    .video-container {
        max-width: 280px;
    }
    
    .hero-video {
        max-width: 280px;
    }
    
    .flowers-left,
    .flowers-right {
        display: none; /* Çiçekler tamamen gizli */
    }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-radius: var(--radius-small);
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Broşür Modal */
.brochure-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.brochure-content {
    background: var(--white);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-heavy);
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
}

.brochure-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.brochure-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.brochure-item {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.brochure-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.brochure-img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    background: white;
    border: 2px solid #ddd;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

.brochure-img:hover {
    transform: scale(1.02);
}

.brochure-text {
    text-align: center;
    background: var(--light-gray);
    padding: 2rem;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border-radius: var(--radius-medium);
}

.brochure-text h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.brochure-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.show { display: flex; }

.modal-content {
    background: var(--white);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-heavy);
    padding: 2rem;
    width: 100%;
    max-width: 520px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 0;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
}

/* Gallery filters */
.gallery-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.filter-btn {
    padding: 8px 14px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-radius: var(--radius-small);
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Education Section */
.education { background: var(--white); }

/* Age Programs Section */
.age-programs {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

/* Education Programs Section */
.education-programs {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.education-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 100%);
}

.programs-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.programs-description p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.programs-description p:last-child {
    margin-bottom: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 100%);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-card .program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.program-card .program-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.program-card:hover .program-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

.program-card .program-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 20px;
    line-height: 1.3;
}

.program-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.program-card .program-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.program-card .program-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #495057;
    font-size: 0.95rem;
}

.program-card .program-features li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Responsive Design for Education Programs */
@media (max-width: 768px) {
    .education-programs {
        padding: 60px 0;
    }
    
    .programs-description {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .programs-description p {
        font-size: 1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .program-card h3 {
        font-size: 1.2rem;
    }
    
    .program-card .program-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .program-card .program-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        padding: 25px 15px;
    }
    
    .program-card h3 {
        font-size: 1.1rem;
    }
    
    .program-card .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .program-card .program-icon i {
        font-size: 1.8rem;
    }
}

.age-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 100%);
}

.age-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.age-program-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.age-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 100%);
}

.age-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.age-program-card .program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.age-program-card .program-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.age-program-card:hover .program-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.age-program-card .program-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.age-program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 20px;
    line-height: 1.3;
}

.age-program-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.age-program-card .program-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.age-program-card .program-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #495057;
    font-size: 0.95rem;
}

.age-program-card .program-features li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Responsive Design for Age Programs */
@media (max-width: 768px) {
    .age-programs {
        padding: 60px 0;
    }
    
    .age-programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .age-program-card {
        padding: 30px 20px;
    }
    
    .age-program-card h3 {
        font-size: 1.2rem;
    }
    
    .age-program-card .program-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .age-program-card .program-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .age-programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .age-program-card {
        padding: 25px 15px;
    }
    
    .age-program-card h3 {
        font-size: 1.1rem;
    }
    
    .age-program-card .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .age-program-card .program-icon i {
        font-size: 1.8rem;
    }
}

.education-grid {
    display: -webkit-box; /* Old webkit */
    display: -moz-box; /* Old Firefox */
    display: -ms-flexbox; /* IE 10 */
    display: -webkit-flex; /* New webkit */
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: -1rem; /* Negative margin for gap simulation */
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Fallback for browsers that don't support grid */
@supports not (display: grid) {
    .education-grid {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin: -1rem;
    }
    
    .education-card {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 calc(50% - 2rem);
        -ms-flex: 0 0 calc(50% - 2rem);
        flex: 0 0 calc(50% - 2rem);
        margin: 1rem;
    }
}

.education-card {
    background: var(--white);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.education-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

.education-card i { font-size: 2.2rem; color: var(--accent-color); margin-bottom: 0.8rem; }

.education-card h3 { font-family: var(--font-heading); color: var(--primary-color); margin-bottom: 0.5rem; }

/* Ücret Kartı Özel Stilleri */
.pricing-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: 3px solid var(--primary-color);
}

.pricing-card:hover {
    border-color: var(--yellow-color);
    transform: translateY(-6px) scale(1.02);
}

.pricing-card i {
    color: var(--yellow-color);
}

.pricing-card h3 {
    color: var(--white);
}

.pricing-info {
    margin: 1.5rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--yellow-color);
    font-family: var(--font-heading);
}

.pricing-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-style: italic;
}

/* Detaylandırılmış Kart Stilleri */
.approach-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.approach-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--gray);
}

.approach-list li:last-child {
    border-bottom: none;
}

/* Yaş Grupları Stilleri */
.age-groups {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.age-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--light-gray);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-radius: var(--radius-small);
    border-left: 4px solid var(--primary-color);
}

.age-range {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.age-focus {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.age-note {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Günlük Program Stilleri */
.daily-schedule {
    margin: 1.5rem 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--light-gray);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-radius: var(--radius-small);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.3s ease;
}

.schedule-item:hover {
    background-color: var(--light-gray);
}

.schedule-item:last-child {
    border-bottom: none;
}

.time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 80px;
}

.activity {
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}

/* Announcements */
.announcements { background: var(--white); }

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.announcement-card {
    background: var(--light-gray);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border-radius: var(--radius-large);
    padding: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-light);
}

.date-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--secondary-color);
    color: var(--white);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-radius: var(--radius-small);
    padding: 6px 10px;
    font-weight: 700;
}

/* FAQ */
.faq { background: var(--light-gray); }

.faq-list { max-width: 900px; margin: 0 auto; }

.faq-item { background: var(--white); border-radius: var(--radius-medium); box-shadow: var(--shadow-light); margin-bottom: 1rem; overflow: hidden; }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: none;
    font-weight: 700;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer { display: none; padding: 0 1.25rem 1rem; color: var(--gray); }
.faq-item.open .faq-answer { display: block; }

/* Testimonials */
.testimonials { background: var(--white); }

.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-item { display: none; text-align: center; background: var(--light-gray); border-radius: var(--radius-large); padding: 2rem; }
.testimonial-item.active { display: block; }
.testimonial-item .author { display: block; margin-top: 0.75rem; color: var(--primary-color); font-weight: 700; }

.testimonial-controls { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
.testimonial-controls button { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--primary-color); color: var(--white); cursor: pointer; }

/* Blog */
.blog { background: var(--light-gray); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius-large); box-shadow: var(--shadow-light); overflow: hidden; }
.blog-thumb { height: 160px; background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); }
.blog-content { padding: 1rem 1.25rem 1.5rem; }
.read-more { color: var(--accent-color); text-decoration: none; font-weight: 700; }

/* Map */
.map-wrapper { margin-top: 1.5rem; border-radius: var(--radius-large); overflow: hidden; box-shadow: var(--shadow-light); }

/* Internet Explorer Compatibility */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .hero {
        background: #FF6B6B;
    }
    
    .floating-character,
    .floating-icon,
    .floating-cloud,
    .floating-star,
    .floating-balloon {
        display: none;
    }
    
    .hero-content {
        display: block;
    }
    
    .hero-image {
        display: none;
    }
}

/* Legacy Browser Support */
.no-cssanimations .floating-character,
.no-cssanimations .floating-icon,
.no-cssanimations .floating-cloud,
.no-cssanimations .floating-star,
.no-cssanimations .floating-balloon {
    animation: none;
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
}

/* Broşür Modal Responsive */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .brochure-content {
        max-width: 90vw;
        padding: 1.5rem;
    }
    
    .brochure-img {
        height: 450px;
    }
    
    .brochure-images {
        gap: 1.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .brochure-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brochure-content {
        padding: 1rem;
        max-width: 95%;
    }
    
    .brochure-text h3 {
        font-size: 1.5rem;
    }
    
    .brochure-img {
        height: 400px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .video-container-main {
        max-height: 280px;
    }
    
    .hero-video-player {
        max-height: 280px;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 1.2rem;
    }
    
    .video-overlay h3 {
        font-size: 1rem;
    }
    
    .video-overlay p {
        font-size: 0.75rem;
    }
    
    .team-category {
        font-size: 1.3rem;
    }
    
    .teacher-card {
        padding: 1.5rem;
    }
    
    .teacher-image {
        width: 100px;
        height: 100px;
    }
    
    .teacher-card h3 {
        font-size: 1.2rem;
    }
    
    .teacher-title {
        font-size: 0.9rem;
    }
    
    .teacher-bio {
        font-size: 0.85rem;
    }
}

/* Touch device optimizations */
.touch-device .btn {
    min-height: 44px;
    min-width: 44px;
}

.touch-device .nav-link {
    padding: 15px 20px;
}

.touch-device .hamburger {
    padding: 15px;
}

.touch-device .teacher-card {
    transition: none;
}

.touch-device .teacher-card:active {
    transform: scale(0.98);
}

.touch-device .hero-video-player {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (max-width: 480px) {
    .brochure-content {
        max-width: 98%;
        padding: 0.5rem;
    }
    
    .brochure-img {
        height: 300px;
    }
    
    .brochure-item h4 {
        font-size: 1rem;
    }
    
    .brochure-text h3 {
        font-size: 1.2rem;
    }
    
    .brochure-text p {
        font-size: 0.9rem;
    }
}

/* Yeni animasyonlar */
@-webkit-keyframes sun-rotate {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes sun-rotate {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); }
}

@-o-keyframes sun-rotate {
    0% { -o-transform: rotate(0deg); }
    100% { -o-transform: rotate(360deg); }
}

@keyframes sun-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes flower-sway {
    0%, 100% { -webkit-transform: rotate(0deg) translateY(0px); }
    25% { -webkit-transform: rotate(2deg) translateY(-5px); }
    50% { -webkit-transform: rotate(0deg) translateY(-10px); }
    75% { -webkit-transform: rotate(-2deg) translateY(-5px); }
}

@-moz-keyframes flower-sway {
    0%, 100% { -moz-transform: rotate(0deg) translateY(0px); }
    25% { -moz-transform: rotate(2deg) translateY(-5px); }
    50% { -moz-transform: rotate(0deg) translateY(-10px); }
    75% { -moz-transform: rotate(-2deg) translateY(-5px); }
}

@-o-keyframes flower-sway {
    0%, 100% { -o-transform: rotate(0deg) translateY(0px); }
    25% { -o-transform: rotate(2deg) translateY(-5px); }
    50% { -o-transform: rotate(0deg) translateY(-10px); }
    75% { -o-transform: rotate(-2deg) translateY(-5px); }
}

@keyframes flower-sway {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    25% { transform: rotate(2deg) translateY(-5px); }
    50% { transform: rotate(0deg) translateY(-10px); }
    75% { transform: rotate(-2deg) translateY(-5px); }
}

/* Article Modal Styles */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.article-modal.show {
    opacity: 1;
    visibility: visible;
}

.article-modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.article-modal.show .article-modal-content {
    transform: scale(1);
}

.article-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-modal-header h3 {
    margin: 0;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.article-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.article-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.article-modal-body {
    padding: 30px 25px;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.6;
}

.article-modal-body h4 {
    color: var(--primary-color);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    letter-spacing: 0.3px;
}

.article-modal-body h4:first-child {
    margin-top: 0;
}

.article-modal-body p {
    color: var(--gray);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.article-modal-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.article-modal-body li {
    color: var(--gray);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.article-modal-body strong {
    color: var(--primary-color);
    font-weight: 700;
}

.article-modal-footer {
    padding: 20px 25px;
    background: var(--light-gray);
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.article-modal-footer .btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
}

/* Responsive Modal */
/* Mobile Responsive Design */
@media (max-width: 768px) {
    .article-modal {
        padding: 10px;
    }
    
    .article-modal-content {
        max-width: 95%;
        margin: 10px auto;
        max-height: 90vh;
    }
    
    .article-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .article-modal-body {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Dilimizin Zenginlikleri Section */
.language-riches {
    background: var(--light-gray);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.resource-card {
    background: var(--white);
    border-radius: var(--radius-medium);
    padding: 1.75rem;
    box-shadow: var(--shadow-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.resource-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.resource-icon.pdf {
    background: linear-gradient(135deg, #D7373F, #FF6B6B);
}

.resource-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0.25rem 0;
}

.resource-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
    flex: 1;
}

.resource-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.language-riches .btn {
    box-shadow: none;
    padding: 12px 20px;
}

.language-riches .btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.language-riches .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .resource-actions {
        flex-direction: column;
    }
    
    .language-riches .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-image {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-image {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Small Mobile Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        max-width: 240px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .nav-logo span {
        font-size: 0.9rem;
    }
    
    .nav-logo .logo-img {
        width: 25px;
        height: 25px;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .program-card h3 {
        font-size: 1.1rem;
    }
    
    .program-card p {
        font-size: 0.9rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
    
    .hamburger {
        padding: 12px;
    }
    
    .whatsapp-button a,
    .back-to-top {
        min-height: 50px;
        min-width: 50px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Safari Specific Fixes */
@supports (-webkit-appearance: none) {
    .hero-image {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .program-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .btn {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* iOS Safari Fixes */
@supports (-webkit-touch-callout: none) {
    .hero-image {
        -webkit-overflow-scrolling: touch;
    }
    
    .article-modal-body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-button,
    .back-to-top,
    .scroll-progress {
        display: none !important;
    }
    
    .hero-image {
        height: auto;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .article-modal {
        padding: 10px;
    }
    
    .article-modal-content {
        max-height: 95vh;
    }
    
    .article-modal-header {
        padding: 15px 20px;
    }
    
    .article-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .article-modal-body {
        padding: 20px;
        max-height: 70vh;
    }
    
    .article-modal-body h4 {
        font-size: 1.2rem;
    }
    
    .article-modal-body p,
    .article-modal-body li {
        font-size: 1rem;
    }
    
    .article-modal-footer {
        padding: 15px 20px;
    }
}
/* ============================================================
   AÇILIŞ VİDEOSU — dikey (9:16) hero videosu
   ============================================================ */

.hero-video.is-vertical {
    max-width: none;
    overflow: visible;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
}

.video-container-simple.is-vertical {
    max-height: none;
    overflow: visible;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    display: flex;
    justify-content: center;
}

.acilis-frame {
    position: relative;
    width: 100%;
    max-width: 230px;
    max-width: min(230px, 32vh);
    aspect-ratio: 720 / 1270;
    border-radius: 26px;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    background: #000;
    line-height: 0;
}

/* aspect-ratio desteklemeyen eski tarayıcılar için yedek */
@supports not (aspect-ratio: 1 / 1) {
    .acilis-frame { height: 0; padding-bottom: 176.4%; }
    .acilis-frame video { position: absolute; top: 0; left: 0; }
}

.video-container-simple.is-vertical video.acilis-video {
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
    margin: 0;
    display: block;
    border-radius: 0;
    object-fit: cover;
    background: #000;
    cursor: pointer;
}

/* Ses aç/kapat butonu */
.acilis-sound {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.acilis-sound:hover,
.acilis-sound:focus-visible {
    background: #FF6B6B;
    transform: scale(1.08);
    outline: none;
}

/* Otomatik oynatma engellenirse görünen oynat butonu */
.acilis-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    color: #FF6B6B;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.acilis-play i { margin-left: 4px; }

.acilis-play:hover {
    background: #FF6B6B;
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.08);
}

.acilis-play.is-hidden { display: none; }

@media (max-width: 768px) {
    .video-container-simple.is-vertical {
        padding: 0;
        margin: 0 auto;
    }
    .video-container-simple.is-vertical video.acilis-video {
        max-height: none;
        border-radius: 0;
    }
    .acilis-frame {
        max-width: 244px;
        border-radius: 22px;
        border-width: 4px;
    }
    .acilis-sound { width: 42px; height: 42px; font-size: 15px; right: 10px; bottom: 10px; }
    .acilis-play  { width: 62px; height: 62px; font-size: 21px; }
}

@media (max-width: 480px) {
    .video-container-simple.is-vertical { padding: 0; margin: 0 auto; }
    .video-container-simple.is-vertical video.acilis-video { max-height: none; border-radius: 0; }
    .acilis-frame { max-width: 216px; border-radius: 20px; }
}

/* Açılış videosu — hata bildirimi */
.acilis-error {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: rgba(20, 26, 33, 0.92);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    text-align: center;
    line-height: 1.45;
}
.acilis-error b     { font-size: 1rem; }
.acilis-error span  { font-size: .85rem; opacity: .92; }
.acilis-error small { font-size: .72rem; opacity: .62; margin-top: 4px; }
