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

:root {
    /* Modern Minimal Color Palette */
    --primary-color: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3385D6;
    --secondary-color: #ff6700;
    --accent-color: #ff6700;
    --orange-primary: #ff6700;
    --orange-light: #ff6700;
    --orange-dark: #ff6700;
    --orange-accent: #ff6700;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --text-light: #A0AEC0;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7FAFC;
    --bg-light: #EDF2F7;
    --bg-dark: #2D3748;
    
    /* Border and Shadow - Minimal */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
    
    /* Gradients - Subtle */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #3385D6 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6700 0%, #ff6700 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* <span class="fen-color">FEN</span><span class="life-color">life</span> Brand Colors */
.fen-color {
    color: #2483C7;
}

.life-color {
    color: #ff6700;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Smooth Page Transition Animations */
@keyframes pageLoadSmooth {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sayfa yükleme animasyonu sadece main content için */
body > *:not(.navbar) {
    opacity: 0;
    animation: pageLoadSmooth 0.6s ease-out forwards;
}

body.page-exit > *:not(.navbar) {
    animation: pageExitSmooth 0.5s ease-in forwards;
}

@keyframes pageExitSmooth {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Minimal Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 139, 32, 0.03) 0%, transparent 50%);
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6700, #ff6700);
    border-radius: 2px;
}

/* Buttons - Minimal & Smooth */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 8px;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: var(--orange-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* Navigation - Clean & Minimal */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);

}

@keyframes logoGlow {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
    }
    50% { 
        filter: brightness(1.2);
        text-shadow: 0 0 20px rgba(242, 139, 32, 0.6);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
}

.nav-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
    display: block;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    transform: scaleX(0) scaleY(0);
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    opacity: 0.1;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    pointer-events: none;
}

.nav-link:hover::before {
    transform: scaleX(1) scaleY(1);
    opacity: 0.15;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--orange-primary);
    transform: none;
    text-shadow: none;
}

.nav-link.active::before {
    transform: scaleX(1) scaleY(1);
    opacity: 0.2;
}

.nav-link.active::after {
    width: 50px;
    height: 50px;
}

/* Active indicator */
.nav-link.active {
    position: relative;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: var(--shadow-neon);
    animation: activeIndicator 2s ease-in-out infinite;
}

@keyframes activeIndicator {
    0%, 100% { 
        transform: translateX(-50%) scaleX(1);
        box-shadow: var(--shadow-neon);
    }
    50% { 
        transform: translateX(-50%) scaleX(1.2);
        box-shadow: 0 0 25px rgba(99, 102, 241, 0.8);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.nav-toggle::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;
}

.nav-toggle:hover::before {
    left: 100%;
}

.nav-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-neon);
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-toggle:hover .bar:nth-child(1) {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #1e88e5, #2196f3);
}

.nav-toggle:hover .bar:nth-child(2) {
    transform: scaleX(1.1);
    background: linear-gradient(45deg, #2196f3, #ff6700);
}

.nav-toggle:hover .bar:nth-child(3) {
    transform: translateY(2px);
    background: linear-gradient(45deg, #ff6700, #ff6700);
}

/* Hero Slider Main Section */
.hero-slider-main {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -80px;
}

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

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

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.7) 0%, rgba(242, 139, 32, 0.6) 100%);
    z-index: 1;
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0 20px;
}

.hero-content-center {
    text-align: center;
    max-width: 1000px;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: heroTitleSlide 1s ease-out 0.3s backwards;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: heroSubtitleSlide 1s ease-out 0.5s backwards;
}

@keyframes heroSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: heroButtonsSlide 1s ease-out 0.7s backwards;
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    animation: heroStatsSlide 1s ease-out 0.9s backwards;
}

