/* Root Variables - Görselinizden alınan renk paleti */
:root {
    --primary-green: #8FA68E;
    --light-green: #B8C9B7;
    --dark-green: #6B8A6A;
    --cream: #F5F3F0;
    --beige: #E8E2DB;
    --white: #FFFFFF;
    --text-dark: #2D3748;
    --text-light: #718096;
    --accent-yellow: #F6E05E;
    --accent-blue: #4299E1;
    --accent-orange: #ED8936;
    --accent-pink: #ED64A6;
}

/* Section Transition Styles */
.section-wave-top {
    position: relative;
    padding-top: 100px;
}

.section-wave-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F5F3F0' fill-opacity='1' d='M0,64L80,64C160,64,320,64,480,74.7C640,85,800,107,960,96C1120,85,1280,43,1360,21.3L1440,0L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.section-wave-bottom {
    position: relative;
    padding-bottom: 100px;
}

.section-wave-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23B8C9B7' fill-opacity='0.5' d='M0,0L80,5.3C160,11,320,21,480,32C640,43,800,53,960,53.3C1120,53,1280,43,1360,37.3L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.green-gradient-bg {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-green) 100%);
}

.cream-gradient-bg {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    font-weight: 700;
}

p, span, div, a, button, input, textarea, select, li {
    font-family: 'Open Sans', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
    border-radius: 2px;
}

/* Header Styles */
.header {
    background: #a7a971;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(167, 169, 113, 0.2);
    transition: all 0.3s ease;
    height: auto;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img img {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Navigation Menu */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

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

/* WhatsApp Header Button */
.whatsapp-header {
    position: relative;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

.whatsapp-text {
    font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 12px;
    z-index: 1001;
    background-color: transparent;
    border: none;
    position: relative;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 3px;
}

/* Hamburger Active State */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 28px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 28px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--light-green) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FFFFFF' fill-opacity='1' d='M0,32L60,48C120,64,240,96,360,96C480,96,600,64,720,58.7C840,53,960,75,1080,75C1200,75,1320,53,1380,42.7L1440,32L1440,100L1380,100C1320,100,1200,100,1080,100C960,100,840,100,720,100C600,100,480,100,360,100C240,100,120,100,60,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-yellow);
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-blue);
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    bottom: 15%;
    right: 25%;
    animation-delay: 3s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    background: var(--accent-pink);
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.shape-6 {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    top: 30%;
    right: 5%;
    animation-delay: 5s;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

.particle:nth-child(6) {
    bottom: 20%;
    right: 30%;
    animation-delay: 3s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    z-index: 10;
}

.hero-text {
    text-align: left;
    position: relative;
    z-index: 10;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(246, 224, 94, 0.3);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-badge i {
    color: var(--text-dark);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.title-line-1 {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line-2 {
    display: block;
    color: var(--accent-orange);
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary-btn {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    color: white;
    box-shadow: 0 8px 25px rgba(143, 166, 142, 0.3);
}

.hero-btn.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(143, 166, 142, 0.4);
}

.hero-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn.secondary-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 166, 142, 0.3);
}

.hero-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.1);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(143, 166, 142, 0.3);
    animation: gentleFloat 3s ease-in-out infinite;
}

