﻿/* Genel Ayarlar */
:root {
    --primary-color: #7695FF;
    --secondary-color: #9bb993;
    --accent-color: #ff8000;
    --purple: #A8E6CF;
    --orange: #FFB347;
    --blue: #87CEEB;
    --pink: #FF85B3;
    --green: #77DD77;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #F0F4FF 20%, #F1F1F1 80%);
    overflow-x: hidden;
    min-height: 100vh;
}

    /* Sadece anasayfa dışındaki sayfalar için padding */
    body:not(.home-page) {
        padding-top: 80px;
    }

/* Navbar */
.navbar-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(118, 149, 255, 0.85);
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.9), rgba(157, 189, 255, 0.9));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 25px rgba(118, 149, 255, 0.35);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 1050;
    min-height: 70px;
    transform: translateZ(0);
    will-change: transform;
}

    /* Navbar container */
    .navbar-glass .container,
    .navbar-glass .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        padding-bottom: 10px;
    }

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

    .navbar-brand img {
        max-height: 50px;
        height: 50px;
        width: auto;
        transition: transform 0.4s ease, filter 0.4s ease;
        filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.15));
    }

    .navbar-brand:hover img {
        transform: scale(1.08) rotate(-4deg);
    }

/* Nav Links - Desktop */
.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    list-style: none;
}

.nav-link {
    position: relative;
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 0.6rem 1.2rem !important;
    border-radius: 30px;
    transition: all 0.35s ease;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transform: translateX(-50%);
        transition: width 0.4s ease;
    }

    .nav-link:hover::after {
        width: 60%;
    }

    .nav-link.active::after {
        width: 60%;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

/* Hamburger Menu */

.navbar-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    outline: none !important;
    box-shadow: none !important;
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 1051;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2) !important;
        border: none !important;
    }


/* Hamburger Icon Container - Modern & Smooth */
.hamburger-icon {
    width: 26px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

    .hamburger-icon span {
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transform-origin: center center;
        position: absolute;
        left: 0;
    }

        .hamburger-icon span:nth-child(1) {
            top: 0;
        }

        .hamburger-icon span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-icon span:nth-child(3) {
            bottom: 0;
        }

/* Hamburger hover efekti - kapalı durum */
.navbar-toggler:hover .hamburger-icon span:nth-child(1) {
    top: -2px;
}

.navbar-toggler:hover .hamburger-icon span:nth-child(3) {
    bottom: -2px;
}

/* Hamburger to X animation - Gelişmiş */
.navbar-toggler[aria-expanded="true"] .hamburger-icon span {
    background: #fff;
}

    .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        animation: hamburgerTopOpen 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
        animation: hamburgerMiddleOpen 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
        animation: hamburgerBottomOpen 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

/* Hamburger hover - açık durum */
.navbar-toggler[aria-expanded="true"]:hover .hamburger-icon span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg) scale(1.08);
}

.navbar-toggler[aria-expanded="true"]:hover .hamburger-icon span:nth-child(3) {
    transform: translateY(50%) rotate(-45deg) scale(1.08);
}

/* Hamburger animasyonları */
@keyframes hamburgerTopOpen {
    0% {
        top: 0;
        transform: translateY(0) rotate(0);
    }

    50% {
        top: 50%;
        transform: translateY(-50%) rotate(0);
    }

    100% {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
}

@keyframes hamburgerMiddleOpen {
    0% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scaleX(0.5);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }
}

@keyframes hamburgerBottomOpen {
    0% {
        bottom: 0;
        transform: translateY(0) rotate(0);
    }

    50% {
        bottom: 50%;
        transform: translateY(50%) rotate(0);
    }

    100% {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
}

/* Pulse efekti - menü açıkken */
.navbar-toggler[aria-expanded="true"]::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    animation: hamburgerPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes hamburgerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}


/* Mobile Menu Collapse - Modern Animation */
.navbar-collapse {
    transition: none !important;
}

/* RESPONSIVE NAVBAR */

