/**
 * Özel X Kurs - Ana CSS Dosyası
 * Modern, responsive ve kurumsal tasarım
 */

/* ===== GENEL AYARLAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c62828;
    --primary-dark: #8b0000;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray: #666666;
    --gray-dark: #333333;
    --font-header: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
}

/* ===== HOME (ANASAYFA) ARKA PLAN ===== */
body.home-page {
    background: #ffffff; /* Beyaz arka plan */
}

body.home-page .advantages {
    background: rgba(198, 40, 40, 0.035);
}

body.home-page .achievements {
    background: rgba(255, 255, 255, 0.75);
}

body.home-page .news-section {
    background: rgba(198, 40, 40, 0.028);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 600;
}

.btn {
    font-family: var(--font-header);
}

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

/* ===== NAVIGATION ===== */
/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    font-family: var(--font-header);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.top-bar-item:hover {
    color: #ff5252;
    transform: translateX(2px);
}

.top-bar-item .icon {
    font-size: 1rem;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(198, 40, 40, 0.9);
    color: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.4);
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    fill: #c62828;
}

/* Navigation - Ultra Modern & Minimal */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-header);
    border-bottom: 1px solid rgba(198, 40, 40, 0.08);
}

.navbar:hover {
    box-shadow: 0 4px 40px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 80px; /* Logo ile menü arasına daha fazla boşluk */
    max-width: 100%;
}

.logo a {
    display: inline-block;
    transition: all 0.35s ease;
}

.logo {
    flex-shrink: 0;
    margin-right: 40px;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.06));
    transition: all 0.3s ease;
}

.logo a:hover .logo-img {
    filter: drop-shadow(0 5px 15px rgba(198, 40, 40, 0.2));
}

/* Text Logo (logo yoksa kullanılır) */
.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    display: inline-block;
    letter-spacing: 1px;
}

.logo-x {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(198, 40, 40, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px; /* Minimal gap */
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0; /* Overlap önlemek için sıfırlandı */
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    text-align: left;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--gray-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-menu li a.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 16px; /* Kompakt ama yeterli padding */
    display: inline-block;
    font-size: 0.95rem;
    border-radius: 8px;
    letter-spacing: 0.2px;
    white-space: nowrap; /* Yazıların kırılmasını engelle */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(198, 40, 40, 0.05);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(198, 40, 40, 0.08);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Bursluluk Sınavı Butonu */
.nav-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 11px 24px !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.25);
    margin-left: 8px !important; /* Soldan minimal boşluk */
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.35);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.nav-btn-primary::after {
    display: none !important; /* Alt çizgi gizle */
}

.nav-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}

/* Çok fazla menü öğesi için uyarlama (8+ öğe) */
@media (min-width: 769px) and (max-width: 1200px) {
    .nav-menu a {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu a {
        padding: 1rem 0.6rem;
        font-size: 0.85rem;
    }
}

.nav-btn-primary.active::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}

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

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

/* Hero Section Özel Butonlar */
.hero-buttons .btn-black {
    background: #1a1a1a;
    color: white;
    border: none;
}

.hero-buttons .btn-black:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-white {
    background: white;
    color: #c62828;
    border: 2px solid white;
}

.hero-buttons .btn-white:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, var(--primary-dark) 0%, rgba(139, 0, 0, 0.6) 30%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    text-align: left;
    padding-right: 2rem;
    padding-left: 80px;
    margin-left: 0;
    animation: fadeInLeft 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

.hero-buttons .btn {
    margin: 0;
}

/* YKS Geri Sayım */
.countdown-container {
    margin: 0 0 2rem 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.countdown-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero İstatistikler */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 450px; /* İstatistiklerin genişliğini sınırlayalım */
}

.hero-stats .stat-item {
    background: rgba(198, 40, 40, 0.9); /* Kırmızı arka plan */
    color: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif; /* Poppins fontu kullan */
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-family: 'Roboto', sans-serif; /* Roboto fontu kullan */
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-header);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    padding-left: 2rem;
    padding-right: 100px;
    gap: 1.5rem;
}

.hero-image-container {
    width: 100%;
    max-width: 750px;
    position: relative;
    animation: fadeInRight 0.8s ease;
    min-height: 550px;
    margin: 0 auto;
}