.main-icon {
    font-size: 4rem;
    color: white;
    animation: pulse 2s infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: floatIcon 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.float-item:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.float-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.float-4 {
    bottom: 15%;
    right: 25%;
    animation-delay: 3s;
}

.float-5 {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.float-6 {
    top: 70%;
    right: 10%;
    animation-delay: 5s;
}

/* Stats Bubble */
.stats-bubble {
    position: absolute;
    top: 20%;
    right: 10%;
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(246, 224, 94, 0.3);
    animation: gentleFloat 4s ease-in-out infinite;
    z-index: 5;
}

.stat-item {
    text-align: center;
    color: var(--text-dark);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid var(--primary-green);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.why-us::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23E8E2DB' fill-opacity='0.6' d='M0,64L80,64C160,64,320,64,480,74.7C640,85,800,107,960,96C1120,85,1280,43,1360,21.3L1440,0L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(143, 166, 142, 0.2);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Workshop Activities Section */
.workshop-activities {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    position: relative;
}

.workshop-activities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23E8E2DB' fill-opacity='0.6' d='M0,32L48,37.3C96,43,192,53,288,58.7C384,64,480,64,576,58.7C672,53,768,43,864,48C960,53,1056,75,1152,74.7C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.workshop-activities::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23B8C9B7' fill-opacity='0.3' d='M0,96L48,85.3C96,75,192,53,288,53.3C384,53,480,75,576,80C672,85,768,75,864,74.7C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

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

.activity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.activity-card::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.8s;
}

.activity-card:hover::before {
    left: 100%;
}

.activity-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(143, 166, 142, 0.15);
    border-color: var(--light-green);
}

.activity-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

/* Different colors for each activity */
.music .activity-icon {
    background: linear-gradient(45deg, #FF6B9D, #C44569);
}

.sensory .activity-icon {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
}

.development .activity-icon {
    background: linear-gradient(45deg, #45B7D1, #96CEB4);
}

.yoga .activity-icon {
    background: linear-gradient(45deg, #A8E6CF, #88D5A3);
}

.storytelling .activity-icon {
    background: linear-gradient(45deg, #FFD93D, #FF6B6B);
}

.montessori .activity-icon {
    background: linear-gradient(45deg, #74B9FF, #0984E3);
}

.drama .activity-icon {
    background: linear-gradient(45deg, #FD79A8, #E84393);
}

.adaptation .activity-icon {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
}

.activity-card:hover .activity-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.activity-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
}

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

.activity-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.activity-benefit {
    display: inline-block;
    background: linear-gradient(45deg, var(--cream), var(--beige));
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}

.activity-card:hover .activity-benefit {
    background: linear-gradient(45deg, var(--light-green), var(--primary-green));
    color: white;
    transform: scale(1.05);
}

/* Special hover effects for specific cards */
.music:hover .activity-icon {
    animation: musicPulse 1s ease-in-out;
}

.yoga:hover .activity-icon {
    animation: gentleFloat 2s ease-in-out infinite;
}

.drama:hover .activity-icon {
    animation: dramaticSpin 0.8s ease-in-out;
}

/* Age Groups Section */
.age-groups {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
}

.age-groups::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23B8C9B7' fill-opacity='0.3' d='M0,64L48,69.3C96,75,192,85,288,90.7C384,96,480,96,576,80C672,64,768,32,864,21.3C960,11,1056,21,1152,32C1248,43,1344,53,1392,58.7L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.age-groups::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%238FA68E' fill-opacity='0.2' d='M0,0L48,10.7C96,21,192,43,288,53.3C384,64,480,64,576,69.3C672,75,768,85,864,90.7C960,96,1056,96,1152,90.7C1248,85,1344,75,1392,69.3L1440,64L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.age-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.age-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
}

.age-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 25px 25px 0 0;
}

.age-card.baby::before {
    background: linear-gradient(90deg, #FF9A9E, #FAD0C4);
}

.age-card.infant::before {
    background: linear-gradient(90deg, #A8E6CF, #88D5A3);
}

.age-card.toddler-early::before {
    background: linear-gradient(90deg, #FFD93D, #FF6B6B);
}

.age-card.toddler-late::before {
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
}

.age-card.preschool::before {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
}

.age-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(143, 166, 142, 0.2);
    border-color: var(--primary-green);
}

.age-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.baby .age-icon {
    background: linear-gradient(45deg, #FF9A9E, #FAD0C4);
}

.infant .age-icon {
    background: linear-gradient(45deg, #A8E6CF, #88D5A3);
}

.toddler-early .age-icon {
    background: linear-gradient(45deg, #FFD93D, #FF6B6B);
}

.toddler-late .age-icon {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
}

.preschool .age-icon {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
}

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

.age-icon i {
    font-size: 2rem;
    color: white;
}

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

.age-features {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-tag.parent-included {
    background: linear-gradient(45deg, #E8F8F5, #D5F3EC);
    color: var(--dark-green);
    border: 2px solid var(--light-green);
}

.feature-tag.flexible {
    background: linear-gradient(45deg, #FFF8DC, #F0E68C);
    color: #8B7D3A;
    border: 2px solid #DAA520;
}

.preschool-details {
    background: var(--cream);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    width: 20px;
    color: var(--primary-green);
    font-size: 1rem;
}

.age-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
    position: relative;
}

.programs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%238FA68E' fill-opacity='0.2' d='M0,96L48,90.7C96,85,192,75,288,64C384,53,480,43,576,53.3C672,64,768,96,864,96C960,96,1056,64,1152,58.7C1248,53,1344,75,1392,85.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.programs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FFFFFF' fill-opacity='0.7' d='M0,32L48,48C96,64,192,96,288,106.7C384,117,480,107,576,90.7C672,75,768,53,864,42.7C960,32,1056,32,1152,42.7C1248,53,1344,75,1392,85.3L1440,96L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.programs-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.program-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(143, 166, 142, 0.3);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.program-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-pink));
}

.card-icon i {
    font-size: 2.5rem;
    color: white;
}

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

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

.card-btn {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(143, 166, 142, 0.4);
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 100px 0;
    background: var(--white);
}

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

.gallery-item {
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.placeholder-image i {
    font-size: 4rem;
    color: white;
}

.discovery {
    background: linear-gradient(45deg, var(--accent-blue), var(--primary-green));
}

.friendship {
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-orange));
}

.creativity {
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.05);
}

.gallery-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.gallery-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Workshop Info Section */
.workshop-info {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 50%, var(--beige) 100%);
    position: relative;
}

.workshop-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FFFFFF' fill-opacity='0.7' d='M0,64L48,69.3C96,75,192,85,288,74.7C384,64,480,32,576,16C672,0,768,0,864,16C960,32,1056,64,1152,69.3C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.workshop-info::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F5F3F0' fill-opacity='0.8' d='M0,0L48,5.3C96,11,192,21,288,26.7C384,32,480,32,576,37.3C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

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

.info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 25px 25px 0 0;
}

.duration::before {
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
}

.participants::before {
    background: linear-gradient(90deg, #FF6B9D, #C44569);
}

.frequency::before {
    background: linear-gradient(90deg, #45B7D1, #96CEB4);
}

.content::before {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
}

.materials::before {
    background: linear-gradient(90deg, #A8E6CF, #88D5A3);
}

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(143, 166, 142, 0.2);
    border-color: var(--light-green);
}

.info-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.duration .info-icon {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
}

.participants .info-icon {
    background: linear-gradient(45deg, #FF6B9D, #C44569);
}

.frequency .info-icon {
    background: linear-gradient(45deg, #45B7D1, #96CEB4);
}

.content .info-icon {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
}

.materials .info-icon {
    background: linear-gradient(45deg, #A8E6CF, #88D5A3);
}

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

.info-icon i {
    font-size: 2.2rem;
    color: white;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.duration-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-badge {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.to {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.participant-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.participant-group {
    background: var(--cream);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}

.participant-group:hover {
    background: var(--light-green);
    color: white;
}

.participant-group i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.participant-group:hover i {
    color: white;
}

.plus {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
}

.frequency-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-badge {
    background: var(--cream);
    padding: 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}

.option-badge:hover {
    background: var(--light-green);
    color: white;
    transform: scale(1.02);
}

.option-badge i {
    color: var(--primary-green);
}

.option-badge:hover i {
    color: white;
}

.ministry-badge {
    background: linear-gradient(45deg, #FFD93D, #FF6B6B);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.materials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.material-badge {
    background: var(--cream);
    padding: 10px 12px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
    text-align: center;
}

.material-badge:hover {
    background: var(--light-green);
    color: white;
    transform: scale(1.05);
}

.material-badge i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.material-badge:hover i {
    color: white;
}

.material-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.info-details p,
.content-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Remove old materials section styles since we moved it to card format */

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F5F3F0' fill-opacity='0.8' d='M0,32L48,42.7C96,53,192,75,288,85.3C384,96,480,96,576,85.3C672,75,768,53,864,48C960,43,1056,53,1152,58.7C1248,64,1344,64,1392,64L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

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

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(143, 166, 142, 0.15);
    border-color: var(--light-green);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 166, 142, 0.4);
}

.contact-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-link-contact:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-pink));
}

.map-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-green);
}

.map-section h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

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

.map-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.map-info i {
    color: var(--primary-green);
    width: 20px;
}

/* Mobile Navigation Improvements */
@media (max-width: 992px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .navbar {
        padding: 0;
        height: 70px;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 100%;
        position: relative;
    }
    
    #mobile-menu {
        display: flex !important;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-right {
        position: fixed;
        width: 100%;
        height: calc(100vh - 70px);
        top: 70px;
        left: -100%;
        background-color: rgba(167, 169, 113, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        transition: 0.4s ease-in-out;
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav-right.active {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: calc(var(--item-index, 0) * 0.05s);
    }
    
    .nav-right.active .nav-menu li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 1rem 0;
        display: block;
        font-size: 1.2rem;
        width: 100%;
        font-weight: 600;
        color: white;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .whatsapp-header {
        margin-top: 2rem;
        width: 80%;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Mobile Styles */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        height: 180px;
        margin-bottom: 0;
    }
    
    .hero-image-container {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .illustration-circle {
        width: 120px;
        height: 120px;
    }
    
    .main-icon {
        font-size: 2.5rem;
    }
    
    .float-item {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
        font-weight: 700;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .stats-bubble {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 2rem;
        align-self: center;
        z-index: 5;
    }
    
    .hero-badge {
        z-index: 10;
        position: relative;
    }
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-btn i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    background: #a7a971;
    color: #333;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: #333;
    font-weight: 500;
}

.footer-logo .logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-img img {
    width: auto;
    height: 35px;
    object-fit: contain;
}

.footer-logo .logo-text {
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info i {
    color: #333;
    width: 20px;
}

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

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

.social-link:hover {
    transform: translateY(-5px);
    background: #555;
}

.footer-bottom {
    border-top: 1px solid rgba(51, 51, 51, 0.3);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #333;
    font-weight: 500;
}

.kvkk-link {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kvkk-link:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.close-modal {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.modal-body {
    padding: 30px;
}

.service-details {
    display: grid;
    gap: 25px;
}

.service-description h4,
.service-features h4,
.contact-info-modal h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

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

.contact-details {
    background: var(--cream);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.contact-details p {
    margin: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--primary-green);
    width: 20px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.call-btn {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(143, 166, 142, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes musicPulse {
    0%, 100% { transform: scale(1.15) rotate(10deg); }
    25% { transform: scale(1.25) rotate(15deg); }
    50% { transform: scale(1.15) rotate(10deg); }
    75% { transform: scale(1.25) rotate(5deg); }
}

@keyframes gentleFloat {
    0%, 100% { transform: scale(1.15) rotate(10deg) translateY(0px); }
    50% { transform: scale(1.15) rotate(10deg) translateY(-8px); }
}

@keyframes dramaticSpin {
    0% { transform: scale(1.15) rotate(10deg); }
    50% { transform: scale(1.25) rotate(180deg); }
    100% { transform: scale(1.15) rotate(360deg); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Contact section responsiveness */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .whatsapp-header {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }
    
    .floating-elements {
        display: none; /* Hide floating elements on mobile to reduce clutter */
    }
    
    .stats-bubble {
        display: none; /* Mobil görünümde 500+ Mutlu Çocuk balonunu gizle */
    }
    
    .scroll-indicator {
        display: none; /* Mobil görünümde Aşağı Kaydır göstergesini gizle */
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-background {
        opacity: 0.15; /* Make background less prominent on mobile */
        height: 100%;
    }
    
    .hero-shapes {
        height: 100%;
    }
    
    .hero-shapes .shape {
        transform: scale(0.3); /* Make shapes smaller on mobile */
    }
    
    .hero-particles {
        display: none; /* Hide particles on mobile */
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    /* Contact section improvements for smaller screens */
    .contact {
        padding: 60px 0;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-section {
        padding: 1.5rem;
    }
    
    .hero-visual {
        height: 150px; /* Even smaller for smallest screens */
        margin-bottom: 0;
    }
    
    .hero-image-container {
        width: 120px;
        height: 120px;
    }
    
    .illustration-circle {
        width: 90px;
        height: 90px;
    }
    
    .hero-title {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 1rem;
    }
    
    .stats-bubble {
        margin-top: 3rem;
        padding: 10px 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .feature-card,
    .program-card {
        padding: 1.5rem;
    }
}

/* Ek Animasyonlar */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blurIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* Mobil İletişim Butonu (FAB) */
.mobile-contact-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: block; /* Her zaman görünsün */
}

.fab-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(107, 138, 106, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    position: relative;
    z-index: 2;
}

.fab-button i {
    transition: transform 0.3s ease;
}

.fab-button.active i {
    transform: rotate(45deg);
}

.fab-button:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(107, 138, 106, 0.3);
    z-index: -1;
    animation: pulse-animation 2s infinite;
}

.fab-button:hover, .fab-button:focus {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(107, 138, 106, 0.5);
}

.fab-menu {
    position: absolute;
    bottom: 65px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.fab-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 40px;
    justify-content: center;
}

.fab-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fab-item:hover .fab-label, .fab-item:focus .fab-label {
    opacity: 1;
    max-width: 120px;
    margin-right: 5px;
}

.fab-item.whatsapp:hover {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.fab-item.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.fab-item.email:hover {
    background: linear-gradient(45deg, #4285F4, #DB4437);
    color: white;
}

.fab-item.maps:hover {
    background: linear-gradient(45deg, #4285F4, #34A853);
    color: white;
}

.fab-item.phone:hover {
    background: linear-gradient(45deg, #4285F4, #34A853);
    color: white;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Ekran boyutuna göre FAB ayarları */
@media (min-width: 769px) {
    .fab-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: linear-gradient(45deg, rgba(107, 138, 106, 0.85), rgba(107, 138, 106, 0.95));
        opacity: 0.85;
        transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .fab-button:hover {
        opacity: 1;
    }
    
    .mobile-contact-fab {
        bottom: 30px;
        right: 30px;
    }
    
    .fab-menu {
        bottom: 55px;
    }
}