@media (max-width: 992px) {
    .navbar-glass {
        padding: 0.5rem 0;
        min-height: 60px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(118, 149, 255, 0.98), rgba(157, 189, 255, 0.98));
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-radius: 0 0 20px 20px;
        margin: 0;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .navbar-collapse.show {
            max-height: 500px;
            opacity: 1;
            padding: 1.5rem;
            transform: translateY(0);
            animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-collapse.collapsing {
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

    /* Menu slide-in animation */
    @keyframes menuSlideIn {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        text-align: center;
        padding: 1rem 1.5rem !important;
        margin: 0.3rem 0;
        border-radius: 15px;
        font-size: 1.05rem;
        background: rgba(255, 255, 255, 0.1);
        width: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateX(-20px);
        animation: menuItemFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Menü linkleri için sıralı animasyon */
    .navbar-collapse.show .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .navbar-collapse.show .nav-link:nth-child(2) {
        animation-delay: 0.15s;
    }

    .navbar-collapse.show .nav-link:nth-child(3) {
        animation-delay: 0.2s;
    }

    .navbar-collapse.show .nav-link:nth-child(4) {
        animation-delay: 0.25s;
    }

    .navbar-collapse.show .nav-link:nth-child(5) {
        animation-delay: 0.3s;
    }

    .navbar-collapse.show .nav-link:nth-child(6) {
        animation-delay: 0.35s;
    }

    @keyframes menuItemFadeIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.25);
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-link.active {
        font-weight: 700;
    }
}

@media (max-width: 576px) {
    .navbar-glass {
        padding: 0.3rem 0;
        min-height: 55px;
    }

    .navbar-brand img {
        max-height: 40px;
        height: 40px;
    }

    .navbar-collapse {
        padding: 1rem;
        border-radius: 0 0 15px 15px;
    }

        .navbar-collapse.show {
            padding: 1rem;
        }

    .nav-link {
        padding: 0.9rem 1.2rem !important;
        font-size: 1rem;
    }

    .hamburger-icon {
        width: 26px;
        height: 20px;
    }

    .navbar-toggler {
        width: 45px;
        height: 45px;
    }
}


/* Main Content */
.main-content {
    min-height: calc(100vh - 250px);
    padding-top: 0;
}

/* HERO SLIDER */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

    .hero-slider .carousel-item {
        height: 100vh;
        min-height: 650px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: block;
        opacity: 0;
        transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.8s ease;
    }

        /* Aktif slide - görünür ve ortada */
        .hero-slider .carousel-item.active,
        .hero-slider .carousel-item-next.carousel-item-start,
        .hero-slider .carousel-item-prev.carousel-item-end {
            transform: translateX(0);
            opacity: 1;
        }

        /* Aktif slide pozisyon ayarı */
        .hero-slider .carousel-item.active {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

    /* İLERİ GEÇİŞ ANIMASYONU (1→2, 2→3, 3→1) */
    /* Yeni slide sağdan gelir */
    .hero-slider .carousel-item-next {
        transform: translateX(100%);
        opacity: 1;
    }

        /* Geçiş başladığında yeni slide ortaya kayar */
        .hero-slider .carousel-item-next.carousel-item-start {
            transform: translateX(0);
        }

    /* Eski slide soldan çıkar */
    .hero-slider .active.carousel-item-start {
        transform: translateX(-100%);
    }

    /* GERİ GEÇİŞ ANIMASYONU (3→2, 2→1, 1→3) */
    /* Yeni slide soldan gelir */
    .hero-slider .carousel-item-prev {
        transform: translateX(-100%);
        opacity: 1;
    }

        /* Geçiş başladığında yeni slide ortaya kayar */
        .hero-slider .carousel-item-prev.carousel-item-end {
            transform: translateX(0);
        }

    /* Eski slide sağdan çıkar */
    .hero-slider .active.carousel-item-end {
        transform: translateX(100%);
    }

/* Background with Ken Burns Effect */
.slide-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.carousel-item.active .slide-bg {
    transform: scale(1);
    filter: brightness(1);
}

/* Modern Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(118,149,255,0.35) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

    .hero-overlay::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 80%, rgba(118,149,255,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(157,189,255,0.15) 0%, transparent 50%);
        animation: overlayPulse 8s ease-in-out infinite;
    }

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

/* Slide Content Container */
.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding-left: 1rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideContentIn 1s ease-out 0.3s forwards;
}

@keyframes slideContentIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Label Badge */
.slide-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    padding: 10px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

    .slide-label::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    to {
        left: 100%;
    }
}

/* Modern Title */
.slide-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

/* Description Text */
.slide-text {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 45px;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    max-width: 600px;
}

/* Action Buttons */
.slide-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-main {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
    color: #2d4a7c;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

    .btn-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #ff8000 0%, #ff8822 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .btn-main:hover {
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(255,88,22,0.4);
    }

        .btn-main:hover::before {
            opacity: 1;
        }

    .btn-main i {
        transition: transform 0.3s ease;
    }

    .btn-main:hover i {
        transform: translateX(5px);
    }

.btn-outline {
    position: relative;
    border: 2.5px solid rgba(255,255,255,0.9);
    color: #fff;
    background: transparent;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    display: inline-block;
}

    .btn-outline::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.95);
        transition: left 0.5s ease;
        z-index: -1;
    }

    .btn-outline:hover {
        color: #2d4a7c;
        border-color: #fff;
        transform: translateY(-4px);
    }

        .btn-outline:hover::before {
            left: 0;
        }