@keyframes heroStatsSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.stat-inline-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-inline-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-divider-inline {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Slider Navigation */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dot.active {
    width: 40px;
    border-radius: 6px;
    background: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design - Hero Slider */
@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-main-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-stats-inline {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-main {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-main-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-main-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-main-buttons .btn {
        width: 100%;
    }
    
    .hero-stats-inline {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-inline-number {
        font-size: 2rem;
    }
    
    .stat-inline-label {
        font-size: 0.875rem;
    }
    
    .stat-divider-inline {
        display: none;
    }
    
    .hero-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-main-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Old Hero Section (hidden) */
.hero-old {
    display: none;
}

/* Hero Section - Minimal & Clean */
.hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-title .highlight-orange {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    color: var(--primary-color);
}

.hero-stats * {
    color: var(--primary-color) !important;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Hero Dashboard - Modern Interactive Cards */
.hero-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    animation: dashboardFadeIn 1s ease-out;
}

@keyframes dashboardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    animation: cardSlideIn 0.6s ease-out backwards;
}

.hero-card:nth-child(1) { animation-delay: 0.1s; }
.hero-card:nth-child(2) { animation-delay: 0.2s; }
.hero-card:nth-child(3) { animation-delay: 0.3s; }
.hero-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Mavi kartlar */
.hero-card.card-blue {
    border-left: 4px solid var(--primary-color);
}

.hero-card.card-blue:hover {
    box-shadow: 0 16px 40px rgba(30, 136, 229, 0.3);
}

/* Turuncu kartlar */
.hero-card.card-orange {
    border-left: 4px solid var(--secondary-color);
}

.hero-card.card-orange:hover {
    box-shadow: 0 16px 40px rgba(255, 106, 0, 0.3);
}

/* Arka planda büyük emoji */
.card-bg-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 4rem;
    opacity: 0.05;
    pointer-events: none;
    animation: bgIconFloat 3s ease-in-out infinite;
}

@keyframes bgIconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-blue .hero-card-icon {
    background: var(--primary-color);
}

.card-orange .hero-card-icon {
    background: var(--secondary-color);
}

.hero-card:hover .hero-card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


.hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-card-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-card-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberCount 2s ease-out;
}

@keyframes numberCount {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkline Mini Chart */
.hero-card-sparkline {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.sparkline-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease-out backwards;
    transition: all 0.3s ease;
}

.hero-card:hover .sparkline-bar {
    background: linear-gradient(to top, var(--secondary-color), var(--accent-color));
}

.sparkline-bar:nth-child(1) { animation-delay: 0.5s; }
.sparkline-bar:nth-child(2) { animation-delay: 0.6s; }
.sparkline-bar:nth-child(3) { animation-delay: 0.7s; }
.sparkline-bar:nth-child(4) { animation-delay: 0.8s; }
.sparkline-bar:nth-child(5) { animation-delay: 0.9s; }

@keyframes barGrow {
    0% { height: 0 !important; }
    100% { height: var(--bar-height); }
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 60px;
    height: 60px;
}

.progress-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 6;
}

.progress-circle {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 6;
    stroke-dasharray: 157;
    stroke-dashoffset: 15.7;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    animation: progressDraw 2s ease-out forwards;
}

@keyframes progressDraw {
    0% { stroke-dashoffset: 157; }
    100% { stroke-dashoffset: 15.7; }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Tags */
.hero-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-tag {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    animation: tagFadeIn 0.5s ease-out backwards;
}

.hero-tag:nth-child(1) { animation-delay: 1s; }
.hero-tag:nth-child(2) { animation-delay: 1.1s; }
.hero-tag:nth-child(3) { animation-delay: 1.2s; }

@keyframes tagFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Card Trends */
.card-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-trend i {
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Emojis */
.hero-card-emojis {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.hero-card-emojis span {
    animation: emojiBounce 2s ease-in-out infinite;
}

.hero-card-emojis span:nth-child(1) { animation-delay: 0s; }
.hero-card-emojis span:nth-child(2) { animation-delay: 0.3s; }
.hero-card-emojis span:nth-child(3) { animation-delay: 0.6s; }

@keyframes emojiBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

/* Card Time */
.card-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.card-time i {
    color: var(--secondary-color);
}

/* Card Pulse Animation */
@keyframes cardPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }
}

/* About <span class="fen-color">FEN</span><span class="life-color">life</span> Section */
.about-fenlife {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-fenlife::before,
.about-fenlife::after,
.about-fenlife .bg-shape-1,
.about-fenlife .bg-shape-2 {
    z-index: -1;
}

.about-fenlife::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 6s ease-in-out infinite;
}

.about-fenlife::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 8s ease-in-out infinite 2s;
}

/* About FENlife - Ek Şekiller */
.about-fenlife .bg-shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 7s ease-in-out infinite 1s;
}

.about-fenlife .bg-shape-2 {
    position: absolute;
    top: 60%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: #ff6700;
    opacity: 0.2;
    animation: float 9s ease-in-out infinite 3s;
}

.about-fenlife .bg-shape-3 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #ff6700;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite 4s;
}

.about-fenlife .bg-shape-4 {
    position: absolute;
    top: 40%;
    left: 80%;
    width: 35px;
    height: 35px;
    background: #ff6700;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite 2s;
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.about-lead strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-icon.orange {
    color: var(--secondary-color);
}

.about-item:hover .about-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.about-item:hover .about-icon.orange {
    background: var(--secondary-color);
}

.about-item-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.about-item-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-image-container {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.badge-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services::before,
.services::after,
.services .bg-shape-1,
.services .bg-shape-2 {
    z-index: -1;
}

.services::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 7s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 70px;
    height: 70px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 9s ease-in-out infinite 3s;
}

/* Services - Ek Şekiller */
.services .bg-shape-1 {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: #ff6700;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite 2s;
}

.services .bg-shape-2 {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid #ff6700;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite 4s;
}

.services .bg-shape-3 {
    position: absolute;
    bottom: 5%;
    left: 50%;
    width: 45px;
    height: 45px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 7s ease-in-out infinite 1s;
}

.services .bg-shape-4 {
    position: absolute;
    top: 70%;
    right: 5%;
    width: 55px;
    height: 55px;
    background: #ff6700;
    opacity: 0.2;
    animation: float 9s ease-in-out infinite 5s;
}

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

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-primary);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.15);
}