/* Hero Swiper Slider Stilleri - KAPALI (Artık kullanılmıyor) */

.hero-student-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    max-height: 750px;
    display: block;
}

.student-illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

.student-svg {
    width: 100%;
    height: auto;
}

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

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

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

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

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

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Slider Wrapper */
.advantages-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.advantagesSwiper {
    padding-bottom: 50px;
}

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

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.advantage-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Modern Advantage Cards */
.advantage-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(198, 40, 40, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.advantage-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 45px rgba(198, 40, 40, 0.15);
    border-color: var(--primary-color);
}

.advantage-icon-modern {
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.1);
}

.advantage-card-modern:hover .advantage-icon-modern {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 25px rgba(198, 40, 40, 0.2);
}

.emoji-icon {
    font-size: 3rem;
    line-height: 1;
    display: block;
}

.advantage-card-modern h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.advantage-card-modern:hover h3 {
    color: var(--primary-color);
}

.advantage-card-modern p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

/* ===== BAŞARILAR SECTION ===== */
.achievements {
    padding: 80px 0;
    background: #f8f9fa;
}

.achievements-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.achievements-content {
    padding-right: 2rem;
}

.achievements-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.achievements-title .highlight {
    color: var(--primary-color);
}

.achievements-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card-large {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.15);
}

.stat-card-large:hover::before {
    opacity: 1;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label-large {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

/* Swiper Custom Styles */
.advantagesSwiper .swiper-button-next,
.advantagesSwiper .swiper-button-prev {
    color: white;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.3);
    transition: all 0.4s ease;
}

.advantagesSwiper .swiper-button-next:after,
.advantagesSwiper .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

.advantagesSwiper .swiper-button-next:hover,
.advantagesSwiper .swiper-button-prev:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(198, 40, 40, 0.4);
}

.advantagesSwiper .swiper-pagination {
    bottom: 0 !important;
}

.advantagesSwiper .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.advantagesSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.gallery-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.gallerySwiper {
    padding-bottom: 60px;
}

.gallery-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
}

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

.gallery-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.gallery-info p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== NEWS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section::before {
    width: 520px;
    height: 520px;
    top: -220px;
    left: -200px;
}

.testimonials-section::after {
    width: 420px;
    height: 420px;
    bottom: -200px;
    right: -180px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.08) 0%, transparent 70%);
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(198, 40, 40, 0.12);
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.10);
    font-family: var(--font-header);
    white-space: nowrap;
}

.testimonials-badge .badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.testimonials-badge .badge-text {
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.testimonials-slider-wrapper {
    position: relative;
}

.testimonialsSwiper {
    padding: 20px 5px 50px;
}

.testimonial-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(198, 40, 40, 0.10);
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(198, 40, 40, 0.08), transparent 45%),
                radial-gradient(circle at 80% 10%, rgba(198, 40, 40, 0.06), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.12);
    border-color: rgba(198, 40, 40, 0.20);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-family: var(--font-header);
    box-shadow: 0 12px 25px rgba(198, 40, 40, 0.25);
    flex-shrink: 0;
}

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

.testimonial-name {
    font-weight: 700;
    color: var(--gray-dark);
    font-family: var(--font-header);
    font-size: 1.05rem;
    line-height: 1.2;
}