/* Premium Navigation Arrows */
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    cursor: pointer;
    font-size: 1.3rem;
    opacity: 0.8;
}

    .hero-prev:hover, .hero-next:hover {
        background: rgba(255,255,255,0.3);
        border-color: rgba(255,255,255,0.5);
        transform: translateY(-50%) scale(1.15);
        opacity: 1;
        box-shadow: 0 8px 30px rgba(255,255,255,0.25);
    }

.hero-prev {
    left: 45px;
}

.hero-next {
    right: 45px;
}

/* Modern Progress Indicators */
.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 11;
    padding: 12px 20px;
    background: rgba(0,0,0,0.25);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

    .hero-indicators button {
        width: 45px;
        height: 5px;
        border: none;
        border-radius: 3px;
        background: rgba(255,255,255,0.35);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

        .hero-indicators button.active {
            background: rgba(255,255,255,0.95);
            width: 70px;
            box-shadow: 0 0 20px rgba(255,255,255,0.4);
        }

.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #FFE66D);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 6px;
            background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
            border-radius: 10px;
        }

    .section-title p {
        color: #666;
        font-size: 1.2rem;
        font-weight: 500;
    }

/* Cards - Modern & Playful */
.card {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .card:hover::before {
        opacity: 1;
    }

    .card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

/* Testimonials - Cute Bubbles */
.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 35px;
    border-radius: 30px;
    margin-bottom: 20px;
    border-left: 6px solid;
    border-image: linear-gradient(180deg, #FF6B6B, #4ECDC4) 1;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

    .testimonial-card::before {
        content: '❝';
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 80px;
        color: #FF6B6B;
        opacity: 0.2;
        font-family: Georgia, serif;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    }

.testimonial-author {
    font-weight: 700;
    color: #667eea;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Education Section - Fun Cards */
.education-item {
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .education-item::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #FFE66D, #A8E6CF);
        background-size: 400% 400%;
        z-index: 0;
        transition: opacity 0.5s ease;
        opacity: 0;
        animation: gradientShift 15s ease infinite;
    }

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.education-item:hover::before {
    opacity: 1;
}

.education-item:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.education-item * {
    position: relative;
    z-index: 1;
}

.education-item i {
    font-size: 4rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.education-item:hover i {
    transform: scale(1.2) rotate(10deg);
    -webkit-text-fill-color: #fff;
}

.education-item:hover h4,
.education-item:hover p {
    color: #fff;
}

/* SSS Akordiyon */
.accordion-button {
    font-weight: 700;
    font-size: 1.15rem;
    padding: 20px 25px;
    border-radius: 20px !important;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .accordion-button::after {
        transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg) scale(1.2);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
        border-color: rgba(102, 126, 234, 0.5);
    }

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-body {
    padding: 25px;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

/* Fotoğraf Galeri */
.photo-album {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .photo-album img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .photo-album:hover img {
        transform: scale(1.15) rotate(3deg);
    }

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.95), transparent);
    padding: 25px;
    color: #fff;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.photo-album:hover .album-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(255, 107, 107, 0.95), rgba(78, 205, 196, 0.7));
}

/* Video Kartları */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    }

    .video-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .video-card:hover img {
        transform: scale(1.1);
    }

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #fff;
    opacity: 0.9;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.5);
}

/* Belge Düzeni */
.document-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

    .document-item img:hover {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    }

/* Iletişim Formu */
.contact-form {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

    .contact-form .form-control {
        border-radius: 15px;
        padding: 15px 20px;
        border: 3px solid #e0e7ff;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

        .contact-form .form-control:focus {
            border-color: #7695FF;
            box-shadow: 0 5px 20px rgba(118, 149, 255, 0.2);
            transform: translateY(-2px);
        }

    .contact-form label {
        font-weight: 600;
        color: #4b5563;
        margin-bottom: 8px;
    }

.contact-map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

/* Buttonlar */
.btn-primary {
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(118, 149, 255, 0.3);
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-primary:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 30px rgba(118, 149, 255, 0.5);
    }

.btn-outline-primary {
    border: 3px solid #7695FF;
    color: #7695FF;
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background: linear-gradient(135deg, #7695FF, #9DBDFF);
        border-color: transparent;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(118, 149, 255, 0.4);
    }

/* Footer */
.footer-modern {
    position: relative;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    background: #1e2a4a;
    background-image: url('/images/footer-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

/* Üstüne hafif tonlu degrade */
.footer-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 40, 72, 0.9) 0%, rgba(24, 40, 72, 0.7) 50%, rgba(24, 40, 72, 0.5) 100%);
    z-index: 1;
}

/* Içerik */
.footer-content {
    position: relative;
    z-index: 2;
    flex: 1; /* Kalan alanı kapla */
    padding: 80px 0 40px 0;
}

/* Alt kısım */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-bottom a {
        color: #ffe47a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
            color: #ffd700;
        }

    .footer-bottom .designed {
        opacity: 0.85;
        font-style: italic;
    }

/* Metin ve başlıklar */
.footer-logo img {
    filter: brightness(1.1);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 320px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
}

    .footer-title::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: #ffe47a;
        margin-top: 6px;
        border-radius: 2px;
    }

/* Linkler */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: #f1f1f1;
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.95rem;
    }

        .footer-links a i {
            color: #ffe47a;
            margin-right: 6px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffe47a;
            padding-left: 4px;
        }