.service-card.featured:hover {
    box-shadow: 0 8px 24px rgba(242, 139, 32, 0.2);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-icon.orange {
    color: var(--secondary-color);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-card:hover .service-icon.orange {
    background: var(--secondary-color);
}

.service-card.featured:hover .service-icon {
    background: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.service-card.featured .service-features li i {
    color: var(--secondary-color);
}

.service-card .btn {
    margin-top: auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.features::before,
.features::after,
.features .bg-shape-1,
.features .bg-shape-2 {
    z-index: -1;
}

.features::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 12%;
    width: 90px;
    height: 90px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 8s ease-in-out infinite 1s;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 10%;
    width: 50px;
    height: 50px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 6s ease-in-out infinite 4s;
}

/* Features - Ek Şekiller */
.features .bg-shape-1 {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #ff6700;
    opacity: 0.2;
    animation: float 7s ease-in-out infinite 2s;
}

.features .bg-shape-2 {
    position: absolute;
    top: 60%;
    right: 5%;
    width: 65px;
    height: 65px;
    background: #ff6700;
    opacity: 0.2;
    animation: float 9s ease-in-out infinite 3s;
}

.features .bg-shape-3 {
    position: absolute;
    bottom: 10%;
    right: 30%;
    width: 40px;
    height: 40px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite 5s;
}

.features .bg-shape-4 {
    position: absolute;
    top: 40%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #ff6700;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite 1s;
}

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

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-primary);
}

.feature-card:nth-child(even):hover {
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card:nth-child(even) .feature-icon {
    color: var(--secondary-color);
}

.feature-card:nth-child(even):hover .feature-icon {
    background: var(--secondary-color);
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Programs Preview */
.programs-preview {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

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

.program-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.program-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.15);
}

.program-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(242, 139, 32, 0.2);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.3);
}