.testimonial-meta {
    margin-top: 3px;
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-pill {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--primary-color);
    background: rgba(198, 40, 40, 0.08);
    border: 1px solid rgba(198, 40, 40, 0.12);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.testimonial-rating {
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.testimonial-rating .star {
    color: rgba(198, 40, 40, 0.25);
    font-size: 1rem;
}

.testimonial-rating .star.on {
    color: #ffc107;
    text-shadow: 0 6px 18px rgba(255, 193, 7, 0.25);
}

.testimonial-quote {
    position: absolute;
    right: 18px;
    top: 80px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(198, 40, 40, 0.12);
    font-family: var(--font-header);
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    margin-top: 14px;
    position: relative;
    z-index: 1;
    color: var(--gray-dark);
    font-size: 0.98rem;
    line-height: 1.75;
}

.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 1px solid rgba(198, 40, 40, 0.12);
}

.testimonialsSwiper .swiper-button-next:after,
.testimonialsSwiper .swiper-button-prev:after {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 900;
}

.testimonialsSwiper .swiper-pagination-bullet {
    background: rgba(198, 40, 40, 0.25);
    opacity: 1;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.section-header-modern .section-title {
    margin-bottom: 10px;
}

.section-header-modern .section-subtitle {
    margin-bottom: 0;
}

.section-header-modern .section-subtitle {
    max-width: 720px;
}

.section-header-modern .section-title,
.section-header-modern .section-subtitle {
    text-align: left;
}

.testimonials-section .section-title {
    text-align: left;
}

.testimonials-section .section-subtitle {
    text-align: left;
}

.testimonials-section .section-title {
    font-size: 2.2rem;
}

.testimonials-section .section-subtitle {
    color: var(--gray);
}

.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
    top: 45%;
}

/* Yorum Bırak Toggle Butonu */
.btn-testimonial-toggle {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-header);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.btn-testimonial-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 40, 40, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-testimonial-toggle:active {
    transform: translateY(-1px);
}

.testimonial-form-card{
    margin-top: 34px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(198,40,40,0.10);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

.testimonial-form-card::before{
    content:'';
    position:absolute;
    left:0; top:0; right:0;
    height:4px;
    background: linear-gradient(90deg, var(--primary-color), #e74c3c, var(--primary-color));
    opacity: 0.9;
}

.tform-head{
    display:flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 10px;
}

.tform-head h3{
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--gray-dark);
}

.tform-head p{
    color: var(--gray);
    font-size: 0.95rem;
}

.tform-mini{
    align-self: flex-start;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(198,40,40,0.08);
    border: 1px solid rgba(198,40,40,0.12);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
}

.tform-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0 18px 18px;
}

.tfield label{
    display:block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 6px;
    font-family: var(--font-header);
}

.tfield input,
.tfield textarea,
.tfield select{
    width:100%;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.95);
    padding: 12px 12px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    font-family: var(--font-body);
}

.tfield input:focus,
.tfield textarea:focus,
.tfield select:focus{
    border-color: rgba(198,40,40,0.35);
    box-shadow: 0 0 0 4px rgba(198,40,40,0.10);
}

.tfield-full{
    grid-column: 1 / -1;
}

.tfield-actions{
    display:flex;
    align-items: center;
    gap: 12px;
}

.tform-btn{
    border: 0;
    cursor:pointer;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-family: var(--font-header);
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 12px 25px rgba(198,40,40,0.25);
}

.tform-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

.tform-msg{
    color: var(--gray);
    font-size: 0.92rem;
}

.tform-msg.ok{
    color: #1b7f3a;
    font-weight: 700;
}

.tform-msg.err{
    color: #b71c1c;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }
    .tform-grid{
        grid-template-columns: 1fr;
    }
    .tfield-actions{
        flex-direction: column;
        align-items: stretch;
    }
}

.news-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.news-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.newsSwiper {
    padding-bottom: 60px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 500px;
    display: flex;
    flex-direction: column;
}

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

.news-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}

.news-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.85rem;
    margin-top: 2px;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    color: var(--gray-dark);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Gallery & News Swiper Custom Styles */
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev,
.newsSwiper .swiper-button-next,
.newsSwiper .swiper-button-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after,
.newsSwiper .swiper-button-next:after,
.newsSwiper .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover,
.newsSwiper .swiper-button-next:hover,
.newsSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.3);
}

.gallerySwiper .swiper-pagination-bullet,
.newsSwiper .swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.gallerySwiper .swiper-pagination-bullet-active,
.newsSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}


/* ===== INTRO SECTION ===== */
.intro {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

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

.intro-bg-shapes .intro-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(0px);
}

.intro-shape-1 {
    width: 520px;
    height: 520px;
    top: -240px;
    left: -220px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.08) 0%, transparent 70%);
}

.intro-shape-2 {
    width: 420px;
    height: 420px;
    bottom: -220px;
    right: -180px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.06) 0%, transparent 70%);
}

.intro-content-modern {
    position: relative;
    z-index: 2;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-lead {
    font-size: 1.05rem;
    color: #555;
    max-width: 52ch;
}

.intro-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    font-family: var(--font-header);
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.intro-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 12px 28px rgba(198, 40, 40, 0.22);
}