/* Sosyal medya ikonları */
.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .footer-social a:hover {
        transform: translateY(-5px) scale(1.15);
        color: #ffe47a;
        text-shadow: 0 0 10px #ffe47a;
    }

/* Iletişim */
.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffe47a;
}

.footer-contact a {
    color: #f3f3f3;
    text-decoration: none;
}

    .footer-contact a:hover {
        color: #ffe47a;
    }

.footer-hours h6 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

/* Alt kısım */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

    .footer-bottom a {
        color: #ffe47a;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

    .footer-bottom .designed {
        opacity: 0.85;
        font-style: italic;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        margin: 6px auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

        .footer-bottom .container {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Page Headers */
.bg-primary {
    background: linear-gradient(135deg, #7695FF 0%, #9DBDFF 100%) !important;
    position: relative;
    overflow: hidden;
}

    .bg-primary::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient( 45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 40px );
        animation: slidePattern 20s linear infinite;
    }

@keyframes slidePattern {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

/* Alert */
.alert {
    border: none;
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #A8E6CF, #77DD77);
    color: #fff;
}

.alert-info {
    background: linear-gradient(135deg, #9DBDFF, #7695FF);
    color: #fff;
}

/* Loading State */
body.loading {
    cursor: wait;
}

    body.loading::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(118, 149, 255, 0.9), rgba(157, 189, 255, 0.9));
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Scroll Top Button - Fun */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(118, 149, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

    #scrollTopBtn:hover {
        transform: translateY(-8px) scale(1.1);
        box-shadow: 0 15px 40px rgba(118, 149, 255, 0.6);
        animation: bounce 0.6s ease infinite;
    }

/* Badge & Tags */
.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

/* Programlar */
.programs-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.section-header {
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.15), rgba(157, 189, 255, 0.15));
    color: #7695FF;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.program-card {
    background: #fff;
    border-radius: 30px;
    padding: 45px 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .program-card:hover::before {
        transform: scaleX(1);
    }

    .program-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(118, 149, 255, 0.2);
        border-color: rgba(118, 149, 255, 0.1);
    }

    .program-card.featured {
        background: linear-gradient(135deg, #7695FF 0%, #9DBDFF 100%);
        color: #fff;
        transform: scale(1.05);
    }

        .program-card.featured .program-title,
        .program-card.featured .program-description,
        .program-card.featured .program-features li,
        .program-card.featured .program-link {
            color: #fff;
        }

        .program-card.featured:hover {
            transform: translateY(-15px) scale(1.05);
        }

.program-icon-wrapper {
    margin-bottom: 30px;
}

.program-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto;
}

.gradient-1 {
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
}

.gradient-2 {
    background: linear-gradient(135deg, #ff8000, #ffa040);
}

.gradient-3 {
    background: linear-gradient(135deg, #9DBDFF, #7695FF);
}

.program-card.featured .program-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.program-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.program-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .program-features li {
        padding: 10px 0;
        color: #4b5563;
        font-weight: 500;
    }

        .program-features li i {
            color: #7695FF;
            margin-right: 12px;
            font-size: 0.9rem;
        }

.program-card.featured .program-features li i {
    color: #fff;
}

.program-link {
    display: inline-flex;
    align-items: center;
    color: #7695FF;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .program-link:hover {
        gap: 10px;
        color: #ff8000;
    }

/* Veli Yorumları */
.testimonials-simple-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.section-subtitle-simple {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.15), rgba(157, 189, 255, 0.15));
    color: #7695FF;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-simple {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 60px;
}

.testimonial-simple-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

    .testimonial-simple-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(118, 149, 255, 0.15);
        border-color: rgba(118, 149, 255, 0.2);
    }

.testimonial-simple-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-simple-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-simple-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.testimonial-simple-rating {
    color: #ff8000;
    font-size: 0.85rem;
}

    .testimonial-simple-rating i {
        margin-right: 2px;
    }

.testimonial-simple-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-simple-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.15), rgba(157, 189, 255, 0.15));
    color: #7695FF;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* SSS */
.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-intro {
    position: sticky;
    top: 100px;
}

.faq-intro-text {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(118, 149, 255, 0.3);
}

    .btn-modern-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(118, 149, 255, 0.4);
        color: #fff;
    }