.program-image {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.program-card:hover .program-image {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Featured kart turuncu */
.program-card.featured .program-image {
    color: var(--secondary-color);
}

.program-card.featured:hover .program-image {
    background: var(--secondary-color);
    color: white;
}

.program-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    min-height: 1.5rem;
}

.program-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    min-height: 3rem;
    display: flex;
    align-items: flex-start;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
    min-height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.program-features li i {
    color: var(--accent-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.program-card .btn {
    width: 100%;
    margin-top: auto;
    min-height: 3rem;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-light);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.story-image {
    position: relative;
    height: 200px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Farklı arka plan renkleri */
.story-card:nth-child(1) .story-image {
    background: var(--primary-color);
}

.story-card:nth-child(2) .story-image {
    background: var(--secondary-color);
}

.story-card:nth-child(3) .story-image {
    background: var(--primary-light);
}

.student-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Her kart farklı renk */
.story-card:nth-child(1) .story-badge {
    background: var(--primary-color);
}

.story-card:nth-child(2) .story-badge {
    background: var(--secondary-color);
}

.story-card:nth-child(3) .story-badge {
    background: var(--accent-color);
}

.story-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    min-height: 1.5rem;
}

.story-quote {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    min-height: 4.5rem;
    display: flex;
    align-items: flex-start;
}

.story-stats {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.story-stats .stat {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quick Contact Section */
.quick-contact {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.quick-contact::before,
.quick-contact::after {
    z-index: -1;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 8%;
    width: 75px;
    height: 75px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.35;
    animation: float 7s ease-in-out infinite 2s;
}

.quick-contact::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 85px;
    height: 85px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.35;
    animation: float 9s ease-in-out infinite 5s;
}

.quick-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quick-contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.quick-contact-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: #25D366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    font-weight: 500;
}

.whatsapp-btn i {
    font-size: 1.75rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.phone-btn i {
    font-size: 1.25rem;
}

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

.office-hours {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.office-hours i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.office-hours strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.office-hours p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.quick-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.quick-contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form-quick {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

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

.form-row select {
    cursor: pointer;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    z-index: -1;
}

.cta::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 12%;
    width: 80px;
    height: 80px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 8s ease-in-out infinite 3s;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--orange-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: var(--orange-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(242, 139, 32, 0.6);
        transform: scale(1.05);
    }
}

/* Partnerships Section */
.partnerships {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.partner-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo.circular {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.partner-logo.circular svg {
    width: 100%;
    height: 100%;
    display: block;
}

.partner-card:hover .partner-logo.circular {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

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

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #9ca3af;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

/* Footer Contact Links */
.contact-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: white;
    padding-left: 5px;
    text-decoration: underline;
}

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

/* Tel ve mailto linkleri için ekstra stil */
a[href^="tel:"],
a[href^="mailto:"],
a[href*="google.com/maps"] {
    cursor: pointer;
}

.contact-info a[href^="tel:"]:hover,
.contact-info a[href^="mailto:"]:hover,
.contact-info a[href*="google.com/maps"]:hover {
    color: white;
}

.contact-info a:hover ~ i,
.contact-info p:has(a:hover) i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Main Contact Page Links */
.contact-link-main {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-link-main:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-decoration: underline;
    font-weight: 600;
}

.contact-link-main::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-link-main:hover::before {
    opacity: 1;
    left: -25px;
    animation: arrowPulse 0.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design - Mobile First Approach */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Tablet (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: linear-gradient(45deg, #1e88e5, #2196f3);
        box-shadow: 0 0 10px rgba(30, 136, 229, 0.5);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: linear-gradient(45deg, #ff6700, #ff6700);
        box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
    }
    
    /* Mobile menu animation */
    .nav-menu.mobile-open {
        animation: slideDown 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Mobile nav links animation */
    .mobile-open .nav-link {
        animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-fill-mode: both;
    }

    .mobile-open .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .mobile-open .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .mobile-open .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .mobile-open .nav-link:nth-child(4) { animation-delay: 0.4s; }
    .mobile-open .nav-link:nth-child(5) { animation-delay: 0.5s; }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    /* Enhanced Mobile Animations */
    .hero-title {
        animation-duration: 3s;
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .program-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    /* Optimize particle count for mobile */
    .floating-particle {
        display: none;
    }
    
    /* Navigation */
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: linear-gradient(45deg, #1e88e5, #2196f3);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: linear-gradient(45deg, #ff6700, #ff6700);
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }

    .hero-dashboard {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .hero-card {
        padding: 1.25rem;
    }
    
    .hero-card-number {
        font-size: 1.75rem;
    }
    
    .hero-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    /* About <span class="fen-color">FEN</span><span class="life-color">life</span> Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Quick Contact Mobile */
    .quick-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quick-contact-form {
        padding: 2rem;
    }
    
    /* Floating WhatsApp Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    h6 { font-size: 1rem; }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Grids */
    .features-grid,
    .programs-grid,
    .stories-grid,
    .testimonials-slider,
    .exam-grid,
    .stats-grid,
    .categories-grid,
    .reasons-grid,
    .team-grid,
    .mvv-grid,
    .contact-grid,
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards */
    .feature-card,
    .program-card,
    .story-card,
    .testimonial-card,
    .exam-card,
    .stat-card,
    .category-card,
    .reason-card,
    .team-card,
    .mvv-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    /* Forms */
    .form-section {
        padding: 1.5rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    
    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Page Headers */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .page-logo .logo {
        width: 70px;
        height: 70px;
    }
    
    .page-logo .logo-text {
        font-size: 1.5rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-top: 1rem;
        padding: 1.5rem;
    }
    
    /* Process Steps */
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    /* Learning Path */
    .learning-path-visual {
        flex-direction: column;
    }
    
    .path-arrow {
        transform: rotate(90deg);
    }
    
    /* Panel Preview */
    .panel-content {
        padding: 1.5rem;
    }
    
    .subjects-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Success Overview */
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* About Story */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-img {
        width: 150px;
        height: 150px;
    }
    
    /* Team Cards */
    .teacher-img {
        width: 100px;
        height: 100px;
    }
    
    .team-photo {
        height: 200px;
    }
    
    /* Map */
    .map-placeholder {
        padding: 2rem;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    /* Schedule Info */
    .schedule-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Price */
    .price .amount {
        font-size: 2rem;
    }
    
    /* Icons */
    .feature-icon,
    .program-icon,
    .exam-icon,
    .stat-icon,
    .category-icon,
    .reason-icon,
    .contact-icon,
    .mvv-icon,
    .cert-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        animation-duration: 2s;
    }
    
    /* Reduce animation intensity on mobile */
    .feature-icon::before,
    .program-image::before {
        animation-duration: 2s;
    }
    
    /* Progress Circles */
    .progress-circle {
        width: 60px;
        height: 60px;
    }
    
    .progress-circle::before {
        width: 45px;
        height: 45px;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.page-logo .logo {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 12px;
}

.page-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.page-info {
    text-align: center;
}

/* Programs Overview */
.programs-overview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.program-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.program-detail-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}




.program-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
    min-height: 4rem;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

/* Featured programlar turuncu */
.program-detail-card.featured .program-icon {
    background: var(--secondary-color);
}

.program-info h2 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.program-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

.program-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    min-height: 4rem;
    display: flex;
    align-items: flex-start;
}

.program-features h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    min-height: 1.5rem;
}

.program-features ul {
    list-style: none;
    margin-bottom: 2rem;
    min-height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.program-detail-card .program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.program-detail-card .program-features li i {
    color: var(--accent-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.program-schedule h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.schedule-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-item .day {
    font-weight: 500;
    color: var(--text-primary);
}

.schedule-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.program-pricing {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: auto;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Learning Path Section */
.learning-path-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.learning-path-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.path-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.path-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Parent Panel Preview */
.parent-panel-preview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.panel-preview {
    max-width: 800px;
    margin: 0 auto;
}

.panel-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.panel-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    margin: 0;
    color: white;
}

.panel-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.panel-content {
    padding: 2rem;
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.progress-bar {
    position: relative;
    background: var(--bg-secondary);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    background: var(--gradient-primary);
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.subject-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.subject-card h5 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg, var(--primary-color) var(--progress, 0deg), var(--bg-accent) var(--progress, 0deg));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.progress-circle span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: var(--text-primary);
}

.subject-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.badges-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.badges-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.badge-item i {
    color: var(--secondary-color);
}

/* Study Materials */
.study-materials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Small Class Benefits */
.small-class-benefits {
    padding: 80px 0;
    background: var(--bg-primary);
}

.benefits-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.benefits-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.classroom-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.classroom-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.class-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.classroom-content {
    padding: 2rem;
}

.student-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.student-card {
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
}

.student-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 0.5rem;
}

.student-card h5 {
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
}

.student-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.mini-progress {
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    flex: 1;
}

.classroom-features h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--primary-color);
    width: 16px;
}

.benefits-info h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.benefits-list i {
    color: var(--primary-color);
    width: 20px;
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.material-category h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.material-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.material-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.material-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.material-info h4 {
    color: var(--text-primary);
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.material-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.badge-category h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.badge-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.badge-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}


/* Exam Types Section */
.exam-types {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.exam-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.exam-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.exam-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.exam-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.exam-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.exam-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

/* Featured exam turuncu */
.exam-card.featured .exam-icon {
    background: var(--secondary-color);
}

.exam-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.exam-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

.exam-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.exam-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.exam-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.exam-features li i {
    color: var(--accent-color);
    font-size: 1.125rem;
}

.exam-schedule h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.schedule-info {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 4rem;
}

.schedule-days {
    font-weight: 500;
    color: var(--text-primary);
}

.schedule-time {
    color: var(--primary-color);
    font-weight: 600;
}

.exam-pricing {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
}

/* Exam Process Section */
.exam-process {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
 
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Success Statistics */
.success-stats {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Alternatif kartlar turuncu */
.stat-card:nth-child(even) .stat-icon {
    background: var(--secondary-color);
}

.stat-content h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-content p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-detail {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Exam Testimonials */
.exam-testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Exam FAQ */
.exam-faq {
    padding: 80px 0;
    background: var(--bg-primary);
}


/* Success Overview */
.success-overview {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: white;
}

.stat-detail {
    font-size: 0.875rem;
    opacity: 0.8;
    color: white;
}

/* Success Stories Detailed */
.success-stories-detailed {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.story-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.story-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.story-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.student-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.story-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    min-height: 1.5rem;
}

.student-info {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.story-quote {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    min-height: 4.5rem;
    display: flex;
    align-items: flex-start;
}

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

.story-stats .stat-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-height: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.story-stats .stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success Timeline */
.success-timeline {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin: 0 2rem;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-stats span {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Achievement Categories */
.achievement-categories {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Alternatif kategoriler turuncu */
.category-card:nth-child(even) .category-icon {
    background: var(--secondary-color);
}

.category-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.category-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.category-stats .stat {
    text-align: center;
}

.category-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.category-stats .stat-label {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Parent Testimonials */
.parent-testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}


/* About Story Section */
.about-story {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.story-text h2 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
}

.story-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Mission Vision Values */
.mission-vision {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.mvv-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* İkinci kart (Vision) turuncu olsun */
.mvv-card:nth-child(2) .mvv-icon {
    background: var(--secondary-color);
}

.mvv-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-photo {
    height: 100px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.teacher-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Alternatif reason kartları turuncu */
.reason-card:nth-child(2n) .reason-icon {
    background: var(--secondary-color);
}

.reason-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* About Statistics */
.about-statistics {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-content p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-detail {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.cert-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cert-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cert-year {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}


/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Tıklanabilir contact kartları */
.contact-card:has(a[href^="tel:"]):hover,
.contact-card:has(a[href^="mailto:"]):hover,
.contact-card:has(a[href*="google.com/maps"]):hover {
    cursor: pointer;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.contact-card:has(a[href^="tel:"]):hover::after {
    content: '📞 Tıklayın';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: fadeInBounce 0.3s ease-out;
}

.contact-card:has(a[href^="mailto:"]):hover::after {
    content: '✉️ Tıklayın';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: fadeInBounce 0.3s ease-out;
}

.contact-card:has(a[href*="google.com/maps"]):hover::after {
    content: '📍 Haritada Aç';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: fadeInBounce 0.3s ease-out;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* İkinci contact kartı turuncu */
.contact-card:nth-child(2) .contact-icon {
    background: var(--secondary-color);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-card .contact-link-main {
    display: inline-block;
    margin: 0.25rem 0;
}

.contact-card:hover .contact-link-main {
    color: var(--primary-color);
}

/* Contact Forms */
.contact-forms {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.form-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-section h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: 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(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.map-placeholder {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.map-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Form Validation Styles */
.form-group input.touched:invalid {
    border-color: #ef4444;
}

.form-group input.touched:valid {
    border-color: #10b981;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}


/* SEO Optimizations */
/* Structured Data Visual Indicators */
.schema-indicator {
    display: none;
}

/* Rich Snippets Support */
.rating-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.price-display {
    font-weight: 600;
    color: var(--primary-color);
}

.availability-status {
    color: #059669;
    font-weight: 500;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: var(--bg-light);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

/* FAQ Schema Styling */
.faq-schema {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.faq-schema h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-schema .question {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-schema .answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Critical CSS for Above-the-fold */
.hero {
    will-change: transform;
}

.hero-title {
    will-change: transform;
}

/* Image Slider Section */
.image-slider {
    padding: 100px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.6s ease-out;
}

.slide.active .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.slide-overlay p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

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

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.slider-btn:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

/* Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 400px;
    }
    
    .slide-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.5rem;
    }
    
    .slide-overlay p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
        padding: 8px 15px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 24px;
    }
}

@media (max-width: 575px) {
    .slider-wrapper {
        height: 300px;
    }
    
    .slide-overlay h3 {
        font-size: 1.25rem;
    }
    
    .slide-overlay p {
        font-size: 0.875rem;
    }
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-detail.alt {
    background: #FAFAFA;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.service-layout.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-layout.reverse .service-visual {
    order: 2;
}

.service-layout.reverse .service-content {
    order: 1;
}

/* Service Visual */
.service-visual {
    position: relative;
}

.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.05);
}

.service-overlay-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.service-overlay-badge.orange {
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

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

.popular-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* Service Content */
.service-content {
    padding: 20px 0;
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-tag.blue {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
}

.service-tag.orange {
    background: rgba(242, 139, 32, 0.1);
    color: var(--secondary-color);
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-icon.orange {
    background: var(--secondary-color);
}

.highlight-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Service Features Detailed */
.service-features-detailed {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2.5rem;
}

.service-features-detailed h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.service-features-detailed li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features-detailed li:last-child {
    border-bottom: none;
}

.service-features-detailed li i {
    color: #10B981;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Test Types Grid */
.test-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.test-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    text-align: center;
    transition: all 0.3s ease;
}

.test-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
    transform: translateY(-4px);
}

.test-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #0052A3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.test-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.test-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Service CTA */
.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-cta .btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-layout,
    .service-layout.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-layout.reverse .service-visual,
    .service-layout.reverse .service-content {
        order: unset;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 60px 0;
    }
    
    .service-content h2 {
        font-size: 1.75rem;
    }
    
    .service-subtitle {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .test-types-grid {
        grid-template-columns: 1fr;
    }
    
    .service-overlay-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: 20px;
        left: 20px;
    }
    
    .popular-badge {
        top: 20px;
        right: 20px;
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta,
    .nav-toggle,
    .image-slider,
    .whatsapp-float {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: black !important;
        padding: 2rem 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    a {
        text-decoration: underline !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid black !important;
        background: none !important;
        color: black !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ========================================
   PROGRAMLAR SAYFASI - ÖZEL TASARIMLAR
======================================== */

.program-card-section {
    padding: 80px 0;
}

.program-card-section.style-1 {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.program-card-section.style-2 {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.program-card-section.style-3 {
    background: white;
}

/* Program 1: Gradient Card */
.gradient-card {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.card-background-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 102, 204, 0.08) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

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

.float-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatAround 20s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    left: 10%;
    animation-delay: 5s;
}

.float-element:nth-child(3) {
    top: 20%;
    right: 20%;
    animation-delay: 10s;
}

.float-element:nth-child(4) {
    bottom: 15%;
    right: 15%;
    animation-delay: 15s;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(0, -40px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

.program-card-content {
    position: relative;
    z-index: 1;
}

.program-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gradient-badge {
    background: linear-gradient(135deg, #0066CC, #0052A3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.summer-badge {
    background: linear-gradient(135deg, #ff6700, #ff6700);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
    margin-top:2rem
}

.program-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.program-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-icon.blue {
    background: linear-gradient(135deg, #0066CC, #0052A3);
}

.program-icon.orange {
    background: linear-gradient(135deg, #ff6700, #ff6700);
}

.program-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.program-title.centered {
    text-align: center;
}

.title-pre {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, #0066CC, #0052A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text.orange {
    background: linear-gradient(135deg, #ff6700, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-description {
    font-size: 1.125rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Grid */
.program-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    background: linear-gradient(145deg, #ffffff, #f1f8ff);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-text h4 {
    color: var(--primary-color);
}

.feature-box:hover .feature-text p {
    color: var(--text-primary);
}

/* Program Stats */
.program-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 16px;
    margin-bottom: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #E5E7EB;
}

/* Program 2: Split Card */
.split-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.split-card-left {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.stack-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stack-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stack-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.badge-icon {
    font-size: 1.5rem;
}

.stack-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

.info-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}


/* Features List Modern */
.features-list.modern {
    margin-bottom: 2.5rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
    height: 75px;
}

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

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.item-icon.orange {
    background: var(--secondary-color);
}

.item-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.item-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing */
.program-pricing {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);

    border-radius: 16px;

}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Program 3: Premium Card */
.premium-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.premium-card-header {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.deco-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.deco-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.premium-card-header .program-title {
    color: white;
    margin-bottom: 1rem;
}

.premium-card-header .program-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.premium-card-body {
    padding: 4rem 3rem;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid;
}

.info-card.blue {
    background: rgba(0, 102, 204, 0.05);
    border-color: #0066CC;
}

.info-card.orange {
    background: rgba(242, 139, 32, 0.05);
    border-color: #ff6700;
}

.info-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-card.blue .card-icon {
    background: linear-gradient(135deg, #0066CC, #0052A3);
    color: white;
}

.info-card.orange .card-icon {
    background: linear-gradient(135deg, #ff6700, #ff6700);
    color: white;
}

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

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.info-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.info-card.blue ul li::before {
    color: #0066CC;
}

.info-card.orange ul li::before {
    color: #ff6700;
}

/* Timeline */
.timeline-info {
    margin-bottom: 3rem;
}

.timeline-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066CC, #0052A3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Result Showcase */
.result-showcase {
    background: #F8F9FA;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.result-showcase h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.result-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.result-percentage {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066CC, #0052A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Program Highlights */
.program-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.premium-card-footer {
    background: #F8F9FA;
    padding: 3rem;
}

/* Program CTA */
.program-cta {
    text-align: center;
}

.program-cta.centered {
    text-align: center;
}

.btn-animated {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
}

.btn-animated i {
    transition: transform 0.3s ease;
}

.btn-animated:hover i {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .program-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.375rem;
    }
    
    .split-card {
        grid-template-columns: 1fr;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .program-card-section {
        padding: 60px 0;
    }
    
    .gradient-card,
    .split-card-left,
    .split-card-right,
    .premium-card-header,
    .premium-card-body,
    .premium-card-footer {
        padding: 2rem;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .program-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .result-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-highlights {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========================================
   BAŞARI HİKAYELERİ - YENİ TASARIM
======================================== */

.success-stories-new {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 50%, #F7FAFC 100%);
    overflow: hidden;
}

.success-stories-new::before,
.success-stories-new::after {
    z-index: -1;
}

.success-stories-new::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 7s ease-in-out infinite 1s;
}

.success-stories-new::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 90px;
    height: 90px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 9s ease-in-out infinite 4s;
}

.success-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 139, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066CC, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Featured Slider Container */
.featured-slider-container {
    position: relative;
    margin-bottom: 5rem;
}

.featured-slider-wrapper {
    position: relative;
    overflow: hidden;
}

/* Featured Story */
.featured-story {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: none;
}

.featured-story.active {
    opacity: 1;
    display: grid;
    animation: storyFadeIn 0.8s ease-out;
}

@keyframes storyFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-story::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(242, 139, 32, 0.02));
    border-radius: 30px;
}

.featured-story-image {
    position: relative;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: -1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #0066CC, #0052A3);
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: -10px;
    background: linear-gradient(135deg, #ff6700, #ff6700);
    animation: float 5s ease-in-out infinite 1s;
}

.circle-3 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: -10px;
    background: linear-gradient(135deg, #10B981, #059669);
    animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.featured-story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.featured-story-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-tag {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.story-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.story-grade {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.quote-box {
    position: relative;
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    padding-left: 40px;
    font-style: italic;
}

/* Achievement Boxes */
.achievement-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.achievement-box {
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.box-blue {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
}

.box-orange {
    background: linear-gradient(135deg, #ff6700 0%, #ff6700 100%);
}

.box-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.achievement-info {
    flex: 1;
}

.achievement-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.achievement-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Success Carousel */
.success-carousel {
    margin-bottom: 4rem;
}

.carousel-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.success-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.success-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.student-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-basic-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.student-basic-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.success-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.badge-silver {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.badge-bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.card-body {
    flex: 1;
}

.card-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.card-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #F8F9FA;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-achievement i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Featured Slider Navigation */
.featured-prev,
.featured-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-prev:hover,
.featured-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.3);
}

.featured-prev {
    left: -20px;
}

.featured-next {
    right: -20px;
}

/* Featured Slider Dots */
.featured-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.featured-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.featured-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.featured-dot.active {
    width: 50px;
    border-radius: 7px;
    background: linear-gradient(135deg, #0066CC, #ff6700);
}

/* Success Stats Banner */
.success-stats-banner {
    background: linear-gradient(135deg, #0066CC 0%, #ff6700 100%);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
}

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

.stat-banner-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stat-banner-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.stat-banner-divider {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .achievement-boxes {
        grid-template-columns: 1fr;
    }
    
    .success-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-prev {
        left: 10px;
    }
    
    .featured-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .success-stories-new {
        padding: 60px 0;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .featured-story {
        padding: 2rem;
    }
    
    .story-name {
        font-size: 2rem;
    }
    
    .story-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .success-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .success-stats-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-banner-divider {
        width: 100%;
        height: 2px;
    }
    
    .stat-banner-number {
        font-size: 2.5rem;
    }
    
    .featured-prev,
    .featured-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .featured-prev {
        left: 5px;
    }
    
    .featured-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .story-name {
        font-size: 1.5rem;
    }
    
    .carousel-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   GALERİ SAYFASI
======================================== */

.gallery-filter-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.filter-btn i {
    font-size: 1.125rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #F7FAFC;
}

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

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.gallery-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.gallery-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gallery-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-image:hover .gallery-expand {
    opacity: 1;
    transform: scale(1);
}

.gallery-expand:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Press Items Special Style */
.press-item .gallery-overlay {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(242, 139, 32, 0.85) 100%);
}

.press-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.press-date {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Gallery Load More */
.gallery-load-more {
    text-align: center;
    margin-top: 4rem;
}

.gallery-load-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .filter-buttons {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image img {
        height: 250px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   ABOUT STORY - SIMPLE TEXT WITH ANIMATIONS
======================================== */

.about-story-simple {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 50%, #FFFFFF 100%);
    overflow: hidden;
}

/* Floating Emoji Decorations */
.story-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-emoji {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    animation: emojiFloat 8s ease-in-out infinite;
}

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

.emoji-2 {
    top: 30%;
    right: 8%;
    animation-delay: 1s;
}

.emoji-3 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.emoji-4 {
    top: 80%;
    right: 15%;
    animation-delay: 3s;
}

.emoji-5 {
    top: 45%;
    right: 5%;
    animation-delay: 4s;
}

.emoji-6 {
    bottom: 10%;
    left: 15%;
    animation-delay: 5s;
}

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

/* Story Simple Content */
.story-simple-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-title-elegant {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #0066CC, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text-box {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.story-paragraph {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.story-paragraph.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.story-paragraph strong {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-success {
    background: linear-gradient(135deg, #ff6700, #ff6700);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
}

/* Story Highlight Box */
.story-highlight-box {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(242, 139, 32, 0.05));
    border: 2px solid;
    border-image: linear-gradient(135deg, #0066CC, #ff6700) 1;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066CC, #ff6700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.highlight-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066CC, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Story Stats Row */
.story-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #0066CC, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-story-simple {
        padding: 60px 0;
    }
    
    .story-title-elegant {
        font-size: 2rem;
    }
    
    .story-text-box {
        padding: 2rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .story-paragraph.lead {
        font-size: 1.125rem;
    }
    
    .story-highlight-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }
    
    .highlight-content h3 {
        font-size: 1.5rem;
    }
    
    .highlight-content p {
        font-size: 1rem;
    }
    
    .story-stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .deco-emoji {
        font-size: 3rem;
    }
}

/* ========================================
   FENLIFE MODELİ SECTION
======================================== */

.fenlife-model {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.fenlife-model::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%230066CC" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.model-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.model-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0066CC, #ff6700);
    -webkit-background-clip: text;
 
    background-clip: text;
}

.model-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.model-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

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

.model-card:hover::before {
    height: 6px;
}

.model-l::before {
    background: linear-gradient(135deg, #0066CC, #0052A3);
}

.model-i::before {
    background: linear-gradient(135deg, #ff6700, #ff6700);
}

.model-f::before {
    background: linear-gradient(135deg, #10B981, #059669);
}

.model-e::before {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.model-card-header {
    margin-bottom: 1.5rem;
}

.model-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.model-l .model-card-title {
    color: #0066CC;
}

.model-i .model-card-title {
    color: #ff6700;
}

.model-f .model-card-title {
    color: #10B981;
}

.model-e .model-card-title {
    color: #8B5CF6;
}

.model-card-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.model-card-content p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .fenlife-model {
        padding: 60px 0;
    }
    
    .model-title {
        font-size: 2rem;
    }
    
    .model-description {
        font-size: 1rem;
    }
    
    .model-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .model-card {
        padding: 1.5rem;
    }
    
    .model-card-title {
        font-size: 1.5rem;
    }
}