.intro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(198, 40, 40, 0.32);
}

.intro-btn-ghost {
    color: var(--primary-color);
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(198, 40, 40, 0.18);
}

.intro-btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.92);
}

.intro-image-modern {
    display: flex;
    justify-content: flex-end;
}

.intro-image-card {
    position: relative;
    width: min(520px, 100%);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(198, 40, 40, 0.12);
    box-shadow: 0 18px 50px rgba(0,0,0,0.10);
    transform: translateZ(0);
}

.intro-image-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform .35s ease;
}

.intro-image-card:hover img {
    transform: scale(1.08);
}

.placeholder-image {
    background: var(--gray-light);
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .intro-image-modern {
        justify-content: flex-start;
    }
    .intro-text h2 {
        font-size: 2rem;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 60px 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===== MISSION VISION - MODERN ===== */
.page-header-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-header-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-header);
    animation: fadeInDown 0.6s ease;
}

.page-subtitle-modern {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.mission-vision-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.mv-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.mv-card-modern {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mv-card-modern:hover::before {
    transform: scaleX(1);
}

.mv-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.mv-icon-circle-modern {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
    transition: all 0.4s ease;
}

.mv-card-modern:hover .mv-icon-circle-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(198, 40, 40, 0.5);
}

.mission-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.vision-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.mv-title-modern {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-header);
}

.mv-content-modern p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    text-align: left;
    font-family: var(--font-body);
}

.mv-content-modern p:last-child {
    margin-bottom: 0;
}

/* Değerler Bölümü - Modern */
.values-section-modern {
    margin-top: 3rem;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.values-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.values-title-modern {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-header);
}

.values-subtitle-modern {
    font-size: 1.2rem;
    color: var(--gray);
    font-family: var(--font-body);
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.value-item-modern {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item-modern::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(198, 40, 40, 0.08) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.value-item-modern:hover::before {
    top: -50%;
    left: -50%;
    opacity: 1;
}

.value-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(198, 40, 40, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-item-modern:hover .value-icon-modern {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.5);
}

.value-icon-modern svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.value-item-modern h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-header);
    position: relative;
    z-index: 1;
}

.value-item-modern p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
    font-family: var(--font-body);
    position: relative;
    z-index: 1;
}

/* ===== FORMS ===== */
.form-wrapper,
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bursluluk-form-section,
.contact-section {
    padding: 60px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.required {
    color: var(--primary-color);
}

.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    cursor: pointer;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
}

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

.info-item a:hover {
    text-decoration: underline;
}

.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

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

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

.contact-info a:hover {
    text-decoration: underline;
}

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