.modern-accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.modern-accordion-button {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    background: #fff;
    border: none;
    transition: all 0.3s ease;
}

    .modern-accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #7695FF, #9DBDFF);
        color: #fff;
        box-shadow: none;
    }

    .modern-accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237695FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transition: transform 0.3s ease;
    }

    .modern-accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(180deg);
    }

    .modern-accordion-button:focus {
        box-shadow: none;
        border: none;
    }

.modern-accordion-body {
    padding: 25px 30px;
    background: #fff;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
}

/* CTA Randevu */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-background {
    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 1440 320"><path fill="%237695FF" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.95) 0%, rgba(157, 189, 255, 0.95) 50%, rgba(154, 184, 146, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-cta {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: #fff;
    color: #7695FF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        color: #7695FF;
    }

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

    .btn-cta-outline:hover {
        background: #fff;
        color: #7695FF;
        border-color: #fff;
        transform: translateY(-3px);
    }

.cta-trust-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

    .trust-badge i {
        font-size: 1.5rem;
    }

/* Responsive */
@media (max-width: 992px) {
    .section-title-modern {
        font-size: 2.5rem;
    }

    .program-card.featured {
        transform: scale(1);
    }

    .faq-intro {
        position: static;
        margin-bottom: 50px;
    }

    .section-title-simple {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .section-title-modern {
        font-size: 2rem;
    }

    .program-card {
        padding: 35px 25px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .section-title-simple {
        font-size: 1.8rem;
    }

    .testimonial-simple-card {
        padding: 25px;
    }

    .modern-control-prev,
    .modern-control-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .modern-control-prev {
        left: 20px;
    }

    .modern-control-next {
        right: 20px;
    }
}

/* ===== MODERN SAYFA STİLLERİ ===== */

/* Modern Page Header - Sade & Şık */
.modern-page-header {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #7695FF 0%, #9DBDFF 100%);
    position: relative;
    overflow: hidden;
}

    .modern-page-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
        pointer-events: none;
    }

    .modern-page-header .container {
        position: relative;
        z-index: 2;
    }

.page-subtitle {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.header-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #F0F4FF;
    clip-path: polygon(0 60%, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.1), rgba(157, 189, 255, 0.1));
    color: #7695FF;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
}

.content-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

    .content-text .lead {
        font-size: 1.3rem;
        font-weight: 500;
        color: #1f2937;
        margin-bottom: 20px;
    }

/* Feature Box */
.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(118, 149, 255, 0.15);
        border-color: rgba(118, 149, 255, 0.2);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    border-radius: 30px;
    padding: 60px 50px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(118, 149, 255, 0.15);
    }

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.value-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Showcase - KALDIRILDI */

/* Mission Vision Cards */
.mission-vision-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.mission-card {
    border-color: rgba(118, 149, 255, 0.2);
}

.vision-card {
    border-color: rgba(255, 128, 0, 0.2);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(118, 149, 255, 0.15);
}

.mv-icon-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.mv-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
}

.gradient-primary {
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
}

.gradient-accent {
    background: linear-gradient(135deg, #ff8000, #ffa040);
}

.mv-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.mv-intro {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.mv-list {
    margin-bottom: 40px;
}

.mv-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .mv-item:hover {
        background: #f3f4f6;
        transform: translateX(5px);
    }

.mv-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

    .mv-item-icon.accent {
        background: linear-gradient(135deg, #ff8000, #ffa040);
    }

.mv-item-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.mv-item-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.mv-quote {
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.1), rgba(157, 189, 255, 0.1));
    border-left: 4px solid #7695FF;
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

    .mv-quote.accent-border {
        background: linear-gradient(135deg, rgba(255, 128, 0, 0.1), rgba(255, 160, 64, 0.1));
        border-left-color: #ff8000;
    }

    .mv-quote i {
        font-size: 2rem;
        color: #7695FF;
        opacity: 0.3;
        margin-bottom: 10px;
    }

    .mv-quote.accent-border i {
        color: #ff8000;
    }

    .mv-quote p {
        color: #4b5563;
        font-style: italic;
        font-size: 1rem;
        line-height: 1.7;
        margin: 0;
    }

/* Values Grid */
.values-grid {
    margin-top: 80px;
    padding: 60px 0;
}

.value-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .value-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(118, 149, 255, 0.15);
        border-color: rgba(118, 149, 255, 0.2);
    }

.value-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.1), rgba(157, 189, 255, 0.1));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7695FF;
    font-size: 2rem;
    margin-bottom: 20px;
}

.value-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.value-box p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Simple */
.cta-simple {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.cta-simple-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
}