.social-links a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .top-bar-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        text-align: center;
    }
    
    .top-bar-right {
        justify-content: center;
        width: 100%;
    }
    
    .top-bar-item {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo {
        margin-left: -8px;
    }

    .logo-img {
        height: 74px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 96px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        flex: none;
    }
    
    /* Mobilde dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-arrow {
        float: right;
    }
    
    .dropdown-menu li a {
        padding-left: 40px;
        font-size: 0.9rem;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .nav-btn-primary {
        display: inline-block;
        width: auto;
        margin: 0 auto;
    }
    
    /* Hero responsive */
    .hero {
        padding: 60px 0;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .countdown-container {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .countdown-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .countdown-item {
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .hero-stats .stat-item {
        padding: 0.8rem 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image {
        order: -1;
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
        gap: 1rem;
    }
    
    .countdown-container {
        margin: 0 0 1.5rem 0;
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin-right: 0;
    }
    
    .heroSwiper {
        height: 400px;
    }
    
    .hero-student-img {
        max-height: 500px;
    }
    
    .student-illustration {
        max-width: 300px;
    }
    
    .intro-content,
    .about-section,
    .mv-grid,
    .mv-grid-modern,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-section.reverse {
        direction: ltr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Slider responsive adjustments */
    .advantages-slider-wrapper {
        padding: 0 20px;
    }
    
    .advantagesSwiper .swiper-button-next,
    .advantagesSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .advantagesSwiper .swiper-button-next:after,
    .advantagesSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    /* Başarılar responsive */
    .achievements {
        padding: 60px 0;
    }
    
    .achievements-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .achievements-content {
        padding-right: 0;
        text-align: center;
    }
    
    .achievements-title {
        font-size: 2rem;
    }
    
    .achievements-description {
        font-size: 1rem;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card-large {
        padding: 1.5rem 1rem;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .stat-label-large {
        font-size: 0.75rem;
    }
    
    /* Gallery & News responsive */
    .gallery-slider-wrapper,
    .news-slider-wrapper {
        padding: 0 20px;
    }
    
    .gallery-card {
        height: 400px;
    }
    
    .gallery-image {
        height: 260px;
    }
    
    .news-card {
        height: 450px;
    }
    
    .news-image {
        height: 240px;
    }
    
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev,
    .newsSwiper .swiper-button-next,
    .newsSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after,
    .newsSwiper .swiper-button-next:after,
    .newsSwiper .swiper-button-prev:after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image-container {
        max-width: 350px;
    }
    
    .hero-student-img {
        max-height: 400px;
    }
    
    .student-illustration {
        max-width: 250px;
    }
    
    .advantages,
    .intro,
    .about-content,
    .mission-vision,
    .mission-vision-modern {
        padding: 40px 0;
    }
    
    .page-header-modern {
        padding: 60px 0 40px 0;
    }
    
    .page-title-modern {
        font-size: 2.2rem;
    }
    
    .page-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .mv-card-modern {
        padding: 2rem;
    }
    
    .mv-title-modern {
        font-size: 1.8rem;
    }
    
    .mv-content-modern p {
        font-size: 1rem;
    }
    
    .values-section-modern {
        padding: 40px 20px;
    }
    
    .values-title-modern {
        font-size: 2rem;
    }
    
    .values-subtitle-modern {
        font-size: 1rem;
    }
    
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-item-modern {
        padding: 2rem 1rem;
    }
    
    .value-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .value-icon-modern svg {
        width: 35px;
        height: 35px;
    }
    
    .value-item-modern h3 {
        font-size: 1.2rem;
    }
    
    .value-item-modern p {
        font-size: 0.95rem;
    }
    
    .form-wrapper,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    /* Slider mobile adjustments */
    .advantages-slider-wrapper {
        padding: 0 10px;
    }
    
    .advantagesSwiper {
        padding-bottom: 40px;
    }
    
    .advantagesSwiper .swiper-button-next,
    .advantagesSwiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .advantagesSwiper .swiper-button-next:after,
    .advantagesSwiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    /* Başarılar mobile */
    .achievements {
        padding: 40px 0;
    }
    
    .achievements-title {
        font-size: 1.6rem;
    }
    
    .achievements-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number-large {
        font-size: 2.2rem;
    }
    
    .stat-label-large {
        font-size: 0.7rem;
    }
    
    /* Gallery & News mobile */
    .gallery-slider-wrapper,
    .news-slider-wrapper {
        padding: 0 10px;
    }
    
    .gallerySwiper,
    .newsSwiper {
        padding-bottom: 50px;
    }
    
    .gallery-card {
        height: 380px;
    }
    
    .gallery-image {
        height: 240px;
    }
    
    .news-card {
        height: 420px;
    }
    
    .news-image {
        height: 220px;
    }
    
    .gallery-info h3,
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p,
    .news-content p {
        font-size: 0.9rem;
    }
    
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev,
    .newsSwiper .swiper-button-next,
    .newsSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after,
    .newsSwiper .swiper-button-next:after,
    .newsSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* ===== SEO İÇERİK SAYFASI ===== */
.seo-content-page {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 80vh;
}

.seo-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.seo-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.seo-intro {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.seo-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.seo-section {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.seo-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.seo-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
}

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

.seo-feature-list li {
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-feature-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.seo-feature-list li strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.seo-feature-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

.seo-internal-links {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.seo-internal-links h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

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

.internal-link-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.internal-link-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.2);
}

.internal-link-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.internal-link-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

.seo-conclusion {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 10px;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.seo-conclusion p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
}

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

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* SEO Sayfası Responsive */
@media (max-width: 768px) {
    .seo-header h1 {
        font-size: 1.8rem;
    }
    
    .seo-section h2 {
        font-size: 1.5rem;
    }
    
    .seo-intro,
    .seo-section,
    .seo-internal-links {
        padding: 1.5rem;
    }
    
    .internal-links-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-conclusion {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== MODERN HERO STYLES ===== */
.hero-modern {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

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

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

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -15%;
    left: -8%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(5deg);
    }
    66% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease;
    font-family: var(--font-header);
}

.hero-badge svg {
    color: #ffd700;
    animation: pulse 2s ease-in-out infinite;
}

/* Modern Title */
.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease;
    font-family: var(--font-header);
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
}

.title-line.highlight {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
    border-radius: 2px;
}

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

/* Modern Buttons */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: var(--font-header);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-hero svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

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

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Modern Stats */
.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
    max-width: 500px;
}

.stat-card-modern {
    background: rgba(198, 40, 40, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.stat-card-modern:nth-child(1) { animation-delay: 0.4s; }
.stat-card-modern:nth-child(2) { animation-delay: 0.5s; }
.stat-card-modern:nth-child(3) { animation-delay: 0.6s; }
.stat-card-modern:nth-child(4) { animation-delay: 0.7s; }

.stat-card-modern:hover {
    background: rgba(198, 40, 40, 0.95);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-icon-modern {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(-5deg) scale(1.1);
}

.stat-icon-modern svg {
    color: var(--white);
}

.stat-content-modern {
    flex: 1;
}

.stat-number-hero {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
    font-family: var(--font-header);
}

.stat-label-hero {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-family: var(--font-body);
}

/* Modern Countdown */
.countdown-container-modern {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInRight 0.8s ease;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.countdown-header svg {
    color: #ffd700;
    animation: pulse 2s ease-in-out infinite;
}

.countdown-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-header);
    letter-spacing: 0.5px;
}

.countdown-timer-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    text-align: center;
    min-width: 70px;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.countdown-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: var(--font-header);
}

.countdown-text {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-header);
}

/* Modern Image Container */
.hero-image-container-modern {
    position: relative;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.hero-student-img-modern {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    max-height: 750px;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container-modern:hover .hero-student-img-modern {
    transform: scale(1.02);
}

/* Responsive - Modern Hero */
@media (max-width: 1024px) {
    .hero-modern {
        min-height: 600px;
    }
    
    .hero-content {
        padding-left: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stat-card-modern {
        padding: 1rem;
    }
    
    .stat-number-hero {
        font-size: 1.8rem;
    }
    
    .stat-label-hero {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        padding-left: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 2rem auto 0;
    }
    
    .stat-card-modern {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .countdown-container-modern {
        padding: 1.3rem;
    }
    
    .countdown-timer-modern {
        gap: 0.5rem;
    }
    
    .countdown-box {
        min-width: 60px;
        padding: 0.8rem 0.6rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-text {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .hero-image-container-modern {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .image-decoration {
        top: -15px;
        right: -15px;
        bottom: -15px;
        left: -15px;
    }
    
    .hero-student-img-modern {
        max-height: 500px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-icon-modern {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon-modern svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-number-hero {
        font-size: 1.5rem;
    }
    
    .stat-label-hero {
        font-size: 0.75rem;
    }
    
    .countdown-box {
        min-width: 45px;
        padding: 8px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
}
        padding: 0.7rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}
/* ================================================
   ÖZEL DERS SAYFASI - ULTRA MODERN STILLER
   ================================================ */

/* Page Header */
.page-header {
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white, white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

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

/* Lessons Section */
.lessons-section {
    padding: 80px 0;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    position: relative;
    overflow: hidden;
}

.lessons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.lessons-section .container {
    position: relative;
    z-index: 1;
}

/* Info Banner */
.info-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white, rgba(255,255,255,0.95));
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: slideInLeft 0.8s ease;
}

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

.info-icon {
    font-size: 4rem;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.8));
    }
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: var(--primary-color, #e74c3c);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.info-content p {
    color: var(--gray-dark, #555);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lesson-card {
    background: var(--white, rgba(255,255,255,0.95));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.lesson-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.lesson-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.5);
}

.lesson-card:hover::before {
    transform: scaleX(1);
}

.lesson-icon-wrapper {
    display: flex;
    justify-content: center;
}

.lesson-icon {
    font-size: 4rem;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float-rotate 6s ease-in-out infinite;
}

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

.lesson-content {
    text-align: center;
    flex: 1;
}

.lesson-name {
    color: var(--gray-dark, #333);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.lesson-description {
    color: var(--gray, #666);
    line-height: 1.8;
    font-size: 1rem;
}

.lesson-footer {
    padding-top: 1rem;
}

.lesson-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white, white);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    font-family: 'Poppins', sans-serif;
}

.lesson-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.btn-icon {
    font-size: 1.5rem;
    animation: wiggle 1s ease-in-out infinite;
}

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

.btn-text {
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    margin-top: 5rem;
    background: var(--white, rgba(255,255,255,0.95));
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: rotate-gradient 15s linear infinite;
}

@keyframes rotate-gradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.cta-content h2 {
    color: var(--gray-dark, #333);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.cta-content p {
    color: var(--gray, #666);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: var(--white, white);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    font-family: 'Poppins', sans-serif;
}

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--white, rgba(255,255,255,0.95));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.empty-state h3 {
    color: var(--gray-dark, #333);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.empty-state p {
    color: var(--gray, #666);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .lessons-section {
        padding: 60px 0;
    }
    
    .info-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .info-icon {
        font-size: 3rem;
    }
    
    .info-content h3 {
        font-size: 1.3rem;
    }
    
    .info-content p {
        font-size: 1rem;
    }
    
    .lessons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .lesson-card {
        padding: 1.5rem;
    }
    
    .lesson-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
    
    .lesson-name {
        font-size: 1.3rem;
    }
    
    .lesson-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .cta-section {
        margin-top: 3rem;
        padding: 3rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-btn {
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .lessons-section {
        padding: 40px 0;
    }
    
    .info-banner {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .lessons-grid {
        gap: 1rem;
    }
    
    .lesson-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .lesson-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
    
    .lesson-name {
        font-size: 1.2rem;
    }
    
    .lesson-description {
        font-size: 0.9rem;
    }
    
    .lesson-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ================================================
   PAKETLER SAYFASI - ULTRA MODERN STILLER
   ================================================ */

/* Page Header */
.page-header-modern {
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.header-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white, white);
}

.header-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.header-title-modern {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-subtitle-modern {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Section */
.packages-section-modern {
    padding: 80px 0;
    background: var(--gray-light, #f8f9fa);
}

.packages-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card-modern {
    background: var(--white, white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.package-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.package-card-modern:hover::before {
    transform: scaleX(1);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: var(--white, white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.package-header-modern {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon-modern {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.package-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-dark, #2c3e50);
    margin-bottom: 1rem;
}

.package-desc-modern {
    color: var(--gray, #95a5a6);
    line-height: 1.6;
    font-size: 1rem;
}

.package-features-modern {
    margin-bottom: 2rem;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, white);
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-text {
    flex: 1;
    color: var(--gray-dark, #2c3e50);
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-footer-modern {
    text-align: center;
}

.package-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: var(--white, white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.package-btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.btn-icon-modern {
    font-size: 1.2rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.package-btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

/* Empty State */
.empty-state-modern {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon-modern {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-state-modern h3 {
    color: var(--gray-dark, #2c3e50);
    margin-bottom: 1rem;
}

.empty-state-modern p {
    color: var(--gray, #95a5a6);
}

/* CTA Section */
.cta-section-modern {
    margin-top: 60px;
    padding: 60px 0;
    background: var(--gradient-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-content-modern {
    position: relative;
    z-index: 1;
    color: var(--white, white);
}

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

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

.cta-btn-modern {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--white, white);
    color: var(--primary-color, #667eea);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .header-title-modern {
        font-size: 2rem;
    }
    
    .header-subtitle-modern {
        font-size: 1rem;
    }
    
    .packages-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .package-card-modern {
        padding: 1.5rem;
    }
    
    .package-title-modern {
        font-size: 1.5rem;
    }
    
    .cta-content-modern h2 {
        font-size: 1.8rem;
    }
    
    .cta-content-modern p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header-modern {
        padding: 60px 0 40px;
    }
    
    .packages-section-modern {
        padding: 40px 0;
    }
    
    .package-icon-modern {
        font-size: 3rem;
    }
    
    .cta-section-modern {
        padding: 40px 20px;
        margin-top: 40px;
    }
}