.cta-simple-text {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.cta-simple-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Genel stil */
.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary (dolu) */
.btn-modern-primary {
    color: #fff;
    background: linear-gradient(135deg, rgb(118, 149, 255) 0%, rgb(157, 189, 255) 100%);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.3);
    border: none;
}

    .btn-modern-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    }

/* Outline (kenarlıklı) */
.btn-modern-outline {
    color: rgb(157, 189, 255);
    border: 2px solid rgb(118, 149, 255),;
    background: transparent;
    box-shadow: none;
}

    .btn-modern-outline:hover {
        background: rgb(157, 189, 255);
        color: #fff;
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
        transform: translateY(-3px);
    }

/* Hover ışık efekti */
.btn-modern::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: all 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

/* Ikon stili */
.btn-modern i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(118, 149, 255, 0.2);
    }

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.gallery-content {
    padding: 25px;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.gallery-count {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
}

.video-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

    .video-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(118, 149, 255, 0.2);
    }

.video-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7695FF;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.video-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.2);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.video-info {
    padding: 25px;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.video-description {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}
/* ===== EĞİTİMLER SAYFASI STİLLERİ ===== */

.education-programs-section {
    padding: 80px 0;
}

.education-detail-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

    .education-detail-card:hover {
        box-shadow: 0 20px 60px rgba(118, 149, 255, 0.15);
    }

.education-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

    .education-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.education-detail-card:hover .education-image img {
    transform: scale(1.05);
}

.education-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(118, 149, 255, 0.4);
}

    .education-badge.accent {
        background: linear-gradient(135deg, #ff8000, #ffa040);
        box-shadow: 0 10px 30px rgba(255, 128, 0, 0.4);
    }

    .education-badge.secondary {
        background: linear-gradient(135deg, #9bb993, #7a9d72);
        box-shadow: 0 10px 30px rgba(155, 185, 147, 0.4);
    }

.education-content {
    padding: 50px;
}

.education-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.15), rgba(157, 189, 255, 0.15));
    color: #7695FF;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

    .education-tag.accent {
        background: linear-gradient(135deg, rgba(255, 128, 0, 0.15), rgba(255, 160, 64, 0.15));
        color: #ff8000;
    }

    .education-tag.secondary {
        background: linear-gradient(135deg, rgba(155, 185, 147, 0.15), rgba(122, 157, 114, 0.15));
        color: #9bb993;
    }

.education-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.education-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.education-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4b5563;
    font-weight: 500;
}

    .feature-item i {
        color: #7695FF;
        font-size: 1.1rem;
    }

.education-info-boxes {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 20px 25px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    flex: 1;
    min-width: 150px;
}

    .info-box i {
        font-size: 1.8rem;
        color: #7695FF;
    }

    .info-box strong {
        display: block;
        color: #1f2937;
        font-size: 0.85rem;
        margin-bottom: 3px;
    }

    .info-box span {
        color: #6b7280;
        font-size: 0.95rem;
    }

.btn-education {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(118, 149, 255, 0.3);
}

    .btn-education:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(118, 149, 255, 0.4);
        color: #fff;
    }

    .btn-education.accent {
        background: linear-gradient(135deg, #ff8000, #ffa040);
        box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
    }

        .btn-education.accent:hover {
            box-shadow: 0 12px 35px rgba(255, 128, 0, 0.4);
        }

    .btn-education.secondary {
        background: linear-gradient(135deg, #9bb993, #7a9d72);
        box-shadow: 0 8px 25px rgba(155, 185, 147, 0.3);
    }

        .btn-education.secondary:hover {
            box-shadow: 0 12px 35px rgba(155, 185, 147, 0.4);
        }

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.benefit-card {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(118, 149, 255, 0.2);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.15), rgba(157, 189, 255, 0.15));
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7695FF;
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    color: #fff;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== ALBÜM DETAY SAYFA STİLLERİ ===== */

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .back-button:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(-5px);
        color: #fff;
    }

.photo-grid-section {
    padding: 80px 0;
}

.photo-grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

    .photo-grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .photo-grid-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(118, 149, 255, 0.2);
    }

        .photo-grid-item:hover img {
            transform: scale(1.1);
        }

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-grid-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: #fff;
    font-size: 3rem;
}

.photo-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* Modern Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    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 {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

.lightbox-image-container {
    position: relative;
    max-height: calc(90vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-image-container img {
        max-width: 100%;
        max-height: calc(90vh - 150px);
        object-fit: contain;
        border-radius: 10px;
        transition: opacity 0.3s ease;
    }

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #7695FF;
    display: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-50%) scale(1.1);
    }

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.lightbox-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .lightbox-thumb:hover {
        opacity: 0.8;
        transform: scale(1.05);
    }

    .lightbox-thumb.active {
        opacity: 1;
        border-color: #7695FF;
        box-shadow: 0 0 15px rgba(118, 149, 255, 0.5);
    }

/* ===== VİDEO MODAL STİLLERİ ===== */

.video-modal .modal-content {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.video-modal .modal-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.video-modal .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.video-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

    .video-modal .btn-close:hover {
        opacity: 1;
    }

.video-modal iframe {
    border: none;
}

/* ===== RESPONSIVE AYARLAR ===== */

@media (max-width: 992px) {
    .education-content {
        padding: 40px 30px;
    }

    .education-title {
        font-size: 2rem;
    }

    .education-image {
        min-height: 350px;
    }

    .education-features {
        grid-template-columns: 1fr;
    }

    .education-info-boxes {
        flex-direction: column;
    }

    .info-box {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    body:not(.home-page) {
        padding-top: 0;
    }

    .education-detail-card {
        margin-bottom: 40px;
    }

    .education-content {
        padding: 30px 20px;
    }

    .education-title {
        font-size: 1.8rem;
    }

    .education-description {
        font-size: 1rem;
    }

    .education-image {
        min-height: 280px;
    }

    .education-badge {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        top: 20px;
        right: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .lightbox-counter {
        font-size: 1rem;
        padding: 8px 20px;
        top: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .lightbox-thumbnails {
        gap: 8px;
    }

    .lightbox-thumb {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .education-title {
        font-size: 1.5rem;
    }

    .photo-grid-item {
        aspect-ratio: 1/1;
    }

    .lightbox-thumbnails {
        display: none;
    }
}
/* Social Box */
.social-box-section {
    padding: 60px 0;
}

.social-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(118, 149, 255, 0.1);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.social-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.social-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: #FF0000;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

    .btn-social:hover {
        background: #CC0000;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
        color: #fff;
    }

@media (max-width: 768px) {
    .social-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* ===== BELGELER SAYFASI STİLLERİ ===== */

/* Intro Section */
.intro-section {
    padding: 80px 0 40px;
}

.intro-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intro-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.intro-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.intro-content p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Documents Section */
.documents-section {
    padding: 40px 0 80px;
}

.document-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

    .document-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(118, 149, 255, 0.2);
    }

.document-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f3f4f6;
}

    .document-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.document-card:hover .document-image img {
    transform: scale(1.05);
}

.document-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7695FF;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.document-card:hover .document-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.document-info {
    padding: 25px;
}

.document-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

    .document-badge.accent {
        background: linear-gradient(135deg, #ff8000, #ffa040);
    }

.document-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.document-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Simple */
.stats-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.stat-simple {
    text-align: center;
}

.stat-simple-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.1), rgba(157, 189, 255, 0.1));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7695FF;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-simple:hover .stat-simple-icon {
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    color: #fff;
    transform: scale(1.1);
}

.stat-simple-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
}

.stat-simple-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

/* ===== İLETİŞİM SAYFASI STİLLERİ ===== */

/* Contact Cards Section */
.contact-cards-section {
    padding: 80px 0 40px;
}

.contact-info-card {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(118, 149, 255, 0.2);
    }

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
}

    .contact-card-icon.accent {
        background: linear-gradient(135deg, #ff8000, #ffa040);
    }

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-detail {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-hours {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.1), rgba(157, 189, 255, 0.1));
    color: #7695FF;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0 80px;
}

.modern-contact-form {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 35px;
}

    .form-header h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 15px;
    }

    .form-header p {
        color: #6b7280;
        font-size: 1rem;
        margin: 0;
    }

/* Input with Icon */
.input-with-icon {
    position: relative;
}

    .input-with-icon i {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: #7695FF;
        font-size: 1rem;
        pointer-events: none;
        opacity: 0.8;
    }

    /* Input padding'ini ikon için ayarlıyoruz */
    .input-with-icon .form-control {
        padding-left: 45px !important;
    }

/* Textarea için ikon desteği yoksa sorun olmasın */
textarea.form-control {
    padding-left: 20px !important;
}

/* Responsive uyum */
@media (max-width: 576px) {
    .input-with-icon i {
        left: 12px;
        font-size: 0.95rem;
    }

    .input-with-icon .form-control {
        padding-left: 40px !important;
    }
}

.modern-contact-form .form-control {
    border-radius: 15px;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .modern-contact-form .form-control:focus {
        border-color: #7695FF;
        box-shadow: 0 5px 20px rgba(118, 149, 255, 0.15);
    }

.modern-contact-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(118, 149, 255, 0.3);
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(118, 149, 255, 0.4);
    }

/* Social Media Section */
.social-media-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f3f4f6;
}

    .social-media-section h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 20px;
    }

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        color: #fff;
    }

    .social-link.facebook {
        background: #1877F2;
    }

    .social-link.instagram {
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    }

    .social-link.twitter {
        background: #1DA1F2;
    }

    .social-link.youtube {
        background: #FF0000;
    }

    .social-link.linkedin {
        background: #0077B5;
    }

/* Map Section */
.map-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
}

.modern-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.directions-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.directions-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.directions-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(118, 149, 255, 0.1), rgba(157, 189, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7695FF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.directions-text strong {
    color: #1f2937;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.directions-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

@media (max-width: 768px) {
    .intro-box {
        flex-direction: column;
        padding: 30px 20px;
    }

    .verification-box {
        padding: 35px 25px;
    }

    .verification-links {
        flex-direction: column;
    }

    .verification-btn {
        width: 100%;
        justify-content: center;
    }

    .modern-contact-form {
        padding: 30px 20px;
    }

    .directions-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-collapse {
        background: linear-gradient(135deg, #7695FF 0%, #9DBDFF 100%);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1.1rem;
    }

    .modern-page-header {
        padding: 140px 0 80px;
    }

    .header-decoration {
        height: 40px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .content-heading {
        font-size: 2rem;
    }

    .values-section {
        padding: 40px 25px;
    }

    .mission-vision-card {
        padding: 30px 20px;
    }

    .mv-title {
        font-size: 1.8rem;
    }

    .cta-simple-title {
        font-size: 2rem;
    }

    .cta-simple-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .modern-control-prev,
    .modern-control-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .modern-control-prev {
        left: 20px;
    }

    .modern-control-next {
        right: 20px;
    }

    .intro-box {
        flex-direction: column;
        padding: 30px 20px;
    }

    .verification-box {
        padding: 35px 25px;
    }

    .verification-links {
        flex-direction: column;
    }

    .verification-btn {
        width: 100%;
        justify-content: center;
    }

    .modern-contact-form {
        padding: 30px 20px;
    }

    .directions-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 0.75rem;
        padding: 8px 20px;
        letter-spacing: 1.5px;
    }

    .gallery-image,
    .video-thumbnail,
    .document-image {
        height: 220px;
    }

    .brand-text {
        display: none;
    }

    .footer-brand {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .modern-hero-slider .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .modern-hero-slider .slide-title {
        font-size: 3rem;
    }

    .modern-hero-slider .slide-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        min-height: 600px;
        max-height: 700px;
    }

        .modern-hero-slider .slide-title {
            font-size: 2.2rem;
        }

        .modern-hero-slider .slide-description {
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .modern-hero-slider .slide-buttons {
            flex-direction: column;
            gap: 15px;
        }

    .btn-modern {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .modern-control-prev,
    .modern-control-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .modern-control-prev {
        left: 20px;
    }

    .modern-control-next {
        right: 20px;
    }

    .modern-indicators {
        bottom: 25px;
        gap: 10px;
    }

        .modern-indicators button {
            width: 30px;
        }

            .modern-indicators button.active {
                width: 50px;
            }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .education-item {
        margin-bottom: 25px;
    }

    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .modern-hero-slider {
        min-height: 550px;
    }

        .modern-hero-slider .slide-title {
            font-size: 1.8rem;
        }

        .modern-hero-slider .slide-tag {
            font-size: 0.75rem;
            padding: 6px 18px;
        }
}

/* RESPONSIVE HERO SLIDER */

@media (max-width: 1200px) {
    .slide-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .slide-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        min-height: 600px;
    }

        .hero-slider .carousel-item {
            min-height: 600px;
        }

    .slide-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .slide-text {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .hero-prev {
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .hero-next {
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 550px;
        height: 100vh;
    }

        .hero-slider .carousel-item {
            min-height: 550px;
        }

    .slide-content {
        padding: 0 1rem;
        max-width: 100%;
    }

    .slide-label {
        font-size: 0.75rem;
        padding: 8px 18px;
        margin-bottom: 20px;
    }

    .slide-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 20px;
    }

    .slide-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .slide-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-main,
    .btn-outline {
        padding: 14px 32px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-indicators {
        bottom: 25px;
        gap: 10px;
    }

        .hero-indicators button {
            width: 30px;
            height: 4px;
        }

            .hero-indicators button.active {
                width: 50px;
            }

    .hero-prev,
    .hero-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        min-height: 500px;
    }

        .hero-slider .carousel-item {
            min-height: 500px;
        }

    .slide-label {
        font-size: 0.7rem;
        padding: 6px 15px;
        letter-spacing: 1px;
    }

    .slide-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .slide-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-main,
    .btn-outline {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }
}

/* Scroll Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #7695FF, #9DBDFF);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(118, 149, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

    #scrollTopBtn:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(118, 149, 255, 0.6);
    }

@media (max-width: 768px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
.loading {
    overflow: hidden;
}

    .loading::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Performance Optimizations */
.navbar-glass,
.hero-slider,
.carousel-item {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
