﻿.calls {
    background: #f5f7fa;
    padding-top: 15px;
}

.calls-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.calls-title {
    font-size: var(--fs-section);
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--primary);
    margin: 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.calls-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.calls-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    color: var(--text-dark);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: var(--transition);
    font-size: 16px;
}

.calls-tab.active {
    background: var(--secondary-light);
    color: var(--primary-dark);
    border-color: var(--secondary);
}

.calls-tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}

.calls-tab .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75em;
    height: 1.75em;
    padding: 0 .55em;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: #fff;
}
.calls-tab .tab-count--all { background: #0f2744; }
.calls-tab .tab-count--national { background: #2563eb; }
.calls-tab .tab-count--intl { background: #0d9488; }
.calls-tab .tab-count--tuseb { background: #16a34a; }
.calls-tab .tab-count--student { background: #d97706; }
.calls-tab .tab-count--burslar { background: #7c3aed; }

.calls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.calls-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #64748b;
    padding: 24px 0;
}

.call-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(15, 35, 80, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    font-family: var(--font-sans);
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.call-card.is-hidden {
    display: none;
}

.call-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 35, 80, 0.1);
}

.call-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #eef2f7;
    overflow: hidden;
}

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

.call-new-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 7px 12px;
    border-radius: 3px;
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 40%, #f59e0b 75%, #facc15 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(127, 29, 29, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 2px 0 rgba(185, 28, 28, 0.35),
        0 4px 14px rgba(234, 88, 12, 0.45);
    animation: call-new-pulse 1.6s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes call-new-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: brightness(1) saturate(1);
        box-shadow:
            0 2px 0 rgba(185, 28, 28, 0.35),
            0 4px 14px rgba(234, 88, 12, 0.45);
    }
    50% {
        transform: translateY(-1px) scale(1.03);
        filter: brightness(1.1) saturate(1.15);
        box-shadow:
            0 3px 0 rgba(185, 28, 28, 0.4),
            0 8px 18px rgba(245, 158, 11, 0.55);
    }
}

@media (prefers-reduced-motion: reduce) {
    .call-new-badge {
        animation: none;
    }
}

.call-content {
    flex: 1;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

.call-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-sans);
    color: #1c458b;
    line-height: 1.35;
    display: block;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: break-word;
    text-overflow: clip;
}

.call-desc {
    margin: 0;
    font-size: 13px;
    font-family: var(--font-sans);
    color: #5b6472;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.call-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.call-date {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
    flex: 1 1 auto;
    min-width: 0;
    /* Etiket + değer her zaman iki satır: kartlar arasında hizayı sabitler */
    min-height: calc(2 * 1.35em);
}

.call-date--empty {
    flex: 1 1 auto;
}

.call-date i {
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.call-date-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.call-date-label {
    white-space: nowrap;
    font-weight: 700;
    color: #334155;
}

/* Tarih değeri asla satır ortasından bölünmez */
.call-date-value {
    white-space: nowrap;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary, #1c458b);
}

.call-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 88px;
}

.call-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 14px;
    border: 1px solid #7eb8e8;
    border-radius: 3px;
    color: #2b6cb0;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.call-card:hover .call-more {
    background: #1c458b;
    border-color: #1c458b;
    color: #fff;
}

@media (max-width: 1100px) {
    .calls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .calls-grid {
        grid-template-columns: 1fr;
    }
}

/**
 * Selçuk Üniversitesi - Modern Premium Web Template
 * Ultra Modern, Elegant & Responsive Design
 * Version 2.0 - 2025
 */

/* ==================== CSS VARIABLES - MODERN ==================== */
:root {
    /* Typography — Plus Jakarta Sans (UI) + Playfair Display (titles) */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --fs-xs: 0.75rem;                                          /* 12px */
    --fs-sm: 0.875rem;                                         /* 14px */
    --fs-base: 1rem;                                           /* 16px */
    --fs-md: 1.0625rem;                                        /* 17px */
    --fs-lg: 1.125rem;                                         /* 18px */
    --fs-xl: 1.25rem;                                          /* 20px */
    --fs-2xl: clamp(1.25rem, 1.5vw, 1.5rem);                   /* 20–24 */
    --fs-3xl: clamp(1.5rem, 2vw, 1.875rem);                    /* 24–30 */
    --fs-section: clamp(1.625rem, 2.8vw, 2.125rem);            /* 26–34 section H2 */
    --fs-hero: clamp(1.875rem, 4.4vw, 3rem);                   /* 30–48 hero */
    --fs-display: clamp(2rem, 3.9vw, 2.875rem);                /* 32–46 large display */

    --lh-tight: 1.15;
    --lh-snug: 1.35;
    --lh-body: 1.65;
    --tracking-tight: -0.02em;
    --tracking-display: -0.025em;
    --tracking-nav: 0.01em;

    /* Primary Colors - Enhanced */
    --primary: #1c458b;
    --primary-dark: #0d2d5e;
    --primary-light: #2d5599;
    --primary-rgb: 28, 69, 139;
    --primary-50: rgba(28, 69, 139, 0.05);
    --primary-100: rgba(28, 69, 139, 0.1);
    --primary-200: rgba(28, 69, 139, 0.2);
    
    /* Secondary Colors - Vibrant */
    --secondary: #7acaed;
    --secondary-dark: #5bb8de;
    --secondary-light: #a5ddf5;
    --secondary-rgb: 122, 202, 237;
    
    /* Accent Colors */
    --accent: #f8b500;
    --accent-light: #ffc933;
    --accent-rgb: 248, 181, 0;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Neutral Colors - Modern Palette */
    --white: #ffffff;
    --black: #000000;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border: #e2e8f0;
    --border-light: rgba(226, 232, 240, 0.5);
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #1c458b 0%, #0d2d5e 50%, #1c458b 100%);
    --gradient-secondary: linear-gradient(135deg, #7acaed 0%, #5bb8de 50%, #7acaed 100%);
    --gradient-accent: linear-gradient(135deg, #f8b500 0%, #ffc933 50%, #f8b500 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(28, 69, 139, 0.4) 0%, rgba(45, 85, 145, 0.3) 50%, rgba(80, 120, 170, 0.25) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    
    /* Modern Shadows - Layered */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(122, 202, 237, 0.4), 0 0 40px rgba(122, 202, 237, 0.2);
    --shadow-glow-primary: 0 0 30px rgba(28, 69, 139, 0.3), 0 0 60px rgba(28, 69, 139, 0.15);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Border Radius - Modern */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions - Smooth & Modern */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacing - Consistent */
    --section-padding: 30px;
    --container-padding: 24px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==================== RESET & BASE - ENHANCED ==================== */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

body { 
    font-family: var(--font-sans); 
    font-size: var(--fs-base);
    color: var(--text-body); 
    line-height: var(--lh-body); 
    overflow-x: hidden; 
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-display); 
    font-weight: 600; 
    line-height: var(--lh-tight); 
    color: var(--text-dark);
    letter-spacing: var(--tracking-display);
}

h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-section); }
h3 { font-size: var(--fs-3xl); font-family: var(--font-sans); font-weight: 600; letter-spacing: var(--tracking-tight); }
h4 { font-size: var(--fs-xl); font-family: var(--font-sans); font-weight: 600; letter-spacing: var(--tracking-tight); }
h5, h6 { font-size: var(--fs-lg); font-family: var(--font-sans); font-weight: 600; }

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition); 
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover;
}

button { 
    font-family: inherit; 
    cursor: pointer; 
    border: none; 
    background: none; 
    transition: var(--transition);
}

ul, ol { 
    list-style: none; 
}

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

/* ==================== HEADER - MODERN GLASSMORPHISM ==================== */
.header {
    /* Always fixed — avoids absolute↔fixed reflow hitch when sweeping menus L→R */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: #1a264a !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Header scrolled veya mega-menu açık olduğunda koyu arka plan */
.header.scrolled,
.header.mega-open {
    background: #1a264a;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid rgba(235, 214, 28, 0.45);
}

/* Scrolled veya mega-menu açık olduğunda tüm elementler beyaz */
.header.scrolled .logo-text,
.header.scrolled .nav-link,
.header.scrolled .header-btn,
.header.scrolled .header-btn-today,
.header.scrolled .header-icon-btn,
.header.scrolled .nav-search,
.header.scrolled .nav-portal,
.header.scrolled .nav-quick-menu span,
.header.mega-open .logo-text,
.header.mega-open .nav-link,
.header.mega-open .header-btn,
.header.mega-open .header-btn-today,
.header.mega-open .header-icon-btn,
.header.mega-open .nav-search,
.header.mega-open .nav-portal,
.header.mega-open .nav-quick-menu span {
    color: var(--white);
}

.header.scrolled .logo-img,
.header.mega-open .logo-img {
    background: transparent;
    border: none;
    box-shadow: none;
}

.header.scrolled .logo-svg,
.header.mega-open .logo-svg {
    filter: none;
}

.header.scrolled .logo-img i,
.header.mega-open .logo-img i {
    color: var(--white);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 50px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

/* Logo - Modern */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    z-index: 10;
    transition: var(--transition);
}

.logo-img {
    width: 342px;
    height: 94px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: var(--transition);
    backdrop-filter: none;
    box-shadow: none;
}

.logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: none;
}

.logo-img i {
    font-size: 26px;
    color: var(--white);
    transition: var(--transition);
}

.logo-text {
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.logo-title,
.logo-subtitle {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    transition: var(--transition);
}

/* Header Right */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-left: auto;
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 280px);
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    row-gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
}

.header-btn-today {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    white-space: normal;
    max-width: min(100%, 240px);
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-btn-today:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: normal;
    max-width: min(100%, 220px);
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.header-icon-btns {
    display: flex;
    gap: 6px;
    margin-left: 10px;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.header-icon-btn.lang {
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.lang-switcher {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 6px;
    background: rgba(13, 45, 94, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 10050;
}

.lang-dropdown[hidden] {
    display: none !important;
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.3;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    outline: none;
}

.lang-option.is-active {
    background: rgba(255, 255, 255, 0.18);
    font-weight: 600;
}

/*
 * Google Translate: keep widget alive (off-screen), hide only the banner bar.
 * Do NOT use display:none on #google_translate_element / .goog-te-combo —
 * that breaks init and language change.
 */
#google_translate_element {
    position: absolute !important;
    left: -9999px !important;
    top: 0 !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* “Şu dile çevrildi…” banner + balloon only */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-balloon-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
div#goog-gt-tt,
.goog-te-spinner-pos,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    border: none !important;
    box-shadow: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

.goog-logo-link,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
    display: none !important;
}

/* Google sets body { top: 40px !important } when banner shows — force reset */
html body,
html body.translated-ltr,
html body.translated-rtl,
body {
    top: 0 !important;
    position: static !important;
}

/* Translated pages: do not let GT shift/reflow the fixed header */
html.translated-ltr .header,
html.translated-rtl .header,
body.translated-ltr .header,
body.translated-rtl .header {
    top: 0 !important;
    width: 100% !important;
}

/* Navigation */
.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    row-gap: 4px;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
}

.nav-item {
    position: relative;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
}

.header-right,
.header-inner,
.header-container {
    overflow: visible;
}

/* Allow wrapping after Google Translate lengthens labels; avoid horizontal spill */
.header font {
    display: inline !important;
    vertical-align: inherit;
}

.nav-link {
    display: block;
    padding: 10px 7px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: clamp(11px, 1.05vw, 15px);
    color: var(--white);
    letter-spacing: var(--tracking-nav);
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1300; /* above open nested dropdown (1200) so L→R sibling labels stay hoverable */
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.25;
    text-align: center;
    max-width: 100%;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-item.active .nav-link::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary-light);
}

.nav-link-simple {
    display: block;
    padding: 10px 7px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1300;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.25;
    text-align: center;
}

/* Item-width hover corridor below each label (not the full mega/dropdown width).
   Open panels sit under this strip, so L→R and R→L sweeps hit the next item. */
.header-nav-row .nav-link::after,
.header-nav-row .nav-link-simple::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 48px;
}

.nav-link-simple:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary-light);
}

/* İGA - İş Geliştirme Akademisi Stacked Menu Item */
.nav-link-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px 7px;
    line-height: 1.1;
}

.nav-link-stacked .nav-link-subtitle {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2px;
    opacity: 0.85;
    display: block;
}

.nav-link-stacked .nav-link-title {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.header-nav-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 5px;
    position: relative;
    z-index: 1300;
}

.nav-search {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
    margin-left: 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1300;
    flex-shrink: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
}

.nav-search:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.nav-quick-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    margin-left: 10px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.nav-quick-menu:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .mobile-toggle,
.header.mega-open .mobile-toggle {
    background: var(--bg-glass);
    border-color: var(--border);
}

.header.scrolled .mobile-toggle span,
.header.mega-open .mobile-toggle span {
    background: var(--primary);
}

/* ==================== MEGA MENU - MODERN ==================== */
.mega-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-dropdown);
    pointer-events: none;
    display: block;
}

/* Hide mobile accordion on desktop */
.mobile-menu-accordion {
    display: none;
}

.mega-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(8, 18, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.1s ease, visibility 0.1s ease;
    padding-top: 130px;
    border-bottom: 3px solid transparent;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    contain: layout;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    /* Padding-top overlay must not intercept L→R sweeps across the nav bar */
    pointer-events: none;
}

.mega-menu.active .mega-menu-container {
    pointer-events: auto;
}

/* Instant hide when switching between menus (JS adds this class) */
.mega-menu.mega-menu--swap,
.mega-menu:not(.active) {
    transition: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* While menus are open, disable fade so L↔R swaps feel identical */
.header.mega-open .mega-menu {
    transition: none;
}

.header.mega-open .mega-menu.active:not(.mega-menu--swap) {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
}

.header.mega-open .mega-menu.active:not(.mega-menu--swap) .mega-menu-container {
    pointer-events: auto !important;
}

.mega-menu-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 45px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    position: relative;
}

/* Thin full-width bridge header → panel; nav-link::after sits above this in the item columns */
.mega-menu.active .mega-menu-container::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 12px;
}

/* Mega Menu Left - Slider */
.mega-menu-left {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
}

.mega-menu-slider {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mega-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-slide.active {
    opacity: 1;
}

.mega-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-slide.active img {
    transform: scale(1.05);
}

.mega-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(28, 69, 139, 0.95));
}

.mega-slide-content h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.mega-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 30px;
    display: flex;
    gap: 8px;
}

.mega-dot {
    width: 35px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.mega-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.mega-dot.active {
    background: var(--white);
    width: 50px;
    box-shadow: var(--shadow-glow);
}

/* Mega Menu Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    height: fit-content;
    align-self: flex-start;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
    width: 100%;
}

.mega-menu-grid::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mega-menu-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.mega-menu-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.mega-grid-item {
    position: relative;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    text-decoration: none !important;
    transition: var(--transition);
}

.mega-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mega-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.mega-grid-item:hover img {
    transform: scale(1.15);
}

.mega-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 35, 80, 0.96) 0%,
        rgba(28, 69, 139, 0.82) 42%,
        rgba(28, 69, 139, 0.28) 68%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 12px;
    transition: var(--transition);
    pointer-events: none;
}

.mega-grid-item:hover .mega-grid-overlay {
    background: linear-gradient(
        to top,
        rgba(12, 28, 64, 0.98) 0%,
        rgba(28, 69, 139, 0.9) 48%,
        rgba(28, 69, 139, 0.4) 72%,
        transparent 100%
    );
}

.mega-grid-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(15, 35, 80, 0.78);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

/* Mega Menu Right */
.mega-menu-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mega-menu-title {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    display: block;
    letter-spacing: -0.5px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius-full);
}

.mega-menu-columns {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.mega-menu-column {
    flex: 1;
    min-width: 200px;
    padding-right: 12px;
}

.mega-column-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.mega-column-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.mega-menu-column:hover .mega-column-title::after {
    width: 100%;
}

.mega-menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: flex-start;
}

.mega-menu-links li {
    margin-bottom: 0;
    flex-shrink: 0;
    display: inline-block;
}

.mega-menu-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
    position: relative;
    margin: 0;
    font-weight: 500;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    line-height: 1.4;
}

.mega-menu-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(122, 202, 237, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mega-menu-links a:hover::before {
    transform: scaleY(1);
}

.mega-menu-links a i {
    font-size: 11px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mega-menu-links a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* ==================== NESTED DROPDOWN (under parent nav item) ==================== */
/* static so .nested-dropdown positions against .header (yellow border), not the short link */
.nav-item.nav-item-nested {
    position: static;
}

.nav-item-nested > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    overflow: visible;
}

.nav-link-caret {
    font-size: 10px;
    opacity: 0.85;
    transition: transform 0.25s ease;
}

.nav-item-nested:hover > .nav-link .nav-link-caret,
.nav-item-nested.active > .nav-link .nav-link-caret,
.nav-item-nested.open > .nav-link .nav-link-caret {
    transform: rotate(180deg);
}

.nested-dropdown {
    position: absolute;
    /* top: 100% of .header = yellow border; left set by JS under trigger */
    top: 100%;
    /* left stays unset/0 until JS; never visible until .is-positioned */
    left: 0;
    min-width: 280px;
    max-width: 420px;
    width: max-content;
    background: rgba(8, 18, 42, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    /* Fade only — never transition left/top (would flash at left:0) */
    transition: opacity 0.12s ease, visibility 0.12s ease;
    transition-property: opacity, visibility;
    z-index: 1200;
    pointer-events: none;
    /* Do NOT use contain:paint — side flyouts overflow and must receive pointer events */
    overflow: visible;
}

/* Instant hide during top-level L↔R switches (JS) */
.nested-dropdown.nested-dropdown--swap,
.nav-item-nested:not(.open) > .nested-dropdown {
    transition: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Only after JS sets left — bare :hover / .open alone must not show at left:0 */
.nav-item-nested.open > .nested-dropdown.is-positioned:not(.nested-dropdown--swap) {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

/* Guard: open but not yet positioned stays fully hidden (no fade-in at left:0) */
.nav-item-nested.open > .nested-dropdown:not(.is-positioned),
.nav-item-nested.open > .nested-dropdown.nested-dropdown--swap {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: none !important;
}

/* Bridge is trigger-width only (see --nav-trigger-w). Full-width used to cover
   sibling top-level items and freeze L→R hover. Vertical gap is also covered by
   nav-link::after (z-index 1300 > this panel). */
.nav-item-nested.open > .nested-dropdown.is-positioned::before {
    content: '';
    position: absolute;
    left: 0;
    width: var(--nav-trigger-w, 100%);
    right: auto;
    bottom: 100%;
    height: 48px;
    pointer-events: none;
}

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

.nested-menu-item {
    position: relative;
}

.nested-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    line-height: 1.35;
    text-decoration: none;
}

.nested-menu-link span {
    flex: 1;
    min-width: 0;
}

.nested-menu-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nested-menu-item:hover > .nested-menu-link,
.nested-menu-item.open > .nested-menu-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-left-color: var(--secondary);
}

.nested-menu-item:hover > .nested-menu-link .nested-menu-arrow,
.nested-menu-item.open > .nested-menu-link .nested-menu-arrow {
    color: var(--secondary);
}

.nested-submenu {
    position: absolute;
    top: -6px;
    /* Overlap parent slightly so there is no dead gap between item and flyout */
    left: calc(100% - 4px);
    min-width: 280px;
    max-width: 440px;
    width: max-content;
    background: rgba(8, 18, 42, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.12s ease, visibility 0.12s ease;
    z-index: 1201;
    pointer-events: none;
    overflow: visible;
}

.nested-submenu .nested-menu-link {
    white-space: normal;
    line-height: 1.4;
}

/* JS .open only — CSS :hover caused flyout flash when parent panel appeared under cursor */
.nested-menu-item:not(.open) > .nested-submenu {
    transition: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.nested-menu-item.open > .nested-submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

/* Wide hover bridge: parent row → flyout (covers diagonal moves) */
.nested-menu-item.has-children::after {
    content: '';
    position: absolute;
    top: -8px;
    bottom: -8px;
    right: -20px;
    width: 28px;
    z-index: 1202;
}

/* Bridge on the flyout itself toward the parent link */
.nested-menu-item.open > .nested-submenu::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -16px;
    width: 20px;
}

/* Mobile nested accordion */
.mobile-nested-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nested-item {
    border-bottom: 1px solid rgba(28, 69, 139, 0.1);
}

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

.mobile-nested-toggle,
.mobile-nested-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nested-toggle:hover,
.mobile-nested-link:hover {
    background: rgba(28, 69, 139, 0.08);
    color: var(--primary);
}

.mobile-nested-toggle i {
    font-size: 11px;
    color: var(--primary);
    transition: transform 0.25s ease;
}

.mobile-nested-item.open > .mobile-nested-toggle i {
    transform: rotate(180deg);
}

.mobile-nested-content {
    display: none;
    padding-left: 12px;
    background: rgba(28, 69, 139, 0.04);
}

.mobile-nested-item.open > .mobile-nested-content {
    display: block;
}

.mobile-nested-content .mobile-nested-link,
.mobile-nested-content .mobile-nested-toggle {
    padding: 10px 16px;
    font-size: 16px;
    color: var(--primary-dark);
}

/* ==================== HERO SLIDER - ENHANCED ==================== */
/* Fixed menünün ALTINDA başlar; görsel/video header altına girmez */
:root {
    --header-offset: 134px;
}

.hero {
    height: calc(100vh - var(--header-offset));
    min-height: calc(750px - var(--header-offset));
    position: relative;
    overflow: hidden;
    margin: 0;
    margin-top: var(--header-offset);
    padding: 0;
    top: 0;
    z-index: 0;
    isolation: isolate;
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    will-change: auto;
    position: relative;
    z-index: 0;
    display: block;
}

.hero-slide video {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-embed {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-embed iframe {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    border: 0;
    transform: translateX(-50%);
}

/* Ken Burns / scale yok — üst kenar header altına kaçmasın */
.hero-slide img {
    transform: none !important;
}

.hero-slide.active img {
    transform: none !important;
}

.hero-slide video {
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: absolute;
    bottom: 38%;
    left: 60px;
    max-width: 650px;
    z-index: 10;
}

.hero-copy {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero-copy.active {
    opacity: 1;
    position: relative;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 700;
    color: var(--white);
    line-height: var(--lh-tight);
    letter-spacing: var(--tracking-display);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-title em {
    font-style: italic;
    color: var(--secondary-light);
    text-shadow: 0 0 20px rgba(122, 202, 237, 0.5);
}

.hero-subtitle {
    margin: 14px 0 0;
    max-width: 34em;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-sans);
    font-size: var(--fs-md, 1.05rem);
    font-weight: 400;
    line-height: var(--lh-snug, 1.45);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-cta {
    margin-top: 22px;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.hero-cta:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-cta i {
    font-size: 0.85em;
    transition: transform 0.25s ease;
}

.hero-cta:hover i {
    transform: translateX(4px);
}

/* Hero Navigation Dots */
.hero-nav {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.hero-dot.active {
    width: 60px;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-glow);
}

/* Hero Thumbnails */
.hero-thumbs {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 10;
}

.hero-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    opacity: 0.6;
    box-shadow: var(--shadow-md);
}

.hero-thumb:hover {
    opacity: 0.9;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-thumb.active {
    border-color: var(--white);
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    display: none;
}

.hero-scroll span {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-scroll i {
    font-size: 28px;
    animation: bounce 2s infinite;
}

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

/* ==================== HERO QUICK LINKS - OVERLAY ==================== */
.hero-quick-links {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    z-index: 15;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.hero-quick-links-header {
    text-align: center;
    margin-bottom: 20px;
}

.hero-quick-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-quick-title i {
    font-size: 24px;
    color: var(--accent);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-quick-subtitle {
    margin-top: 8px;
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.hero-discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.discover-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 16px;
    border: 1px solid #eef0f4;
    box-shadow: 0 14px 35px rgba(23, 43, 77, 0.12);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    will-change: transform, opacity;
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(23, 43, 77, 0.18);
}

.discover-card.discover-ready {
    animation: discoverFade 0.35s ease forwards;
    animation-delay: var(--delay, 0ms);
}

.discover-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--icon-bg, #e8f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a4d7a;
    font-size: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.discover-texts h4 {
    margin: 0 0 6px;
    font-family: var(--font-sans);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: var(--tracking-tight);
}

.discover-texts p {
    margin: 0;
    font-size: var(--fs-sm);
    color: #6b7280;
    line-height: var(--lh-snug);
}

@keyframes discoverFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-quick-links {
        bottom: 16px;
    }

    .hero-discover-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* ==================== SECTION DEFAULTS - MODERN ==================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: var(--primary-50);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.section-title em {
    font-style: italic;
    color: var(--primary-light);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: var(--fs-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--lh-snug);
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

/* ==================== BUTTONS - MODERN ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--fs-sm);
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== RHYTHM SECTION - MODERN ==================== */
.rhythm {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.rhythm-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
}

.rhythm-videos {
    display: flex;
    gap: 25px;
}

.video-card {
    position: relative;
    width: 220px;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover img {
    transform: scale(1.15);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(28, 69, 139, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
}

.video-play {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: auto;
    margin-top: auto;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-card:hover .video-play {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.2) rotate(90deg);
    box-shadow: var(--shadow-glow);
}

.video-overlay h4 {
    color: var(--white);
    font-size: 18px;
    text-align: center;
    font-family: var(--font-display);
}

.rhythm-content {
    max-width: 550px;
}

.rhythm-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.rhythm-title {
    font-family: var(--font-display);
    font-size: var(--fs-display);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.rhythm-title em {
    font-style: italic;
    color: var(--primary-light);
}

.rhythm-text {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.9;
}

.rhythm-avatars {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.rhythm-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.rhythm-avatars img:first-child {
    margin-left: 0;
}

.rhythm-avatars img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 1;
}

.rhythm-avatars span {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
    margin-left: 10px;
}

/* ==================== AKADEMIK BASARILAR SECTION - MODERN ==================== */
.akademik-basarilar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Şık arka plan deseni */
.akademik-basarilar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(122, 202, 237, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(248, 181, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 102px
        );
    opacity: 0.6;
    z-index: 0;
}

.akademik-basarilar::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(122, 202, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.akademik-basarilar .section-label,
.akademik-basarilar .section-title,
.akademik-basarilar .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.akademik-basarilar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    align-items: start;
}

.akademik-basarilar-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.akademik-basarilar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Durmuş Hatipoğlu afiş 1080×1440 — etkinlik posterleri gibi tam görünsün */
.akademik-basarilar-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0b2a5c;
}

.akademik-basarilar-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.akademik-basarilar-date-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.akademik-basarilar-date-overlay .akademik-basarilar-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-display);
}

.akademik-basarilar-date-overlay .akademik-basarilar-month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 1px;
}

.akademik-basarilar-content {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    flex: 0 0 auto;
}

.akademik-basarilar-card-name {
    color: #1a1a1a !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    font-family: var(--font-sans);
    margin: 0;
}

.akademik-basarilar-card-title {
    color: #334155 !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-sans);
    margin: 0;
    letter-spacing: 0;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.akademik-basarilar-date-text {
    font-size: 11px;
    color: #64748b !important;
    opacity: 1;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 2px;
}

.akademik-basarilar-date-text::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    opacity: 0.6;
}

/* Eski date stilleri kaldırıldı - artık akademik-basarilar-date-overlay kullanılıyor */

.akademik-basarilar-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.akademik-basarilar-card-title a {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    font-family: var(--font-sans);
    display: block;
}

.akademik-basarilar-card-title a:hover {
    color: var(--secondary-light);
}

.akademik-basarilar-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

.akademik-basarilar-arrow:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.15) rotate(90deg);
}

/* ==================== NEWS SECTION - MODERN ==================== */
.news {
    padding: 40px 0 20px;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.news-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 100%;
    min-height: 480px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.news-content {
    padding: 25px;
}

.news-card.featured .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 40px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.news-card.featured .news-date {
    color: rgba(255, 255, 255, 0.8);
}

.news-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--primary);
}

.news-card.featured .news-title {
    font-size: 28px;
}

.news-card.featured .news-title a {
    color: var(--white);
}

.news-card.featured .news-title a:hover {
    color: var(--secondary-light);
}

.news-excerpt {
    margin-top: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ==================== ACADEMIC SECTION - MODERN ==================== */
.academic {
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(250, 252, 255, 0.5) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.academic::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 202, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.academic::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.academic-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
}

.academic-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.academic-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--secondary);
}

.academic-list {
    margin-bottom: 35px;
}

.academic-list li {
    margin-bottom: 8px;
}

.academic-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--text-body);
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 15px;
    font-weight: 500;
}

.academic-list a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
    transform: translateX(5px);
}

.academic-list a i {
    font-size: 10px;
    color: var(--secondary);
}

.academic-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-xl);
}

.academic-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.academic-slide.active {
    opacity: 1;
}

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

.academic-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    background: linear-gradient(135deg, rgba(28, 69, 139, 0.97), rgba(13, 45, 94, 0.95));
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    backdrop-filter: blur(10px);
}

.academic-faculty {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.academic-slide-content h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 18px;
}

.academic-slide-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.academic-slider-nav {
    position: absolute;
    bottom: 35px;
    right: 35px;
    display: flex;
    gap: 12px;
}

.academic-prev,
.academic-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.academic-prev:hover,
.academic-next:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: scale(1.1);
}

.academic-dots {
    position: absolute;
    bottom: 35px;
    left: 50px;
    display: flex;
    gap: 10px;
}

.academic-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

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

.academic-dot.active {
    background: var(--white);
    width: 35px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
}

/* ==================== EVENTS SECTION - BOĞAZİÇİ EXACT COPY ==================== */
.events {
    padding: 15px 0 30px;
    background: #ffffff;
}

.events .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Header */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.events-header-left {
    flex: 1;
}

.events-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.events-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.events-nav-buttons {
    display: flex;
    gap: 10px;
}

.events-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
}

.events-nav-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.events-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.events-header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.events-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.events-btn i {
    font-size: 9px;
}

.events-btn-outline {
    background: white;
    color: #1e3a8a;
    border: 2px solid #cbd5e1;
}

.events-btn-outline:hover {
    border-color: #1e3a8a;
    background: #f8fafc;
}

.events-btn-primary {
    background: #1e3a8a;
    color: white;
    border: 2px solid #1e3a8a;
}

.events-btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
}

/* Slider */
.events-slider-wrapper {
    position: relative;
}

.events-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: none;
}

.events-slider::-webkit-scrollbar {
    display: none;
}

/* Card - Tüm kartlar aynı boyutta */
.event-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
    outline: none;
    box-shadow: none;
}

.event-card:hover {
    transform: translateY(-4px);
}

/* Poster — tiles ~5:6; ARDEK afiş ~4:5; cover + center crops minimal edges */
.event-poster {
    width: 100%;
    height: 360px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    cursor: pointer;
    background: #0b2a5c;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
}

/* Info Box - Sabit yükseklik */
.event-info {
    background: #dbeafe;
    padding: 20px;
    position: relative;
    min-height: 220px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 8px 0;
    line-height: 1.4;
    padding-right: 55px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.event-title:hover,
.event-title:focus-visible {
    text-decoration: underline;
    outline: none;
}

.event-category {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.event-details span {
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.event-details span i {
    color: #1e40af;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

.event-location {
    font-weight: 600;
    color: #1e3a8a;
}

.event-date,
.event-time {
    font-weight: 500;
}

/* Location Pin - Sağ alt köşe */
.event-location-pin {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.event-card:hover .event-location-pin {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .events-title {
        font-size: 32px;
    }
    
    .event-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .events-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .events-header-right {
        width: 100%;
    }
    
    .events-btn {
        flex: 1;
    }
    
    .event-card {
        flex: 0 0 260px;
    }
    
    .event-poster {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .events-title {
        font-size: 28px;
    }
    
    .events-subtitle {
        font-size: 13px;
    }
    
    .event-card {
        flex: 0 0 240px;
    }
    
    .event-poster {
        height: 280px;
    }
    
    .event-info {
        padding: 16px;
    }
}

/* ==================== CAMPUS LIFE SECTION - MODERN ==================== */
.campus-life {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(28, 69, 139, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.campus-life .container {
    position: relative;
    z-index: 5;
}

.campus-life-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
}

.campus-life-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.campus-life-title {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 25px;
}

.campus-life-title em {
    font-style: italic;
    color: var(--secondary-light);
}

.campus-life-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 650px;
    line-height: 1.9;
}

.campus-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.campus-service {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.campus-service:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.campus-service-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius);
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.campus-service-content h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 6px;
    font-family: var(--font-sans);
    font-weight: 700;
}

.campus-service-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

/* ==================== STATS SECTION - MODERN ==================== */
.stats {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(28, 69, 139, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(28, 69, 139, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(122, 202, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}


/* ==================== CAMPUSES SECTION - MODERN ==================== */
.campuses {
    padding: 80px 0;
    background: var(--white);
}

/* Eski campus stilleri kaldırıldı - yeni stiller aşağıda */

/* ==================== MOBILE APP SECTION - MODERN & AESTHETIC ==================== */
.mobile-app {
    background: linear-gradient(135deg, 
        rgba(28, 69, 139, 0.03) 0%, 
        rgba(122, 202, 237, 0.05) 50%, 
        rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(28, 69, 139, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mobile-app::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 202, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mobile-content {
    position: relative;
}

.mobile-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(248, 181, 0, 0.15) 0%, rgba(248, 181, 0, 0.25) 100%);
    color: #d4a017;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.2);
    border: 1px solid rgba(248, 181, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(248, 181, 0, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(248, 181, 0, 0.4); }
}

.mobile-title {
    font-family: var(--font-display);
    font-size: var(--fs-display);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: var(--lh-tight);
    letter-spacing: var(--tracking-display);
    position: relative;
}

.mobile-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, transparent 100%);
    border-radius: var(--radius-full);
}

.mobile-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 5px;
}

.mobile-subtitle {
    font-size: 20px;
    color: var(--text-body);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.85;
    line-height: 1.5;
}

.mobile-text {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 45px;
    line-height: 1.9;
    font-weight: 400;
}

.mobile-features {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-features li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    font-size: 17px;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    border: 1px solid rgba(28, 69, 139, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-features li:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(28, 69, 139, 0.12);
    border-color: rgba(122, 202, 237, 0.3);
}

.mobile-features li:hover::before {
    transform: scaleY(1);
}

.mobile-features li:last-child {
    margin-bottom: 0;
}

.mobile-features i {
    color: var(--secondary);
    font-size: 22px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(122, 202, 237, 0.15) 0%, rgba(28, 69, 139, 0.1) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mobile-features li:hover i {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(28, 69, 139, 0.9) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(28, 69, 139, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
}

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

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

.app-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(28, 69, 139, 0.35);
    background: linear-gradient(135deg, rgba(28, 69, 139, 0.95) 0%, var(--primary) 100%);
}

.app-btn:active {
    transform: translateY(-2px) scale(1);
}

.app-btn i {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

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

.app-btn > div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-btn span {
    display: block;
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.app-btn strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

.mobile-mockup {
    position: relative;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 45px;
    padding: 14px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.phone-frame:hover {
    transform: scale(1.05) rotateY(-8deg) rotateX(5deg);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 8px rgba(122, 202, 237, 0.1),
        inset 0 0 0 1px rgba(122, 202, 237, 0.2);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
    transition: transform 0.6s ease;
}

.phone-frame:hover img {
    transform: scale(1.05);
}

.phone-back {
    position: absolute;
    right: -40px;
    z-index: 1;
    transform: rotate(15deg) translateX(60px) scale(0.85);
    opacity: 0.6;
    filter: blur(2px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-mockup:hover .phone-back {
    transform: rotate(12deg) translateX(50px) scale(0.9);
    opacity: 0.7;
    filter: blur(1px);
}

/* ==================== PARTNERS SECTION - MODERN ==================== */
.partners {
    background: var(--bg-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.partner-logo {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.6;
    border: 1px solid var(--border);
    height: 100px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.partner-logo img {
    max-height: 50px;
    max-width: 100%;
}

/* ==================== FOOTER MAP ==================== */
.footer-map {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    z-index: 1;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%);
}

/* ==================== FOOTER - MODERN ==================== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary) 50%, transparent 100%);
    opacity: 0.3;
}

.footer-main {
    padding: 70px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.footer-brand:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(122, 202, 237, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0;
    transition: var(--transition);
    flex-shrink: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.footer-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 65px;
    width: auto;
    display: block;
    filter: none;
}

.footer-brand-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-address,
.footer-email {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.7;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-address::before,
.footer-email::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.footer-address:hover,
.footer-email:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(122, 202, 237, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-address:hover::before,
.footer-email:hover::before {
    transform: scaleY(1);
}

.footer-address i,
.footer-email i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 20px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 202, 237, 0.15);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.footer-address:hover i,
.footer-email:hover i {
    background: rgba(122, 202, 237, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(122, 202, 237, 0.3);
}

.footer-email a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-email a:hover {
    color: var(--secondary-light);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-social-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.footer-social-item:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social-item i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.footer-social-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.footer-social-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
}

.footer-social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.footer-social-linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.footer-social-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
}

.footer-social-item:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.footer-phone-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-phone-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.footer-phone-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(122, 202, 237, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-phone-link:hover::before {
    transform: scaleY(1);
}

.footer-phone-link i {
    color: var(--secondary);
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 202, 237, 0.15);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.footer-phone-link:hover i {
    background: rgba(122, 202, 237, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(122, 202, 237, 0.3);
}

.footer-phone-link a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    font-weight: 500;
}

.footer-phone-link a:hover {
    color: var(--secondary-light);
    text-decoration: none;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary) 50%, transparent 100%);
    opacity: 0.5;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==================== SCROLL TO TOP - MODERN ==================== */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-tooltip);
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl), var(--shadow-glow-primary);
}

/* ==================== ANIMATIONS - MODERN ==================== */
.animate-ready {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* ==================== RESPONSIVE DESIGN - ENHANCED ==================== */

/* Large Desktops */
@media (max-width: 1400px) {
    :root {
        --section-padding: 25px;
    }
    
    .header-container { padding: 18px 30px; }
    .nav-link { padding: 10px 16px; font-size: 16px; }
    .page-hero-title { font-size: 18px; }
    .header-btn { padding: 8px 14px; font-size: 11px; }
    .mega-menu-container { 
        padding: 18px 35px 25px; 
        gap: 0;
        grid-template-columns: 300px 1fr;
    }
    .events-grid { grid-template-columns: repeat(4, 1fr); }
    
    .hero-quick-links { bottom: 20px; padding: 0; }
    .hero-quick-item { width: 110px; padding: 14px 8px; }
    .hero-quick-icon { width: 42px; height: 42px; }
    .hero-quick-icon i { font-size: 20px; }
    .hero-quick-text { font-size: 10px; }
}

/* Tablets Landscape */
@media (max-width: 1200px) {
    :root {
        --container-padding: 20px;
    }
    
    .header-container { padding: 15px 30px; }
    .header-right {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .header-nav-row {
        display: flex;
        flex-wrap: nowrap;
    }
    .header-nav-row > :not(.header-nav-icons) {
        display: none;
    }
    .header-nav-icons {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .hero-quick-links { bottom: 18px; padding: 0; width: 92%; }
    .hero-quick-title { font-size: 18px; }
    .hero-quick-title i { font-size: 20px; }
    .hero-quick-container { gap: 10px; }
    .hero-quick-item { width: 100px; padding: 14px 6px; }
    .hero-quick-icon { width: 40px; height: 40px; }
    .hero-quick-icon i { font-size: 18px; }
    .hero-quick-nav { width: 38px; height: 38px; font-size: 14px; }
    .header-top-row { flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
    .header-btn { padding: 7px 12px; font-size: 10px; }
    .header-btn-today { padding: 7px 12px; font-size: 10px; }
    .header-btn-today span { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero {
        min-height: calc(550px - var(--header-offset));
    }
    .hero-title { font-size: var(--fs-hero); }
    
    .akademik-basarilar-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
    }
    .akademik-basarilar-card-title {
        font-size: 15px;
    }
    .news-content-wrapper { grid-template-columns: 1fr 1fr; gap: 25px; }
    .news-grid-wrapper { grid-template-columns: 1fr; }
    .events-slider { margin: 0 -15px; padding: 0 15px 20px; }
    .event-card { width: 240px; }
    .partners-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    /* Mega Menu Grid Tablet */
    .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }
    .mega-grid-item { height: 130px; }
    .campus-services { grid-template-columns: repeat(2, 1fr); }
    .campuses-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Tablets Portrait */
@media (max-width: 992px) {
    :root {
        --section-padding: 20px;
        --container-padding: 20px;
    }
    
    .container {
        padding: 0 var(--container-padding);
    }
    
    .mega-menu-wrapper { display: none; }
    
    .header-right { 
        display: flex;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: auto;
        padding: 0;
        max-height: none;
        overflow: visible;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: auto;
        max-width: none;
        margin-left: 0;
        transition: none;
    }

    .header-top-row,
    .mobile-menu-accordion {
        display: none;
    }

    .header-nav-row {
        display: flex;
        flex-wrap: nowrap;
    }

    .header-nav-row > :not(.header-nav-icons) {
        display: none !important;
    }
    
    body.mobile-menu-open .header {
        z-index: calc(var(--z-fixed) + 20);
        background: #1a264a !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.mobile-menu-open .header-right {
        display: flex;
        position: fixed;
        top: var(--mobile-menu-top, var(--header-offset, 90px));
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        z-index: calc(var(--z-fixed) + 15);
        padding: 25px 20px;
        max-height: calc(100dvh - var(--mobile-menu-top, var(--header-offset, 90px)));
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        scroll-padding-top: 12px;
        scroll-padding-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
        transform: none;
        opacity: 1;
        visibility: visible;
        width: auto;
        max-width: none;
        transition: top 0.15s ease, max-height 0.15s ease;
    }

    body.mobile-menu-open .header-right .mobile-menu-accordion {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 8px;
    }
    
    body.mobile-menu-open .header-right .header-top-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }

    body.mobile-menu-open .header-right .header-top-row > .header-icon-btns,
    body.mobile-menu-open .header-right .header-top-row > #google_translate_element {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
    }
    
    body.mobile-menu-open .header-right .header-nav-row {
        display: none;
    }
    
    body.mobile-menu-open .header-right .header-btn,
    body.mobile-menu-open .header-right .header-btn-today {
        display: inline-flex;
        width: 100%;
        max-width: none;
        min-width: 0;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 12px 10px;
        font-size: 13px;
        line-height: 1.25;
        background: rgba(28, 69, 139, 0.08);
        border: 1px solid rgba(28, 69, 139, 0.15);
        color: var(--primary);
        text-shadow: none;
    }
    
    body.mobile-menu-open .header-right .header-btn:hover,
    body.mobile-menu-open .header-right .header-btn-today:hover {
        background: rgba(28, 69, 139, 0.12);
        border-color: rgba(28, 69, 139, 0.25);
    }
    
    body.mobile-menu-open .header-right .header-icon-btns {
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
    
    body.mobile-menu-open .header-right .header-icon-btn {
        background: rgba(28, 69, 139, 0.1);
        border-color: rgba(28, 69, 139, 0.2);
        color: var(--primary);
    }
    
    body.mobile-menu-open .header-right .header-icon-btn:hover {
        background: rgba(28, 69, 139, 0.15);
        border-color: rgba(28, 69, 139, 0.3);
    }

    body.mobile-menu-open .lang-dropdown {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(28, 69, 139, 0.15);
        box-shadow: 0 10px 28px rgba(13, 45, 94, 0.18);
    }

    body.mobile-menu-open .lang-option {
        color: var(--primary-dark);
    }

    body.mobile-menu-open .lang-option:hover,
    body.mobile-menu-open .lang-option:focus-visible,
    body.mobile-menu-open .lang-option.is-active {
        background: rgba(28, 69, 139, 0.1);
        color: var(--primary);
    }
    
    .header-inner { align-items: center; justify-content: space-between; }
    .header-nav-icons {
        align-self: center;
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 0;
        gap: 5px;
    }
    .mobile-toggle { display: flex; }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu Accordion */
    .mobile-menu-accordion {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    
    body.mobile-menu-open .mobile-menu-accordion {
        display: block;
    }
    
    .mobile-menu-item {
        margin-bottom: 12px;
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(226, 232, 240, 0.8);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu-item:hover {
        border-color: rgba(28, 69, 139, 0.3);
        box-shadow: 0 8px 30px rgba(28, 69, 139, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }
    
    .mobile-menu-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: left;
        position: relative;
        color: var(--primary);
    }
    
    .mobile-menu-header::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 0 4px 4px 0;
    }
    
    .mobile-menu-header:hover {
        background: linear-gradient(135deg, rgba(241, 245, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    }
    
    .mobile-menu-header:hover::before {
        opacity: 1;
    }
    
    .mobile-menu-header.active {
        background: linear-gradient(135deg, rgba(28, 69, 139, 0.08) 0%, rgba(122, 202, 237, 0.05) 100%);
        border-bottom: 2px solid rgba(28, 69, 139, 0.2);
    }
    
    .mobile-menu-header.active::before {
        opacity: 1;
    }
    
    .mobile-menu-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .mobile-menu-header.active .mobile-menu-title {
        color: var(--primary);
    }
    
    .mobile-menu-icon {
        font-size: 12px;
        color: var(--primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.7;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(28, 69, 139, 0.08);
    }
    
    .mobile-menu-header:hover .mobile-menu-icon {
        opacity: 1;
        background: rgba(28, 69, 139, 0.12);
    }
    
    .mobile-menu-header.active .mobile-menu-icon {
        transform: rotate(180deg);
        opacity: 1;
        background: rgba(28, 69, 139, 0.15);
        color: var(--primary);
    }
    
    .mobile-menu-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        opacity: 0;
        background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    }
    
    .mobile-menu-item.active .mobile-menu-content {
        max-height: 2000px;
        opacity: 1;
        padding: 0 0 8px 0;
    }
    
    .mobile-menu-section {
        padding: 18px 22px;
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    }
    
    .mobile-menu-section:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-section-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(28, 69, 139, 0.15);
    }
    
    .mobile-menu-section-title::before {
        content: '';
        width: 4px;
        height: 18px;
        background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
        border-radius: var(--radius-full);
        box-shadow: 0 2px 8px rgba(122, 202, 237, 0.3);
    }
    
    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .mobile-menu-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        color: rgba(51, 65, 85, 0.9);
        text-decoration: none;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(226, 232, 240, 0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 16px;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-menu-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
        transform: scaleY(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 3px 3px 0;
    }
    
    .mobile-menu-link:hover {
        background: linear-gradient(135deg, rgba(28, 69, 139, 0.08) 0%, rgba(122, 202, 237, 0.05) 100%);
        border-color: rgba(28, 69, 139, 0.25);
        transform: translateX(6px);
        color: var(--primary);
        box-shadow: 0 4px 12px rgba(28, 69, 139, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu-link:hover::before {
        transform: scaleY(1);
    }
    
    .mobile-menu-link i {
        font-size: 11px;
        color: var(--secondary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(122, 202, 237, 0.15);
    }
    
    .mobile-menu-link:hover i {
        transform: translateX(4px);
        color: var(--primary);
        background: rgba(28, 69, 139, 0.15);
    }
    
    .mobile-menu-link span {
        flex: 1;
    }
    
    .mobile-menu-link-simple {
        display: block;
        padding: 14px 18px;
        color: rgba(51, 65, 85, 0.9);
        text-decoration: none;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(226, 232, 240, 0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }
    
    .mobile-menu-link-simple:hover {
        background: linear-gradient(135deg, rgba(28, 69, 139, 0.08) 0%, rgba(122, 202, 237, 0.05) 100%);
        border-color: rgba(28, 69, 139, 0.25);
        color: var(--primary);
        box-shadow: 0 4px 12px rgba(28, 69, 139, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    body.mobile-menu-open .mobile-nested-toggle,
    body.mobile-menu-open .mobile-nested-link,
    body.mobile-menu-open .mobile-nested-content .mobile-nested-link,
    body.mobile-menu-open .mobile-nested-content .mobile-nested-toggle {
        color: var(--primary);
    }

    body.mobile-menu-open .mobile-nested-toggle:hover,
    body.mobile-menu-open .mobile-nested-link:hover {
        background: rgba(28, 69, 139, 0.08);
        color: var(--primary);
    }

    body.mobile-menu-open .mobile-nested-content {
        background: rgba(28, 69, 139, 0.04);
    }
    
    .hero { min-height: calc(500px - var(--header-offset)); }
    .hero-content { left: 20px; right: 20px; max-width: none; }
    .hero-title { font-size: var(--fs-hero); line-height: var(--lh-tight); }
    .hero-thumbs { right: 20px; }
    .hero-thumb { width: 55px; height: 55px; }
    .hero-scroll { font-size: 12px; }
    
    .rhythm-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .rhythm-left { gap: 30px; }
    .rhythm-videos { justify-content: center; flex-wrap: wrap; }
    .rhythm-video-cards { overflow-x: auto; scroll-snap-type: x mandatory; }
    .rhythm-video-card { scroll-snap-align: start; flex-shrink: 0; }
    .rhythm-bottom-content { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 25px; 
        margin-top: 30px; 
    }
    .rhythm-title-area { width: 100%; }
    .rhythm-instagram-btn { 
        width: 100%; 
        justify-content: center; 
    }
    .rhythm-right { justify-content: center; }
    .rhythm-stories-card { 
        margin: 0 auto; 
        max-width: 600px; 
        width: 100%; 
    }
    .rhythm-stories-header { text-align: center; }
    .rhythm-stories-btn { 
        width: 100%; 
        justify-content: center; 
    }
    .rhythm-stories-avatars { justify-content: center; }
    .rhythm-stories-text { text-align: center; }
    .rhythm-stories-nav { 
        justify-content: center; 
        gap: 10px;
        width: 100%;
    }
    .rhythm-stories-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
    
    .academic-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .academic-left { order: 2; }
    .academic-right { order: 1; }
    .academic-slide-content { width: 100%; }
    
    .stats-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .stats-rankings { justify-content: center; }
    .stats-grid-top { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats-grid-bottom { grid-template-columns: 1fr; gap: 20px; }
    
    .events .container { padding: 0 30px; background: transparent; border: none; box-shadow: none; }
    .events-header { margin-bottom: 35px; }
    .events-title { font-size: 36px; }
    .events-subtitle { font-size: 16px; }
    
    .campus-life-wrapper { grid-template-columns: 1fr; gap: 40px; padding: 80px 0 40px; }
    .campus-life-title-card { padding: 35px 50px; width: 95%; }
    .campus-life-heading { font-size: 34px; }
    .campus-life-services { max-width: 600px; margin: 0 auto; }
    
    .news-content-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .news-featured-slider { order: 1; }
    .news-grid-wrapper { order: 2; }
    .news-slider-container { height: 400px; }
    .news-slide-content { padding: 30px 25px; }
    
    .mobile-grid { 
        grid-template-columns: 1fr; 
        gap: 60px; 
    }
    .mobile-content { 
        text-align: center; 
    }
    .mobile-title {
        font-size: 42px;
    }
    .mobile-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .mobile-features li { 
        justify-content: flex-start; 
        padding: 16px 20px;
    }
    .mobile-mockup {
        height: 500px;
    }
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    .phone-back {
        display: none;
    }
    .app-buttons {
        flex-direction: column;
    }
    .app-btn {
        width: 100%;
        justify-content: center;
    }
    .app-buttons { justify-content: center; flex-wrap: wrap; }
    .mobile-mockup { display: none; }
    
    .campuses-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .campus-card.large { grid-column: span 2; }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    :root {
        --section-padding: 15px;
        --container-padding: 16px;
    }
    
    .container {
        padding: 0 var(--container-padding);
    }
    
    /* Header */
    .header-container { padding: 12px 16px; }
    .header-inner { justify-content: space-between; }
    .header-nav-icons .nav-search {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    /* Hero Quick Links */
    .hero-quick-links { 
        bottom: 14px; 
        padding: 0;
        width: 95%;
        border-radius: var(--radius-md);
    }
    .hero-quick-links-header { margin-bottom: 12px; }
    .hero-quick-title { font-size: 14px; gap: 6px; }
    .hero-quick-title i { font-size: 16px; }
    .hero-quick-container { gap: 6px; }
    .hero-quick-nav { width: 32px; height: 32px; font-size: 12px; }
    .hero-quick-item { width: 85px; padding: 10px 5px; gap: 6px; }
    .hero-quick-icon { width: 35px; height: 35px; }
    .hero-quick-icon i { font-size: 16px; }
    .hero-quick-text { font-size: 9px; }
    .logo { gap: 12px; max-width: calc(100% - 110px); }
    .logo-title, .logo-subtitle { font-size: 16px; }
    .logo-img { width: 270px; max-width: 100%; height: auto; aspect-ratio: 342 / 94; }
    .logo-img i { font-size: 20px; }
    .mobile-toggle { 
        width: 40px; 
        height: 40px; 
        gap: 4px;
    }
    .mobile-toggle span { 
        width: 20px; 
        height: 2px; 
    }
    
    body.mobile-menu-open .header-right {
        top: var(--mobile-menu-top, var(--header-offset, 90px));
        padding: 20px 16px;
        max-height: calc(100dvh - var(--mobile-menu-top, var(--header-offset, 90px)));
    }
    
    /* Hero */
    .hero { min-height: calc(500px - var(--header-offset)); }
    .hero-content { left: 16px; right: 16px; bottom: 42%; }
    .hero-title { font-size: var(--fs-hero); line-height: var(--lh-snug); }
    .hero-thumbs { display: none; }
    .hero-scroll { font-size: 11px; bottom: 30px; }
    .hero-nav { bottom: 32%; }
    
    /* Sections */
    .section { padding: 60px 0; }
    .section-title { font-size: var(--fs-section); }
    
    /* Rhythm Section - Mobile Optimized */
    .rhythm-wrapper { 
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 30px 0 !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .rhythm-left { 
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
        min-height: auto !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .rhythm-right { 
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 2 !important;
        justify-content: center !important;
        min-height: auto !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .rhythm-main-title { 
        font-size: 28px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
        line-height: 1.2 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .rhythm-main-desc { 
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .rhythm-videos { 
        display: flex !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    .rhythm-nav { 
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
        flex-shrink: 0 !important;
    }
    .rhythm-video-cards { 
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        flex: 1 !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .rhythm-video-cards::-webkit-scrollbar {
        display: none !important;
    }
    .rhythm-video-card { 
        width: 130px !important;
        min-width: 130px !important;
        max-width: 130px !important;
        height: 200px !important;
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
    }
    .rhythm-video-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .rhythm-bottom-content { 
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 18px !important;
        margin-top: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .rhythm-title-area { 
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }
    .rhythm-instagram-btn { 
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        align-self: stretch !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
        box-sizing: border-box !important;
    }
    .rhythm-stories-card { 
        padding: 25px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
    }
    .rhythm-stories-header { 
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
    }
    .rhythm-stories-title { 
        font-size: 22px !important;
        margin-bottom: 6px !important;
        text-align: center !important;
        line-height: 1.2 !important;
        width: 100% !important;
    }
    .rhythm-stories-subtitle { 
        font-size: 12px !important;
        margin-bottom: 18px !important;
        text-align: center !important;
        width: 100% !important;
    }
    .rhythm-stories-btn { 
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 12px !important;
        margin: 0 auto 18px auto !important;
        display: inline-flex !important;
        box-sizing: border-box !important;
    }
    .rhythm-stories-avatars { 
        display: flex !important;
        gap: 10px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        margin-bottom: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .rhythm-stories-avatars img { 
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important;
        border-radius: 50% !important;
    }
    .rhythm-stories-text { 
        font-size: 12px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        margin-bottom: 18px !important;
        width: 100% !important;
    }
    .rhythm-stories-nav {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .rhythm-stories-nav-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 11px !important;
        flex-shrink: 0 !important;
    }
    
    /* akademik-basarilar */
    .akademik-basarilar-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .akademik-basarilar-title-wrapper { width: 100%; }
    .akademik-basarilar-title { font-size: 24px; }
    .akademik-basarilar-nav { margin-top: 15px; }
    .akademik-basarilar-grid { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .akademik-basarilar-card-title {
        font-size: 14px;
    }
    .akademik-basarilar-date-text {
        font-size: 11px;
    }
    
    /* News */
    .news-section-header { flex-direction: column; gap: 20px; }
    .news-section-title { font-size: 24px; }
    .news-section-subtitle { font-size: 14px; }
    .news-content-wrapper { grid-template-columns: 1fr; gap: 25px; }
    .news-slider-container { height: 380px; }
    .news-slide-content { padding: 25px 20px; min-height: 180px; }
    .news-slide-title { font-size: 20px; }
    .news-slide-excerpt { font-size: 13px; }
    .news-grid-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .news-grid-card { padding: 15px; }
    .news-grid-title { font-size: 16px; }
    .news-slider-nav { width: 32px; height: 32px; font-size: 11px; top: 15px; }
    .news-slider-prev { right: 45px; }
    .news-slider-next { right: 10px; }
    
    /* Academic */
    .academic-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .academic-title { font-size: 28px; }
    .academic-subtitle { font-size: 14px; }
    .academic-header-right { width: 100%; }
    .academic-btn { flex: 1; justify-content: center; }
    .academic-wrapper { gap: 30px; }
    .academic-featured-image { height: 250px; }
    .academic-featured-title { font-size: 22px; }
    .academic-featured-desc { font-size: 13px; }
    .academic-programs-grid { grid-template-columns: 1fr; gap: 20px; }
    .academic-slider { min-height: 450px; }
    .academic-slide-image { min-height: 300px; }
    .academic-slide-content { padding: 25px 20px; }
    .academic-slide-title { font-size: 20px; }
    .academic-slide-desc { font-size: 13px; }
    .academic-slider-nav { width: 40px; height: 40px; font-size: 12px; }
    
    /* Events */
    .events { padding: 60px 0; }
    .events .container { padding: 0 20px; background: transparent; border: none; box-shadow: none; }
    .events-header { margin-bottom: 30px; }
    .events-title { font-size: 32px; }
    .events-subtitle { font-size: 15px; }
    
    /* Campus Life */
    .campus-life { padding: 140px 0 60px; }
    .campus-life-title-card { padding: 30px 30px 45px; width: 95%; }
    .campus-life-main-title { font-size: 32px; }
    .campus-life-main-subtitle { font-size: 14px; }
    .campus-life-flower { width: 55px; height: 65px; bottom: -25px; }
    .campus-life-wrapper { padding: 80px 0 50px; gap: 35px; }
    .campus-life-heading { font-size: 30px; }
    .campus-life-desc { font-size: 15px; }
    .campus-life-btn { width: 100%; justify-content: center; padding: 14px 28px; }
    .campus-life-services { grid-template-columns: 1fr; gap: 15px; }
    .campus-service-card { padding: 20px 22px; }
    .campus-service-icon { width: 50px; height: 50px; font-size: 20px; }
    
    /* Stats */
    .stats { padding: 80px 0; }
    .stats-wrapper { gap: 40px; }
    .stats-header { flex-direction: column; gap: 25px; align-items: flex-start; }
    .stats-title { font-size: 32px; }
    .stats-subtitle { font-size: 16px; }
    .stats-all-btn { width: 100%; justify-content: center; }
    .stats-grid-top { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .stats-grid-bottom { grid-template-columns: 1fr; gap: 18px; }
    .ranking-card { padding: 28px; }
    .ranking-main-text { font-size: 24px; }
    .stat-card-top { padding: 24px 20px; }
    .stat-icon { width: 56px; height: 56px; font-size: 28px; }
    .stat-number { font-size: 36px; }
    .stat-card-bottom { padding: 30px 24px; }
    .stat-icon-large { width: 70px; height: 70px; font-size: 32px; }
    .stat-number-large { font-size: 40px; }
    .stat-card-top { padding: 20px; }
    .stat-card-bottom { padding: 25px 20px; }
    .stat-number { font-size: 36px; }
    .stat-number-large { font-size: 28px; }
    .stat-label { font-size: 12px; }
    .stat-label-large { font-size: 13px; }
    .ranking-card { padding: 25px 20px; }
    
    /* Campuses */
    .campuses-header { margin-bottom: 30px; }
    .campuses-title { font-size: 28px; }
    .campuses-subtitle { font-size: 14px; }
    .campuses-grid { grid-template-columns: 1fr; gap: 20px; }
    .campus-card { min-height: 280px; }
    .campus-card.large { min-height: 350px; }
    .campus-name { font-size: 20px; }
    .campus-desc { font-size: 13px; }
    .campus-buttons { flex-direction: column; gap: 10px; }
    .campus-btn { width: 100%; justify-content: center; }
    
    /* Mobile App */
    .mobile-app {
        padding: 80px 0;
    }
    .mobile-grid {
        gap: 50px;
    }
    .mobile-title { 
        font-size: 36px; 
        margin-bottom: 15px;
    }
    .mobile-title::after {
        width: 60px;
    }
    .mobile-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .mobile-text { 
        font-size: 16px; 
        margin-bottom: 35px;
    }
    .mobile-features { 
        gap: 10px; 
        margin-bottom: 40px;
    }
    .mobile-features li { 
        font-size: 15px; 
        padding: 14px 18px;
    }
    .mobile-features i {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    .app-btn {
        padding: 14px 24px;
    }
    .app-btn i {
        font-size: 32px;
    }
    .app-btn strong {
        font-size: 16px;
    }
    .mobile-mockup {
        height: 450px;
    }
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    .app-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .app-btn { width: 100%; justify-content: center; }
    
    /* Partners */
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .partner-logo { padding: 20px; height: 80px; }
    
    /* Mega Menu Grid */
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-grid-item { height: 120px; }
    
    /* Footer */
    .footer-map { height: 300px; }
    .footer { padding: 50px 0 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-left,
    .footer-right { align-items: flex-start; }
    .footer-brand { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
        padding: 15px;
    }
    .footer-logo-img { height: 50px; }
    .footer-brand-title { font-size: 14px; }
    .footer-right { align-items: flex-start; }
    .footer-social { 
        justify-content: flex-start; 
        flex-wrap: wrap;
        padding: 15px;
    }
    .footer-address,
    .footer-email,
    .footer-phone-link {
        padding: 15px;
    }
    .footer-address i,
    .footer-email i,
    .footer-phone-link i {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .footer-social-item {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .footer-bottom-inner { flex-direction: column; gap: 20px; text-align: center; }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    :root {
        --section-padding: 12px;
        --container-padding: 12px;
    }
    
    .container {
        padding: 0 var(--container-padding);
    }
    
    /* Header */
    .header-container { padding: 10px 12px; }
    .header-inner { justify-content: space-between; }
    .header-nav-icons .nav-search {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .logo { gap: 10px; max-width: calc(100% - 100px); }
    .logo-title, .logo-subtitle { font-size: 14px; }
    .logo-img { width: 230px; max-width: 100%; height: auto; aspect-ratio: 342 / 94; }
    .logo-img i { font-size: 18px; }
    .mobile-toggle { 
        width: 38px; 
        height: 38px; 
        gap: 4px;
    }
    .mobile-toggle span { 
        width: 20px; 
        height: 2px; 
    }
    
    /* Hero */
    .hero { min-height: calc(450px - var(--header-offset)); }
    .hero-content { left: 12px; right: 12px; bottom: 44%; }
    .hero-title { font-size: var(--fs-hero); line-height: var(--lh-tight); }
    .hero-scroll { font-size: 10px; bottom: 25px; }
    .hero-nav { bottom: 34%; gap: 8px; }
    .hero-dot { width: 8px; height: 8px; }
    
    /* Sections */
    .section { padding: 50px 0; }
    .section-title { font-size: var(--fs-section); }
    
    /* Rhythm - Small Mobile */
    .rhythm-wrapper { 
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 25px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .rhythm-left { 
        gap: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }
    .rhythm-right { 
        width: 100% !important;
        max-width: 100% !important;
        order: 2 !important;
    }
    /* Mega Menu Grid Mobile */
    .mega-menu-grid { grid-template-columns: 1fr; }
    
    .rhythm-main-title { 
        font-size: 24px !important;
        margin-bottom: 8px !important;
        text-align: left !important;
        line-height: 1.2 !important;
        width: 100% !important;
    }
    .rhythm-main-desc { 
        font-size: 13px !important;
        line-height: 1.5 !important;
        text-align: left !important;
        width: 100% !important;
    }
    .rhythm-videos { 
        gap: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .rhythm-nav { 
        width: 30px !important;
        height: 30px !important;
        font-size: 10px !important;
    }
    .rhythm-video-card { 
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        height: 170px !important;
    }
    .rhythm-video-card img { 
        height: 100% !important;
        width: 100% !important;
    }
    .rhythm-bottom-content { 
        gap: 15px !important;
        margin-top: 18px !important;
        width: 100% !important;
    }
    .rhythm-instagram-btn { 
        padding: 11px 18px !important;
        font-size: 12px !important;
    }
    .rhythm-stories-card { 
        padding: 22px 18px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .rhythm-stories-title { 
        font-size: 20px !important;
        margin-bottom: 5px !important;
    }
    .rhythm-stories-subtitle { 
        font-size: 11px !important;
        margin-bottom: 15px !important;
    }
    .rhythm-stories-btn { 
        padding: 11px 18px !important;
        font-size: 11px !important;
        margin-bottom: 15px !important;
    }
    .rhythm-stories-avatars { 
        gap: 8px !important;
        margin-bottom: 15px !important;
    }
    .rhythm-stories-avatars img { 
        width: 40px !important;
        height: 40px !important;
    }
    .rhythm-stories-text { 
        font-size: 11px !important;
        margin-bottom: 15px !important;
    }
    .rhythm-stories-nav-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 10px !important;
    }
    
    /* akademik-basarilar */
    .akademik-basarilar-header { margin-bottom: 25px; }
    .akademik-basarilar-title { font-size: 21px; }
    .akademik-basarilar-nav-btn { width: 32px; height: 32px; font-size: 11px; }
    .akademik-basarilar-all-btn { padding: 10px 18px; font-size: 11px; }
    .akademik-basarilar-date-overlay {
        top: 10px;
        right: 10px;
        padding: 10px 12px;
    }
    .akademik-basarilar-date-overlay .akademik-basarilar-day {
        font-size: 20px;
    }
    .akademik-basarilar-date-overlay .akademik-basarilar-month {
        font-size: 10px;
    }
    .akademik-basarilar-card-title {
        font-size: 13px;
    }
    .akademik-basarilar-date-text {
        font-size: 10px;
    }
    .akademik-basarilar-card-title { font-size: 13px; }
    
    /* News */
    .news-section-title { font-size: 21px; }
    .news-section-subtitle { font-size: 13px; }
    .news-all-btn { padding: 10px 18px; font-size: 11px; }
    .news-slider-container { height: 350px; }
    .news-slide-content { padding: 20px 15px; min-height: 160px; }
    .news-slide-date { width: 50px; height: 50px; }
    .news-date-day { font-size: 18px; }
    .news-date-month { font-size: 10px; }
    .news-slide-category { font-size: 10px; padding: 4px 8px; }
    .news-slide-title { font-size: 18px; }
    .news-slide-excerpt { font-size: 12px; }
    .news-slide-link { padding: 8px 16px; font-size: 11px; }
    .news-grid-card { padding: 12px; }
    .news-grid-title { font-size: 14px; }
    .news-grid-meta { flex-direction: column; gap: 8px; }
    .news-slider-nav { width: 30px; height: 30px; font-size: 10px; }
    .news-slider-prev { right: 40px; }
    .news-slider-next { right: 8px; }
    
    /* Academic */
    .academic-title { font-size: 24px; }
    .academic-subtitle { font-size: 13px; }
    .academic-btn { padding: 10px 18px; font-size: 11px; }
    .academic-featured-image { height: 200px; }
    .academic-featured-title { font-size: 20px; }
    .academic-featured-desc { font-size: 12px; }
    .academic-program-card { padding: 20px; }
    .academic-program-image { height: 120px; }
    .academic-program-title { font-size: 16px; }
    .academic-program-desc { font-size: 12px; }
    .academic-program-btn { padding: 10px 18px; font-size: 11px; }
    .academic-slider { min-height: 400px; }
    .academic-slide-image { min-height: 250px; }
    .academic-slide-content { padding: 20px 15px; }
    .academic-slide-title { font-size: 18px; }
    .academic-slide-desc { font-size: 12px; }
    .academic-slide-btn { padding: 10px 18px; font-size: 11px; }
    .academic-slider-nav { width: 36px; height: 36px; font-size: 11px; }
    .academic-slider-dots { bottom: 15px; left: 15px; }
    
    /* Events */
    .events { padding: 50px 0; }
    .events .container { padding: 0 15px; background: transparent; border: none; box-shadow: none; }
    .events-header { margin-bottom: 25px; }
    .events-title { font-size: 28px; }
    .events-subtitle { font-size: 14px; }
    
    /* Campus Life */
    .campus-life { padding: 120px 0 50px; }
    .campus-life-title-card { padding: 25px 25px 40px; width: 90%; }
    .campus-life-main-title { font-size: 28px; }
    .campus-life-main-subtitle { font-size: 13px; }
    .campus-life-flower { width: 50px; height: 60px; bottom: -20px; }
    .campus-life-wrapper { padding: 70px 0 40px; gap: 30px; }
    .campus-life-heading { font-size: 26px; }
    .campus-life-desc { font-size: 14px; margin-bottom: 25px; }
    .campus-life-btn { padding: 13px 25px; font-size: 14px; }
    .campus-service-card { padding: 18px 20px; gap: 12px; }
    .campus-service-icon { width: 45px; height: 45px; font-size: 18px; }
    .campus-service-title { font-size: 12px; }
    .campus-service-subtitle { font-size: 10px; }
    
    /* Stats */
    .stats { padding: 60px 0; }
    .stats-wrapper { gap: 35px; }
    .stats-title { font-size: 28px; }
    .stats-subtitle { font-size: 15px; }
    .stats-all-btn { padding: 12px 24px; font-size: 13px; }
    .stats-grid-top { grid-template-columns: 1fr; gap: 16px; }
    .stats-grid-bottom { gap: 16px; }
    .ranking-card { padding: 24px; }
    .ranking-main-text { font-size: 22px; }
    .stat-card-top { padding: 22px 18px; }
    .stat-icon { width: 52px; height: 52px; font-size: 26px; }
    .stat-number { font-size: 32px; }
    .stat-card-bottom { padding: 28px 20px; }
    .stat-icon-large { width: 64px; height: 64px; font-size: 28px; }
    .stat-number-large { font-size: 36px; }
    .stat-label-large { font-size: 14px; }
    .stat-card-top { padding: 18px; }
    .stat-icon { width: 50px; height: 50px; font-size: 20px; }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 11px; }
    .stat-card-bottom { padding: 20px 18px; }
    .stat-icon-large { width: 60px; height: 60px; font-size: 24px; }
    .stat-number-large { font-size: 24px; }
    .stat-label-large { font-size: 12px; }
    .stat-btn { padding: 8px 16px; font-size: 11px; }
    .ranking-card { padding: 20px 15px; }
    .ranking-badge { font-size: 14px; }
    .ranking-year { font-size: 12px; }
    .ranking-main-text { font-size: 18px; }
    
    /* Campuses */
    .campuses-title { font-size: 24px; }
    .campuses-subtitle { font-size: 13px; }
    .campus-card { min-height: 250px; }
    .campus-card.large { min-height: 300px; }
    .campus-name { font-size: 18px; }
    .campus-desc { font-size: 12px; }
    .campus-btn { padding: 10px 18px; font-size: 11px; }
    
    /* Mobile App */
    .mobile-title { font-size: 28px; }
    .mobile-subtitle { font-size: 14px; }
    .mobile-text { font-size: 13px; }
    .mobile-features li { font-size: 13px; }
    .app-btn { padding: 12px 18px; }
    .app-btn strong { font-size: 14px; }
    .app-btn span { font-size: 10px; }
    
    /* Partners */
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .partner-logo { padding: 15px; height: 70px; }
    
    /* Footer */
    .footer { padding: 50px 0 25px; }
    .footer-grid { gap: 35px; }
    .footer-logo-icon { width: 45px; height: 45px; }
    .footer-logo-icon i { font-size: 20px; }
    .footer-logo-text span { font-size: 16px; }
    .footer-desc { font-size: 13px; }
    .footer-title { font-size: 16px; }
    .footer-links li { font-size: 13px; }
    .footer-contact li { font-size: 13px; }
    .footer-bottom { padding: 25px 0; }
    .footer-bottom p { font-size: 14px; }
    .footer-bottom-links a { font-size: 12px; }
    
    /* Scroll Top */
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ==================== RHYTHM SECTION - COMPLETE STYLES ==================== */
.rhythm-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.rhythm-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    min-height: 100%;
}

.rhythm-videos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rhythm-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

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

.rhythm-video-cards {
    display: flex;
    gap: 15px;
    flex: 1;
}

.rhythm-video-card {
    position: relative;
    width: 160px;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.rhythm-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rhythm-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
}

.rhythm-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.rhythm-video-info {
    color: var(--white);
}

.rhythm-video-subtitle {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rhythm-video-title {
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0;
}

.rhythm-video-desc {
    font-size: 10px;
    opacity: 0.7;
    margin: 0;
}

.rhythm-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.rhythm-title-area {
    flex: 1;
    width: 100%;
}

.rhythm-main-title {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.rhythm-main-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.rhythm-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    align-self: flex-start;
    box-shadow: var(--shadow-md);
}

.rhythm-instagram-btn:hover {
    transform: scale(1.05);
}

.rhythm-right {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.rhythm-stories-card {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.95) 0%, rgba(232, 244, 253, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 45px 40px;
    border: 1px solid rgba(122, 202, 237, 0.3);
    box-shadow: 0 20px 60px rgba(28, 69, 139, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rhythm-stories-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 202, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rhythm-stories-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rhythm-stories-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.rhythm-stories-title {
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.rhythm-stories-subtitle {
    font-size: 17px;
    color: var(--secondary);
    font-weight: 600;
    margin: 0 0 25px 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.rhythm-stories-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(28, 69, 139, 0.25);
    position: relative;
    overflow: hidden;
}

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

.rhythm-stories-btn:hover::before {
    left: 100%;
}

.rhythm-stories-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.35);
}

.rhythm-stories-avatars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 35px 0;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    gap: 15px;
    flex-shrink: 0;
}

.rhythm-stories-avatars img {
    flex: 1;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    min-width: 90px;
    max-width: 120px;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(28, 69, 139, 0.2), 0 0 0 2px rgba(122, 202, 237, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.rhythm-stories-avatars img:first-child {
    margin-left: 0;
}

.rhythm-stories-avatars img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(28, 69, 139, 0.3), 0 0 0 3px rgba(122, 202, 237, 0.4);
}

.rhythm-stories-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
    font-weight: 400;
    flex: 1;
}

.rhythm-stories-nav {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-top: auto;
}

.rhythm-stories-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(122, 202, 237, 0.3);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(28, 69, 139, 0.1);
}

.rhythm-stories-nav-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 69, 139, 0.25);
}

.rhythm-stories-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==================== AKADEMIK BASARILAR SECTION - COMPLETE STYLES ==================== */
.akademik-basarilar-deco {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 50px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.akademik-basarilar-deco svg {
    width: 100%;
    height: 100%;
    display: block;
}

.akademik-basarilar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.akademik-basarilar-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.akademik-basarilar-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.akademik-basarilar-nav {
    display: flex;
    gap: 8px;
}

.akademik-basarilar-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
}

.akademik-basarilar-nav-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.akademik-basarilar-nav-btn:active {
    transform: scale(0.95);
}

.akademik-basarilar-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.akademik-basarilar-all-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.akademik-basarilar-all-btn i {
    font-size: 9px;
}

.akademik-basarilar-day {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.akademik-basarilar-month {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.akademik-basarilar-card-title {
    flex: 0;
    font-size: 13px;
    color: #334155;
    line-height: 1.4;
    margin: 0;
}

/* ==================== NEWS SECTION - COMPLETE STYLES ==================== */
.news-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.news-section-title-wrapper {
    flex: 1;
}

.news-section-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 8px 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.news-section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.news-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.news-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.news-all-btn i {
    font-size: 10px;
}

.news-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-featured-slider {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 0;
}

.news-slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: var(--radius-md);
    overflow: hidden;
    will-change: opacity;
}

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

.news-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

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

.news-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(0deg, rgba(28, 69, 139, 0.75) 0%, rgba(28, 69, 139, 0.6) 40%, rgba(28, 69, 139, 0.4) 70%, transparent 100%);
    color: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    min-height: 220px;
}

.news-slide-date {
    position: absolute;
    top: -60px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.news-date-day {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.news-date-month {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-slide-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-slide-title {
    font-family: var(--font-sans);
    font-size: var(--fs-xl);
    font-weight: 600;
    line-height: var(--lh-snug);
    margin: 0 0 12px 0;
    color: var(--white);
    letter-spacing: var(--tracking-tight);
}

.news-slide-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* High-contrast hover on dark featured-slider overlay (matches .news-card.featured) */
.news-slide-title a:hover,
.news-slide-title a:focus,
.news-slide-title a:focus-visible {
    color: var(--secondary-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    outline: none;
}

.news-slide-excerpt {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0 0 20px 0;
}

.news-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.news-slide-link:hover {
    background: var(--white);
    color: var(--primary);
}

.news-slide-link i {
    font-size: 9px;
}

.news-slider-nav {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    color: var(--primary);
    font-size: 13px;
    z-index: 10;
}

.news-slider-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.3);
}

.news-slider-prev {
    right: 60px;
}

.news-slider-next {
    right: 15px;
}

.news-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-grid-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-grid-image {
    height: 140px;
    overflow: hidden;
}

.news-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.news-grid-content {
    padding: 18px;
}

.news-grid-title {
    font-family: var(--font-sans);
    font-size: var(--fs-lg);
    font-weight: 600;
    line-height: var(--lh-snug);
    color: var(--text-dark);
    margin: 0 0 15px 0;
    letter-spacing: var(--tracking-tight);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-grid-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-grid-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.news-grid-date i {
    color: var(--secondary);
}

.news-grid-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-grid-category i {
    font-size: 9px;
}

/* ==================== ACADEMIC SECTION - COMPLETE STYLES ==================== */
.academic-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(122, 202, 237, 0.15);
}

/* Calendar Card */
.calendar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.cal-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-gray);
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cal-btn:hover {
    background: var(--secondary-light);
    color: var(--primary-dark);
}

.calendar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.calendar-view-buttons {
    display: flex;
    gap: 6px;
}

.cal-view-btn {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-gray);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cal-view-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    gap: 8px;
}

.calendar-weekdays > div {
    min-width: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-cell {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    min-height: 90px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.calendar-cell--muted {
    background: var(--bg-gray);
    color: var(--text-muted);
}

.calendar-date {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calendar-event {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 6px;
    font-size: 11px;
    line-height: 1.35;
    color: var(--text-dark);
}

.calendar-event.more {
    background: rgba(28, 69, 139, 0.08);
    color: var(--primary);
    border-color: rgba(28, 69, 139, 0.2);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.calendar-event .dot {
    width: 6px;
    height: 6px;
    background: #3498db;
    border-radius: 50%;
    display: inline-block;
}

.calendar-event .time {
    font-weight: 700;
    color: var(--primary-dark);
}

.calendar-cell--today {
    border-color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(28, 69, 139, 0.25);
}

.calendar-cell--today .calendar-date {
    color: var(--primary-dark);
}

.calendar-event-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
}

.calendar-event-link:hover {
    background: rgba(28, 69, 139, 0.08);
}

.calendar-event .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

.calendar-list-view {
    margin-top: 4px;
}

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calendar-list-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-gray);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    width: 100%;
    text-align: left;
    font: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.calendar-list-item:hover {
    border-color: rgba(28, 69, 139, 0.35);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.calendar-list-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 8px;
}

.calendar-list-day {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.calendar-list-month {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 4px;
}

.calendar-list-body h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--primary-dark);
}

.calendar-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.calendar-list-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.calendar-list-type {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.calendar-list-type--egitim {
    color: #0e7c66;
}

.calendar-empty {
    margin: 18px 0 4px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Event detail modal */
body.cal-event-modal-open {
    overflow: hidden;
}

.cal-event-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    background: rgba(15, 23, 42, 0.5);
}

.cal-event-modal[hidden] {
    display: none !important;
}

.cal-event-modal-dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: min(96vh, 1000px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 22px 28px;
}

/* Without a poster there is only the text column, so the wide dialog would leave a
   large empty area: halving the width keeps the single column well proportioned. */
.cal-event-modal--no-poster .cal-event-modal-dialog {
    width: min(550px, 100%);
}

.cal-event-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 4px;
}

.cal-event-modal-close:hover {
    color: var(--primary);
}

.cal-event-modal-body {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.55;
    overflow-y: auto;
    min-height: 0;
}

.cal-event-modal-layout {
    display: grid;
    /* Poster keeps the larger share: it is the primary, must-be-legible content */
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.cal-event-modal-layout.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.cal-event-modal-info {
    min-width: 0;
}

.cal-event-modal-title {
    margin: 0 0 12px;
    padding-right: 34px;
    font-size: 21px;
    line-height: 1.3;
    color: var(--primary);
}

.cal-event-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.cal-event-modal-meta span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.cal-event-modal-meta i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.cal-event-modal-poster {
    margin: 0;
    justify-self: center;
    max-width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-gray);
    overflow: hidden;
}

.cal-event-modal-poster-btn {
    display: block;
    position: relative;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    appearance: none;
    -webkit-appearance: none;
}

/* auto width + capped height keeps the full poster visible with no letterbox bars.
   The cap mirrors the dialog's max-height minus its vertical padding, so a portrait
   poster grows to the largest size that still fits without any scrolling. */
.cal-event-modal-poster img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(96vh - 56px);
}

.cal-event-modal-poster-hint {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 10px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cal-event-modal-poster-btn:hover .cal-event-modal-poster-hint,
.cal-event-modal-poster-btn:focus-visible .cal-event-modal-poster-hint {
    opacity: 1;
}

.cal-poster-lightbox {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-modal) + 20);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: rgba(8, 14, 30, 0.88);
    cursor: zoom-out;
}

.cal-poster-lightbox[hidden] {
    display: none !important;
}

.cal-poster-lightbox img {
    display: block;
    max-width: 94vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    cursor: default;
}

.cal-poster-lightbox-close {
    position: absolute;
    top: 14px;
    right: 22px;
    border: none;
    background: transparent;
    font-size: 40px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    padding: 0 6px;
}

.cal-poster-lightbox-close:hover {
    color: #fff;
}

.cal-event-modal-type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    background: rgba(28, 69, 139, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.cal-event-modal-type--egitim {
    background: rgba(14, 124, 102, 0.12);
    color: #0e7c66;
}

.cal-event-modal-summary {
    margin: 0;
    color: var(--text-dark);
    white-space: pre-wrap;
}

.cal-event-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.cal-event-modal-link:hover {
    text-decoration: underline;
}

.event-card--egitim .event-category {
    color: #0e7c66;
}

.cal-event-modal-day-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cal-event-modal-day-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-gray);
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition);
}

.cal-event-modal-day-item:hover {
    border-color: rgba(28, 69, 139, 0.35);
    background: #fff;
}

.cal-event-modal-day-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cal-event-modal-day-item .time {
    font-weight: 700;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.cal-event-modal-day-item .title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cal-event-modal-dialog {
        padding: 22px 18px;
    }

    .cal-event-modal-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .cal-event-modal-poster img {
        max-height: 62vh;
    }

    .cal-event-modal-title {
        font-size: 19px;
    }

    .cal-poster-lightbox-close {
        top: 8px;
        right: 12px;
        font-size: 34px;
    }

    .calendar-month-view {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -4px;
        padding: 0 4px;
    }

    .calendar-weekdays,
    .calendar-grid {
        min-width: 560px;
        gap: 6px;
    }

    .calendar-cell {
        min-height: 72px;
        padding: 6px;
    }

    .calendar-list-item {
        grid-template-columns: 72px 1fr;
    }

    .calendar-list-type {
        grid-column: 2;
        justify-self: start;
    }
}

.academic-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: stretch;
}

.academic-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.academic-featured {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(28, 69, 139, 0.1);
    position: relative;
}

.academic-featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.academic-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.academic-featured:hover .academic-featured-image img {
    transform: scale(1.1);
}

.academic-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(28, 69, 139, 0.95) 0%, rgba(28, 69, 139, 0.85) 50%, transparent 100%);
    padding: 35px 30px;
    color: var(--white);
}

.academic-featured-title {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.academic-featured-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 2px 15px rgba(0, 0, 0, 0.3);
}

.academic-programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.academic-program-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: 0 8px 30px rgba(28, 69, 139, 0.08), 0 0 0 1px rgba(122, 202, 237, 0.15) inset;
    border: 1px solid rgba(122, 202, 237, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.academic-program-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 202, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.academic-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(28, 69, 139, 0.15), 0 0 0 1px rgba(122, 202, 237, 0.3) inset;
}

.academic-program-card:hover::before {
    opacity: 1;
}

.academic-program-image {
    width: 100%;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(122, 202, 237, 0.2);
    box-shadow: 0 4px 15px rgba(28, 69, 139, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.academic-program-card:hover .academic-program-image {
    transform: translateY(-3px);
    border-color: rgba(122, 202, 237, 0.4);
    box-shadow: 0 8px 25px rgba(28, 69, 139, 0.2);
}

.academic-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.academic-program-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.academic-program-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.academic-program-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    flex: 1;
}

.academic-program-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(28, 69, 139, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
    align-self: flex-start;
    margin-top: auto;
}

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

.academic-program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.35);
}

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

.academic-program-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.academic-program-btn:hover i {
    transform: translateX(3px);
}

.academic-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.academic-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 10px 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
    position: relative;
}

.academic-subtitle {
    font-size: 15px;
    color: var(--text-body);
    margin: 0;
    font-weight: 500;
}

.academic-header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.academic-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.academic-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.academic-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(28, 69, 139, 0.1);
}

.academic-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 69, 139, 0.25);
}

.academic-btn-outline:hover i {
    transform: translateX(3px);
}

.academic-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(28, 69, 139, 0.25);
}

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

.academic-btn-primary:hover i {
    transform: translateX(3px);
}

.academic-slider {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(28, 69, 139, 0.12);
    position: relative;
    height: 100%;
    min-height: 600px;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.academic-slides {
    position: relative;
    height: 100%;
    min-height: 600px;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.academic-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

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

.academic-slide-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.academic-slide-image::after {
    display: none;
}

.academic-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1;
}

.academic-slide.active .academic-slide-image img {
    transform: scale(1.05);
}

.academic-slide-content {
    width: 100%;
    background: linear-gradient(0deg, rgba(28, 69, 139, 0.75) 0%, rgba(28, 69, 139, 0.6) 40%, rgba(28, 69, 139, 0.3) 70%, transparent 100%);
    padding: 30px 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.academic-slide-content::before {
    display: none;
}

.academic-slide-title {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.academic-slide-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.98;
    margin: 0 0 25px 0;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.academic-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.academic-slide-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--white);
}

.academic-slide-btn:hover::before {
    left: 100%;
}

.academic-slide-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.academic-slide-btn:hover i {
    transform: translateX(3px);
}

.academic-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.academic-slider-nav:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.academic-slider-prev {
    left: 25px;
}

.academic-slider-next {
    right: 25px;
}

.academic-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.academic-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

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

.academic-dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
    border-color: var(--white);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}


.events-subtitle {
    font-size: 19px;
    color: var(--text-body);
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 750px;
    letter-spacing: 0.3px;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.events-subtitle::before,
.events-subtitle::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 14px;
    opacity: 0.5;
}

.events-subtitle::before {
    left: 0;
}

.events-subtitle::after {
    right: 0;
}

.events-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 0;
    align-items: center;
    flex-wrap: wrap;
}

.events-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(28, 69, 139, 0.1);
}

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

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

.events-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.events-btn:hover i {
    transform: translateX(2px);
}

.events-btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.events-btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.25);
}

.events-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.events-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.3);
}

.events-slider {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.events-slider::-webkit-scrollbar {
    display: none;
}

.events-track {
    display: flex;
    gap: 20px;
}

/* Eski event-card stilleri kaldırıldı - yeni stiller yukarıda */

/* ==================== CAMPUS LIFE SECTION - COMPLETE STYLES ==================== */
.campus-life-title-card {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.campus-life-main-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 15px 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
    position: relative;
    display: inline-block;
}

.campus-life-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius-full);
}

.campus-life-main-subtitle {
    font-size: 18px;
    color: var(--text-body);
    margin: 25px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.campus-life-flower {
    display: none;
}

.campus-life-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.campus-life-content {
    position: relative;
}

.campus-life-heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 30px 0;
    color: var(--text-dark);
    letter-spacing: -0.8px;
}

.campus-life-heading span {
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.campus-life-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0 0 45px 0;
    font-weight: 400;
}

.campus-life-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(28, 69, 139, 0.25),
        0 0 0 0 rgba(28, 69, 139, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.campus-life-btn::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;
}

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

.campus-life-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(28, 69, 139, 0.35),
        0 0 0 4px rgba(28, 69, 139, 0.1);
}

.campus-life-btn::after {
    content: '→';
    transition: transform 0.4s ease;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.campus-life-btn:hover::after {
    transform: translateX(6px);
}

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

.campus-life-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.campus-service-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(28, 69, 139, 0.08),
        0 0 0 1px rgba(28, 69, 139, 0.05);
    border: 1px solid rgba(28, 69, 139, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.campus-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.campus-service-card:hover::before {
    transform: scaleY(1);
}

.campus-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 40px rgba(28, 69, 139, 0.15),
        0 0 0 1px rgba(28, 69, 139, 0.1);
    border-color: rgba(28, 69, 139, 0.15);
}

.campus-service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.campus-service-card:hover .campus-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(28, 69, 139, 0.35);
}

.campus-service-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.campus-service-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.campus-service-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.3px;
    opacity: 0.7;
}

/* ==================== STATS SECTION - COMPLETE STYLES ==================== */
.stats-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.stats-rankings {
    display: flex;
    align-items: stretch;
}

.ranking-news-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.ranking-news-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    padding-bottom: 100px;
    box-shadow: 
        0 15px 50px rgba(28, 69, 139, 0.15),
        0 0 0 2px rgba(28, 69, 139, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    width: 100%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(28, 69, 139, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    overflow: visible;
}

.ranking-news-card * {
    position: relative;
    z-index: 1;
}

.ranking-news-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
    border-color: rgba(28, 69, 139, 0.25);
}

.ranking-news-card.active * {
    opacity: 1;
    visibility: visible;
}

.ranking-news-card:hover {
    transform: translateY(-8px) translateX(0);
    box-shadow: 
        0 20px 60px rgba(28, 69, 139, 0.2),
        0 0 0 2px rgba(28, 69, 139, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    border-color: rgba(28, 69, 139, 0.3);
}

.ranking-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(28, 69, 139, 0.1);
}

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

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

.ranking-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(28, 69, 139, 0.08);
}

.ranking-title-area {
    width: 100%;
}

.ranking-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

.ranking-year {
    display: block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 10px;
}

.ranking-powered {
    display: block;
    font-size: 11px;
    color: var(--text-body);
    margin-top: 8px;
    opacity: 0.7;
}

.ranking-powered i {
    color: var(--secondary);
    margin-left: 4px;
}

.ranking-partner {
    text-align: left;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(28, 69, 139, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.ranking-partner span {
    display: block;
    font-size: 10px;
    color: var(--text-body);
    opacity: 0.7;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.ranking-partner strong {
    font-size: 13px;
    color: var(--primary);
    line-height: 1.4;
    font-weight: 700;
    display: block;
}

.ranking-main-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.ranking-main-text span {
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.ranking-main-text span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, transparent 100%);
    opacity: 0.4;
}

.ranking-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0 0 30px 0;
    opacity: 0.85;
    flex: 1;
}

.ranking-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

.ranking-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(28, 69, 139, 0.15);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(28, 69, 139, 0.08);
}

.ranking-nav-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(28, 69, 139, 0.2);
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.stats-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 12px 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
    position: relative;
    display: inline-block;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius-full);
}

.stats-subtitle {
    font-size: 18px;
    color: var(--text-body);
    margin: 20px 0 0 0;
    font-weight: 400;
    opacity: 0.8;
}

.stats-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(28, 69, 139, 0.25),
        0 0 0 0 rgba(28, 69, 139, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.stats-all-btn::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;
}

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

.stats-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(28, 69, 139, 0.35),
        0 0 0 4px rgba(28, 69, 139, 0.1);
}

.stats-all-btn i {
    font-size: 10px;
    position: relative;
    z-index: 1;
}

.stats-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-top {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(28, 69, 139, 0.08),
        0 0 0 1px rgba(28, 69, 139, 0.05);
    border: 1px solid rgba(28, 69, 139, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stat-card-top:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 35px rgba(28, 69, 139, 0.15),
        0 0 0 1px rgba(28, 69, 139, 0.1);
}

.stat-icon {
    color: var(--secondary);
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(122, 202, 237, 0.1) 0%, rgba(28, 69, 139, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-top:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(122, 202, 237, 0.2) 0%, rgba(28, 69, 139, 0.1) 100%);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-body);
    font-weight: 500;
    opacity: 0.8;
}

.stats-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card-bottom {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: 35px 30px;
    text-align: center;
    box-shadow: 
        0 6px 25px rgba(28, 69, 139, 0.1),
        0 0 0 1px rgba(28, 69, 139, 0.08);
    border: 1px solid rgba(28, 69, 139, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stat-card-bottom:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 45px rgba(28, 69, 139, 0.18),
        0 0 0 1px rgba(28, 69, 139, 0.15);
}

.stat-icon-large {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(28, 69, 139, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-bottom:hover .stat-icon-large {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(28, 69, 139, 0.4);
}

.stat-number-large {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.stat-label-large {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.85;
}

.stat-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(28, 69, 139, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.stat-btn::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;
}

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

.stat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.3);
}

/* ==================== CAMPUSES SECTION - COMPLETE STYLES ==================== */
.campuses-header {
    text-align: center;
    margin-bottom: 50px;
}

.campuses-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 10px 0;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.campuses-subtitle {
    font-size: 15px;
    color: var(--text-body);
    margin: 0;
}

.campuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: stretch;
}

.campus-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
}

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

/* Sol tarafta büyük kart (2 kolon), sağ tarafta küçük kartlar (2 kolon) */
.campus-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.campus-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.campus-card:hover .campus-image img {
    transform: scale(1.05);
}

.campus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.campus-card:not(.campus-large) .campus-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.campus-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.7;
}

.campus-name {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.campus-card:not(.campus-large) .campus-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.campus-card:not(.campus-large) .campus-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.campus-large {
    grid-row: 1 / 3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.campus-large .campus-image {
    flex: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.campus-tall {
    min-height: 0;
    height: 100%;
}

.campus-wide {
    min-height: 0;
    height: 100%;
}

.campus-normal {
    min-height: 0;
    height: 100%;
}

/* Küçük kartlarda başlık göster - sadece başlıklar için */
.campus-card:not(.campus-large) .campus-content {
    display: none;
}

.campus-card:not(.campus-large) .campus-image {
    height: 100%;
    min-height: 0;
}

.campus-card:not(.campus-large) {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.campus-large .campus-content {
    background: #1c458b;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 35px;
    color: var(--white);
    margin-top: 0;
}

.campus-large .campus-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.campus-details {
    margin-top: 15px;
}

.campus-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 20px 0;
    color: var(--white);
}

.campus-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.campus-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

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

.campus-btn i {
    font-size: 8px;
}

.campus-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--primary);
    opacity: 0;
}

.campus-large:hover .campus-pointer {
    opacity: 1;
}

/* Küçük kartlar için hover butonları */
.campus-hover-buttons {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(28, 69, 139, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
    padding: 20px;
    z-index: 15;
}

.campus-card:not(.campus-large):hover .campus-name,
.campus-card:not(.campus-large):hover .campus-subtitle {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.campus-card:not(.campus-large):hover .campus-hover-buttons {
    opacity: 1;
    visibility: visible;
}

.campus-card:not(.campus-large):hover .campus-short-desc {
    opacity: 0;
    visibility: hidden;
}

.campus-hover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 180px;
    justify-content: center;
}

.campus-hover-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateX(5px);
}

.campus-hover-btn i {
    font-size: 8px;
}

/* Küçük kartların pozisyonları */
.campus-card:not(.campus-large) {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.campus-card:not(.campus-large) .campus-name {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    color: var(--white);
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
    display: block;
    pointer-events: none;
}

.campus-card:not(.campus-large) .campus-subtitle {
    position: absolute;
    top: 48px;
    left: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.95);
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.4);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    pointer-events: none;
}

.campus-subtitle {
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campus-large .campus-subtitle {
    position: static;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Kampüs açıklama yazıları - Her zaman görünür */
.campus-short-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    padding: 0;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
    pointer-events: none;
}

.campus-short-desc p {
    color: var(--white);
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    background: linear-gradient(to top, rgba(28, 69, 139, 0.98) 0%, rgba(28, 69, 139, 0.85) 10%, rgba(28, 69, 139, 0.05) 40%, transparent 55%);
    padding: 180px 18px 25px 18px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    backdrop-filter: blur(2px);
    font-weight: 500;
}

.campus-card:not(.campus-large):hover .campus-short-desc p {
    background: linear-gradient(to top, rgba(28, 69, 139, 0.98) 0%, rgba(28, 69, 139, 0.9) 40%, rgba(28, 69, 139, 0.6) 70%, transparent 100%);
}

/* Büyük kart için açıklama - gizle */
.campus-large .campus-short-desc {
    display: none;
}

/* Grid düzeni: Sağ tarafta 2x2 grid - tüm kartlar aynı boyda */
.campus-card:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.campus-card:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.campus-card:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.campus-card:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* ==================== RESPONSIVE - SECTION SPECIFIC ==================== */

/* Rhythm Section Responsive */
@media (max-width: 1200px) {
    .rhythm-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rhythm-right {
        justify-content: center;
    }
    
    .rhythm-stories-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Rhythm responsive styles are already in main responsive section above */

/* akademik-basarilar Section Responsive */
@media (max-width: 1200px) {
    .akademik-basarilar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .akademik-basarilar-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .akademik-basarilar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .akademik-basarilar-title {
        font-size: 19px;
    }

    .akademik-basarilar-day {
        font-size: 26px;
    }
}

/* News Section Responsive */
@media (max-width: 1200px) {
    .news-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .news-slider-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .news-section-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-slider-container {
        height: 420px;
    }
    
    .news-slide-content {
        min-height: 200px;
        padding: 30px 20px;
    }
    
    .news-slider-nav {
        width: 36px;
        height: 36px;
        font-size: 12px;
        top: 15px;
    }
    
    .news-slider-prev {
        right: 50px;
    }
    
    .news-slider-next {
        right: 10px;
    }
    
    .news-slide-content {
        padding: 20px;
    }
    
    .news-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .news-slide-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .news-section-title {
        font-size: 23px;
    }
    
    .news-slider-container {
        height: 390px;
    }
    
    .news-slide-content {
        padding: 25px 20px;
        min-height: 180px;
    }
    
    .news-slide-date {
        width: 55px;
        height: 55px;
        top: -45px;
        left: 20px;
    }
    
    .news-date-day {
        font-size: 22px;
    }
}

/* Academic Section Responsive */
@media (max-width: 1200px) {
    .academic-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .academic-left {
        order: 2;
    }
    
    .academic-right {
        order: 1;
    }
    
    .academic-slider {
        min-height: 500px;
    }
    
    .academic-slides {
        min-height: 500px;
    }
    
    .academic-programs-grid {
        grid-template-columns: 1fr;
    }
    
    .academic-program-card {
        min-width: auto;
    }
    
    .academic-slider-next {
        right: 20px;
    }
}

@media (max-width: 992px) {
    .academic-slide-image {
        min-height: 280px;
    }
    
    .academic-slide-content {
        padding: 30px 35px;
    }
    
    .academic-slide-content {
        width: 100%;
        padding: 25px;
    }
    
    .academic-slides {
        height: auto;
    }
    
    .academic-slider-nav {
        top: 125px;
    }
}

@media (max-width: 768px) {
    .academic-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .academic-header-right {
        width: 100%;
    }
    
    .academic-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .academic-title {
        font-size: 22px;
    }
    
    .academic-slide-title {
        font-size: 18px;
    }
}

/* Events Section Responsive */
@media (max-width: 1200px) {
    .events .container {
        padding: 0 40px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
}

@media (max-width: 992px) {
    .events {
        padding: 80px 0;
    }
    
    .events .container {
        padding: 0 35px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .events-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .events-title {
        font-size: 38px;
    }
    
    .events-subtitle {
        font-size: 17px;
        max-width: 600px;
    }
    
    .events-nav-header {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 15px;
    }
    
    .events-nav-btn-header:hover {
        transform: scale(1.15);
    }
    
    .events-nav-btn-header:active {
        transform: scale(1.05);
    }
    
    .events-actions {
        margin-top: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .events {
        padding: 60px 0;
    }
    
    .events .container {
        padding: 0 25px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .events-header {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }
    
    .events-title-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .events-title {
        font-size: 32px;
    }
    
    .events-title::before,
    .events-title::after {
        width: 60px;
    }
    
    .events-subtitle {
        font-size: 16px;
        padding: 0 30px;
    }
    
    .events-subtitle::before,
    .events-subtitle::after {
        font-size: 12px;
    }
    
    .events-nav-header {
        position: static;
        transform: none;
        justify-content: center;
    }
    
    .events-nav-btn-header {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .events-nav-btn-header:hover {
        transform: scale(1.15);
    }
    
    .events-actions {
        margin-top: 25px;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .events-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
    }
    
    .event-card {
        width: 180px;
    }
    
    .event-poster {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .events {
        padding: 50px 0;
    }
    
    .events .container {
        padding: 0 20px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .events-title {
        font-size: 28px;
    }
    
    .events-subtitle {
        font-size: 15px;
        padding: 0 25px;
    }
    
    .events-nav-btn-header {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }
    
    .events-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Campus Life Section Responsive */
@media (max-width: 1200px) {
    .campus-life {
        padding: 180px 0 100px;
    }
    
    .campus-life-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 100px 0 60px;
    }
    
    .campus-life-heading {
        font-size: 38px;
    }
    
    .campus-life-services {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .campus-life-title-card {
        padding: 40px 50px;
        border-radius: 0 0 35px 35px;
    }
    
    .campus-life-main-title {
        font-size: 36px;
    }
    
    .campus-life-heading {
        font-size: 34px;
    }
    
    .campus-life-desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .campus-life {
        padding: 140px 0 80px;
    }
    
    .campus-life {
        padding: 140px 0 80px;
    }
    
    .campus-life-title-card {
        margin-bottom: 60px;
    }
    
    .campus-life-main-title {
        font-size: 36px;
    }
    
    .campus-life-main-subtitle {
        font-size: 16px;
    }
    
    .campus-life-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .campus-life-heading {
        font-size: 32px;
    }
    
    .campus-life-desc {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .campus-life-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .campus-life-services {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .campus-service-card {
        padding: 22px;
        min-height: 90px;
    }
    
    .campus-service-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .campus-life {
        padding: 120px 0 60px;
    }
    
    .campus-life-title-card {
        margin-bottom: 50px;
    }
    
    .campus-life-main-title {
        font-size: 32px;
    }
    
    .campus-life-main-subtitle {
        font-size: 15px;
    }
    
    .campus-life-wrapper {
        gap: 40px;
    }
    
    .campus-life-heading {
        font-size: 28px;
    }
    
    .campus-life-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .campus-life-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .campus-service-card {
        padding: 20px;
        gap: 16px;
        min-height: 85px;
    }
    
    .campus-service-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    
    .campus-service-title {
        font-size: 14px;
    }
    
    .campus-service-subtitle {
        font-size: 12px;
    }
}

/* Stats Section Responsive */
@media (max-width: 1200px) {
    .stats {
        padding: 100px 0;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-title {
        font-size: 36px;
    }
    
    .stats-grid-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-rankings {
        justify-content: center;
    }
    
    .ranking-card {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .stats-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-header {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-title {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-number-large {
        font-size: 32px;
    }
}

/* Campuses Section Responsive */
@media (max-width: 1200px) {
    .campuses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .campus-large {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .campuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .campus-large {
        grid-column: span 2;
    }
    
    .campus-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .campuses-grid {
        grid-template-columns: 1fr;
    }
    
    .campus-large,
    .campus-tall,
    .campus-wide,
    .campus-normal {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }
    
    .campus-large {
        min-height: 400px;
    }
}

@media (max-width: 1200px) {
    .campuses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .campus-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .campus-card:nth-child(2),
    .campus-card:nth-child(3),
    .campus-card:nth-child(4),
    .campus-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .campuses-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .campus-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }
    
    .campus-card:nth-child(2),
    .campus-card:nth-child(3),
    .campus-card:nth-child(4),
    .campus-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .campus-tall {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .campuses-title {
        font-size: 26px;
    }
    
    .campuses-grid {
        grid-template-columns: 1fr;
    }
    
    .campus-large {
        grid-column: span 1;
        min-height: 350px;
    }
    
    .campus-large .campus-name {
        font-size: 24px;
    }
    
    .campus-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .campus-btn {
        width: 100%;
        justify-content: center;
    }
    
    .campus-hover-btn {
        min-width: 100%;
    }
    
    .campus-short-desc p {
        font-size: 12px;
        padding: 15px;
    }
    
    .campus-large .campus-short-desc p {
        font-size: 12px;
        padding: 20px;
    }
}

/* === Homepage typography scale (fluid, display for section titles) === */
.calls-title,
.news-section-title,
.events-title,
.section-title,
.academic-title,
.mobile-title,
.akademik-basarilar-title,
.campuses-title,
.stats-title,
.campus-life-main-title,
.rhythm-title {
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 600;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
}

.mobile-title,
.rhythm-title {
    font-size: var(--fs-display);
}

/* ===== Page hero (solid brand band, or image + overlay like İlgili Birimler) ===== */
.page-hero {
    position: relative;
    z-index: 0; /* below header / mega-menu dropdowns */
    width: 100%;
    min-height: clamp(250px, 28vh, 310px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f2350 0%, #1c458b 100%);
    overflow: hidden;
}
.page-hero--has-image {
    min-height: clamp(290px, 36vh, 400px);
    padding-bottom: 1.75rem;
}
.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Gradient shadow over cover — same mood as .mega-grid-overlay */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        transparent 25%,
        rgba(15, 35, 80, 0.55) 55%,
        rgba(28, 69, 139, 0.92) 100%
    );
    pointer-events: none;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
    text-align: center;
}
.page-hero-title {
    margin: 0;
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 18px;
    line-height: var(--lh-tight);
    letter-spacing: var(--tracking-nav);
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    white-space: pre-line;
}
@media (max-width: 576px) {
    .page-hero {
        min-height: clamp(200px, 26vh, 260px);
        padding-bottom: 1.25rem;
    }
    .page-hero--has-image {
        min-height: clamp(230px, 32vh, 330px);
        padding-bottom: 1.5rem;
    }
    .page-hero-inner {
        padding: 0 18px;
    }
}

/* ===== Public content detail / list pages ===== */
.content-page {
    padding: 40px 0 80px;
    background: #f8fafc;
    min-height: 50vh;
}
.content-breadcrumb {
    margin: 0 0 20px;
    padding: 10px 14px;
    background: rgba(28, 69, 139, 0.04);
    border-radius: 10px;
}
.content-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #94a3b8;
}
.content-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}
.content-breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 0.45em;
    color: #cbd5e1;
    font-weight: 400;
}
.content-breadcrumb a {
    color: #1c458b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease, opacity 0.15s ease;
}
.content-breadcrumb a:hover {
    color: #0f2d5c;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.content-breadcrumb-item.is-current span,
.content-breadcrumb-item:last-child span {
    color: #64748b;
    font-weight: 500;
}
.content-detail {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(15, 35, 80, 0.06);
    overflow: visible;
}
.content-detail-title {
    margin: 10px 0 14px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #0f2350;
    line-height: 1.25;
    font-family: var(--font-display);
}
.content-badge {
    display: inline-block;
    background: #1c458b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.content-badge--new {
    background: linear-gradient(135deg, #ff4d4f 0%, #ff7a1a 55%, #ffb800 100%);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.35);
}
.content-badge--link {
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.content-badge--link:hover {
    background: #16386f;
    color: #fff;
    text-decoration: none;
}
.content-badge--link:focus-visible {
    outline: 3px solid rgba(59, 158, 255, 0.45);
    outline-offset: 2px;
}
.content-detail > .content-badge {
    display: block;
    width: fit-content;
    margin-left: auto;
}
.content-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 22px;
}
.content-detail-meta--flush { margin-top: 0; }
.content-detail-meta i { color: #1c458b; margin-right: 6px; }
.content-detail-cover {
    margin: 0 0 24px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 1;
}
.content-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 576px) {
    .content-detail-cover {
        aspect-ratio: 2 / 1;
    }
}
.content-detail-lead {
    display: none;
}
.content-detail-layout {
    display: block;
}
/* Desktop: text left, featured image right */
.content-detail-layout.has-image {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 28px 32px;
    align-items: start;
}
.content-detail-body {
    color: #1e293b;
    line-height: 1.75;
    font-size: 1.02rem;
    min-width: 0;
    text-align: justify;
    hyphens: auto;
}
.content-detail-body p,
.content-detail-body li,
.content-detail-body td,
.content-detail-body th,
.content-detail-body blockquote,
.content-detail-body figcaption {
    text-align: justify;
}
.content-detail-body p {
    margin: 0 0 1rem;
}
.content-detail-body h1,
.content-detail-body h2,
.content-detail-body h3,
.content-detail-body h4,
.content-detail-body h5,
.content-detail-body h6 {
    font-family: var(--font-display);
    color: #0f2350;
    line-height: var(--lh-snug);
    letter-spacing: var(--tracking-tight);
    margin: 1.75rem 0 0.75rem;
    text-align: left;
}
.content-detail-body h2 {
    font-size: var(--fs-2xl);
    font-weight: 600;
}
.content-detail-body h3 {
    font-size: var(--fs-xl);
    font-weight: 600;
}
.content-detail-body h2:first-child,
.content-detail-body h3:first-child {
    margin-top: 0;
}
.content-detail-body ul,
.content-detail-body ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}
.content-detail-body li {
    margin: 0 0 0.5rem;
}
.content-detail-body a {
    color: #3b9eff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    word-break: break-word;
}
.content-detail-body a:hover {
    color: #1c7ed6;
}
/* Erasmus page — section spacing; typography inherits .content-detail-body */
.content-detail-body .erasmus-sections {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.content-detail-body .erasmus-item {
    margin: 0;
    padding: 4px 0 22px;
    border-bottom: 1px solid rgba(28, 69, 139, 0.08);
}
.content-detail-body .erasmus-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.content-detail-body .erasmus-item h2 {
    margin-top: 0;
}
.content-detail-body .erasmus-item > p:last-child {
    margin-bottom: 0;
}
.content-detail-media {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 0;
    width: 100%;
}
.content-detail-media .content-badge {
    margin: 0;
    position: static;
}
.content-detail-side-image {
    margin: 0;
    width: 100%;
    border-radius: 10px;
    overflow: visible;
    background: transparent;
}
.content-detail-side-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(15, 35, 80, 0.08);
    background: #f8fafc;
}
.content-detail-deadline {
    margin: 0;
    width: 100%;
    text-align: right;
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}
.content-detail-deadline--top {
    margin: 0 0 16px;
    text-align: right;
}
/* İçerikteki ek görseller: tam görünsün, kırpılmasın */
.content-detail-body img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 0 1.25rem;
    border-radius: 10px;
    object-fit: contain;
}
@media (max-width: 900px) {
    .content-detail-layout.has-image {
        grid-template-columns: 1fr;
    }
    .content-detail-media {
        order: -1;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }
    .content-detail-side-image {
        max-width: 100%;
        width: 100%;
    }
}
.content-detail-actions { margin-top: 32px; }
.content-detail-actions .content-back-btn {
    border: 0;
    cursor: pointer;
    font: inherit;
}
.content-flash {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
}
.content-flash-success { background: #ecfdf3; color: #166534; }
.content-flash-error { background: #fef2f2; color: #b91c1c; }
.content-kayit-status {
    margin: 0;
    font-weight: 600;
    color: #166534;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.content-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1c458b;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 10px;
}
.content-back-btn:hover { background: #0f2350; }
.content-list-header { margin-bottom: 28px; }
.content-list-header h1 {
    margin: 0 0 8px;
    color: #0f2350;
    font-family: var(--font-display);
}
.content-list-header p {
    margin: 0;
    color: #64748b;
    font-size: 1.05rem;
}
.content-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.content-list-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px rgba(15, 35, 80, 0.06);
    transition: transform .2s, box-shadow .2s;
}
.content-list-card-main {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    text-decoration: none;
    color: inherit;
}
.content-list-cta {
    padding: 0 18px 18px;
}
.content-list-cta .call-footer { margin-top: 0; padding-top: 0; }
a.call-more {
    text-decoration: none;
}
.content-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 35, 80, 0.12);
}
.content-list-image { position: relative; height: 160px; overflow: hidden; }
.content-list-image img { width: 100%; height: 100%; object-fit: cover; }
.content-list-grid--basarilar {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.content-list-grid--basarilar .content-list-image {
    height: auto;
    aspect-ratio: 3 / 4;
    background: #0b2a5c;
}
.content-list-grid--basarilar .content-list-image img {
    object-fit: contain;
    object-position: center center;
}
.content-list-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.content-list-body h2 { margin: 0; font-size: 1.05rem; color: #0f2350; line-height: 1.35; }
.content-list-grid--basarilar .content-list-body h2 { white-space: pre-line; }
.content-list-body p { margin: 0; color: #64748b; font-size: 14px; line-height: 1.5; }
.content-list-body small { color: #94a3b8; }
/* Çağrı kartlarında etiket ve tarih ayrı satırda, tarih bölünmez */
.content-list-meta { display: flex; flex-direction: column; }
.content-list-meta-value { white-space: nowrap; }

/* Çağrı listeleri anasayfadaki kart alt bölümünü birebir kullanır */
.content-list-grid--calls .content-list-card { height: 100%; }
.content-list-grid--calls .content-list-body { flex: 1 1 auto; }
.content-list-grid--calls .content-list-card:hover .call-more {
    background: #1c458b;
    border-color: #1c458b;
    color: #fff;
}
.content-empty { text-align: center; color: #64748b; padding: 40px 0; }
.calls-more { display: flex; justify-content: center; margin-top: 28px; }
a.call-card { color: inherit; text-decoration: none; cursor: pointer; }
a.news-grid-card { color: inherit; text-decoration: none; }

/* ===== Araştırma Takımı ===== */
.at-page {
    --at-red: #b91c2c;
    --at-blue: #1c458b;
    --at-blue-dark: #0d2d5e;
    --at-green: #1e7a46;
    --at-green-soft: rgba(30, 122, 70, 0.1);
    --at-card-border: rgba(28, 69, 139, 0.1);
    --at-shadow: 0 1px 2px rgba(15, 35, 80, 0.04), 0 8px 28px rgba(15, 35, 80, 0.07);
    --at-shadow-hover: 0 4px 12px rgba(15, 35, 80, 0.08), 0 16px 40px rgba(15, 35, 80, 0.12);
    padding: 36px 0 72px;
    background:
        radial-gradient(ellipse 70% 36% at 50% -8%, rgba(28, 69, 139, 0.07), transparent 55%),
        linear-gradient(180deg, #f5f7fb 0%, #ffffff 38%);
}
.at-empty {
    text-align: center;
    color: var(--text-light, #64748b);
    padding: 56px 16px;
    font-size: 1.05rem;
    font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
}
.at-section {
    margin-bottom: 44px;
}
.at-section--yonetim {
    margin-bottom: 56px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(28, 69, 139, 0.08);
}

/* Leadership — centered stack with hierarchy connector */
.at-leadership {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 360px;
    margin: 0 auto;
}
.at-leadership::before {
    content: "";
    position: absolute;
    top: 12%;
    bottom: 12%;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(28, 69, 139, 0.18) 12%,
        rgba(28, 69, 139, 0.18) 88%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}
.at-leader-card,
.at-card {
    position: relative;
    z-index: 1;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 22px 24px;
    border: 1px solid var(--at-card-border);
    border-radius: 14px;
    box-shadow: var(--at-shadow);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    width: 100%;
}
.at-leader-card {
    max-width: 300px;
    margin-bottom: 28px;
    padding: 32px 26px 28px;
    border-color: rgba(28, 69, 139, 0.14);
    box-shadow:
        0 0 0 1px rgba(28, 69, 139, 0.04),
        var(--at-shadow);
}
.at-leader-card:last-child {
    margin-bottom: 0;
}
.at-leader-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: var(--at-blue);
}
.at-card:hover,
.at-leader-card:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 69, 139, 0.22);
    box-shadow: var(--at-shadow-hover);
}

/* Photo rings */
.at-photo {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    flex-shrink: 0;
    background: #eef2f7;
    border: 3px solid #fff;
    box-shadow:
        0 0 0 1px rgba(28, 69, 139, 0.12),
        0 0 0 5px rgba(28, 69, 139, 0.06),
        0 8px 20px rgba(15, 35, 80, 0.12);
}
.at-photo--leader {
    width: 156px;
    height: 156px;
    box-shadow:
        0 0 0 1px rgba(28, 69, 139, 0.16),
        0 0 0 6px rgba(28, 69, 139, 0.07),
        0 10px 28px rgba(15, 35, 80, 0.14);
}
.at-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.at-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2.4rem;
    background: linear-gradient(160deg, #eef2f7 0%, #e2e8f0 100%);
}

.at-meta {
    width: 100%;
    margin-bottom: 16px;
}
.at-unvan {
    margin: 0 0 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #64748b;
    line-height: 1.4;
    font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
}
.at-name {
    margin: 0 0 6px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--at-blue-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: var(--font-display, "Playfair Display", Georgia, serif);
}
.at-leader-card .at-name {
    font-size: 1.2rem;
}
.at-rol {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--at-blue);
    line-height: 1.45;
    font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
}
/* Legacy class kept for safety */
.at-role {
    margin: 0 0 4px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
    font-style: normal;
    min-height: 0;
}

/* Actions */
.at-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    width: 100%;
}
.at-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
    transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.at-btn:hover {
    transform: translateY(-1px);
}
.at-btn--incele {
    background: var(--at-blue);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(28, 69, 139, 0.28);
}
.at-btn--incele:hover {
    background: var(--at-blue-dark);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(13, 45, 94, 0.32);
}
.at-btn--cv {
    background: #fff;
    color: var(--at-green) !important;
    border-color: rgba(30, 122, 70, 0.45);
    box-shadow: none;
}
.at-btn--cv:hover {
    background: var(--at-green-soft);
    color: #145c34 !important;
    border-color: var(--at-green);
}

/* Unit headers — navy with red accent */
.at-unit-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--at-blue) 0%, var(--at-blue-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 16px 28px 16px 24px;
    margin: 0 0 28px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(28, 69, 139, 0.22);
}
.at-unit-banner__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--at-red);
}
.at-unit-banner h2 {
    position: relative;
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    font-weight: 650;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: none;
    line-height: 1.35;
    font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
}

/* Member grid */
.at-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px;
    justify-items: stretch;
}
.at-grid .at-card {
    max-width: none;
    height: 100%;
}
@media (min-width: 768px) {
    .at-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 26px;
    }
}
@media (min-width: 1100px) {
    .at-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
}
@media (max-width: 640px) {
    .at-page {
        padding: 28px 0 56px;
    }
    .at-section {
        margin-bottom: 36px;
    }
    .at-section--yonetim {
        margin-bottom: 44px;
    }
    .at-photo {
        width: 118px;
        height: 118px;
        margin-bottom: 14px;
    }
    .at-photo--leader {
        width: 136px;
        height: 136px;
    }
    .at-leader-card,
    .at-card {
        padding: 24px 16px 20px;
    }
    .at-leader-card {
        max-width: 280px;
        margin-bottom: 22px;
    }
    .at-unit-banner {
        padding: 14px 18px 14px 20px;
        margin-bottom: 20px;
    }
    .at-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .at-btn {
        min-width: 0;
        flex: 1 1 auto;
        padding: 8px 12px;
    }
}
@media (max-width: 400px) {
    .at-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-inline: auto;
    }
}

/* ===== Misyon & Vizyon (dedicated CMS layout) ===== */
.content-page--mv {
    padding-top: 36px;
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(28, 69, 139, 0.06), transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 8%, rgba(122, 202, 237, 0.12), transparent 50%),
        var(--bg-light);
}
.content-detail--mv {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}
.content-detail--mv .mv-body {
    text-align: justify;
    hyphens: auto;
    font-size: 1rem;
}
.content-detail--mv .mv-body p,
.content-detail--mv .mv-body li {
    text-align: justify;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.mv-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 18px;
    padding: 36px 32px 40px;
    box-shadow: 0 10px 36px rgba(15, 35, 80, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mv-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
}
.mv-panel--vision::before {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}
.mv-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 35, 80, 0.1);
}
.mv-panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(28, 69, 139, 0.08);
    color: var(--primary);
    font-size: 1.25rem;
}
.mv-panel--vision .mv-panel-icon {
    background: rgba(122, 202, 237, 0.22);
    color: var(--primary-dark);
}
.mv-kicker {
    margin: 0 0 6px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    text-align: left;
}
.mv-panel-title {
    margin: 0 0 8px !important;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    line-height: var(--lh-tight);
    text-align: left;
}
.mv-panel-subtitle {
    margin: 0 0 22px !important;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.45;
    text-align: left;
}
.mv-panel-body {
    flex: 1;
    color: var(--text-body);
    font-size: 0.98rem;
    line-height: 1.75;
    text-align: justify;
    hyphens: auto;
}
.mv-panel-body p,
.mv-panel-body li {
    text-align: justify;
}
.mv-panel-body > p:last-child {
    margin-bottom: 0;
}
.mv-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mv-list li {
    position: relative;
    margin: 0 !important;
    padding: 0 0 0 1.35rem;
    color: var(--text-body);
    line-height: 1.65;
    text-align: justify;
}
.mv-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(28, 69, 139, 0.12);
}
.content-detail--mv .content-detail-actions {
    margin-top: 28px;
}
@media (max-width: 900px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .mv-panel {
        padding: 28px 24px 32px;
    }
    .mv-panel:hover {
        transform: none;
    }
}
@media (max-width: 576px) {
    .content-page--mv {
        padding-top: 28px;
    }
    .mv-panel {
        padding: 24px 20px 28px;
        border-radius: 14px;
    }
    .mv-panel-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 1.1rem;
    }
}

/* ===== Fakülte Etik Kurullar (dedicated CMS layout) ===== */
.content-page--fek {
    padding-top: 36px;
    padding-bottom: 56px;
    background:
        radial-gradient(ellipse 75% 45% at 8% 0%, rgba(28, 69, 139, 0.07), transparent 55%),
        radial-gradient(ellipse 60% 40% at 96% 12%, rgba(122, 202, 237, 0.14), transparent 48%),
        linear-gradient(180deg, #f3f6fb 0%, var(--bg-light) 42%, #fff 100%);
}
.content-detail--fek {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}
.content-detail--fek .fek-body {
    font-size: 1rem;
}
.fek-intro {
    max-width: 720px;
    margin: 0 0 32px;
}
.fek-kicker {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}
.fek-title {
    margin: 0 0 14px !important;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    line-height: var(--lh-tight);
    text-align: left !important;
}
.fek-lead {
    margin: 0;
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.75;
    text-align: justify;
    hyphens: auto;
}
.fek-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.fek-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
    min-height: 0;
    padding: 16px 18px 16px 20px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.1);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(15, 35, 80, 0.045);
    text-decoration: none !important;
    color: inherit;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.fek-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0.85;
    transition: width 0.22s ease, opacity 0.22s ease;
}
.fek-card:hover,
.fek-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(28, 69, 139, 0.22);
    box-shadow: 0 14px 34px rgba(15, 35, 80, 0.1);
    outline: none;
}
.fek-card:hover::before,
.fek-card:focus-visible::before {
    width: 4px;
    opacity: 1;
}
.fek-card-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 69, 139, 0.08);
    color: var(--primary);
    font-size: 1.05rem;
}
.fek-card--pdf .fek-card-icon {
    background: rgba(185, 28, 28, 0.08);
    color: #9b1c1c;
}
.fek-card-body {
    flex: 0 1 auto;
    min-width: 0;
    display: inline;
}
/* Empty spacer spans between name and meta */
.fek-card > .fek-card-body:not(.fek-card-name):not(.fek-card-meta) {
    display: none;
}
.fek-card-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f2350;
    line-height: 1.45;
    letter-spacing: -0.01em;
}
.fek-card-name::after {
    content: "|";
    margin: 0 0.55em;
    font-weight: 400;
    color: rgba(28, 69, 139, 0.35);
    letter-spacing: 0;
}
.content-detail--fek .fek-body a.fek-card {
    color: inherit;
    text-decoration: none;
    border-bottom: none;
    font-weight: inherit;
}
.content-detail--fek .fek-body a.fek-card:hover {
    color: inherit;
    text-decoration: none;
}
.fek-card-meta {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.fek-card:hover .fek-card-meta,
.fek-card:focus-visible .fek-card-meta {
    color: var(--primary);
}
.fek-card-action {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(28, 69, 139, 0.06);
    font-size: 0.78rem;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.fek-card:hover .fek-card-action,
.fek-card:focus-visible .fek-card-action {
    background: var(--primary);
    color: #fff;
    transform: translate(1px, -1px);
}
@media (max-width: 992px) {
    .fek-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .content-page--fek {
        padding-top: 28px;
        padding-bottom: 40px;
    }
    .fek-intro {
        margin-bottom: 24px;
    }
    .fek-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .fek-card {
        min-height: 0;
        padding: 16px 14px;
        border-radius: 12px;
    }
    .fek-card:hover {
        transform: none;
    }
    .fek-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}

/* ===== Etik Kurallar (dedicated CMS layout) ===== */
.content-page--ek {
    padding-top: 36px;
    padding-bottom: 56px;
    background:
        radial-gradient(ellipse 75% 45% at 6% 0%, rgba(28, 69, 139, 0.07), transparent 55%),
        radial-gradient(ellipse 55% 40% at 98% 10%, rgba(122, 202, 237, 0.13), transparent 48%),
        linear-gradient(180deg, #f3f6fb 0%, var(--bg-light) 40%, #fff 100%);
}
.content-detail--ek {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}
.content-detail--ek .ek-body {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    line-height: 1.75;
    color: #1e293b;
    text-align: justify;
    hyphens: auto;
}
.content-detail--ek .ek-body p,
.content-detail--ek .ek-body li {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: justify;
}
.ek-intro {
    max-width: 760px;
    margin: 0 0 28px;
}
.ek-kicker {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    text-align: left;
}
.ek-title {
    margin: 0 0 14px !important;
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    line-height: var(--lh-snug);
    text-align: left !important;
}
.ek-lead {
    margin: 0;
    font-family: var(--font-sans);
    color: #1e293b;
    font-size: 1.02rem;
    line-height: 1.75;
    text-align: justify;
    hyphens: auto;
}
.ek-toc {
    margin: 0 0 36px;
    padding: 24px 26px 22px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 35, 80, 0.045);
    border-left: 4px solid var(--primary);
}
.ek-toc-title {
    margin: 0 0 14px !important;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-toc-list,
.ek-toc-sub {
    margin: 0 !important;
    padding: 0 0 0 1.15rem !important;
}
.ek-toc-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ek-toc-list > li {
    margin: 0 !important;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: #1e293b;
    line-height: 1.75;
    text-align: left !important;
}
.ek-toc-sub {
    margin-top: 6px !important;
    margin-bottom: 4px !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ek-toc a {
    color: #3b9eff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    border-bottom: none;
    transition: color 0.2s ease;
}
.ek-toc a:hover,
.ek-toc a:focus-visible {
    color: #1c7ed6;
    outline: none;
}
.ek-section {
    margin: 0 0 28px;
    padding: 28px 28px 30px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 35, 80, 0.04);
    scroll-margin-top: 96px;
}
.ek-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px !important;
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    line-height: var(--lh-snug);
    text-align: left !important;
}
.ek-num {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 69, 139, 0.09);
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 700;
}
.ek-section-body {
    font-family: var(--font-sans);
    color: #1e293b;
    font-size: 1.02rem;
    line-height: 1.75;
}
.ek-section-body > p:last-child {
    margin-bottom: 0;
}
.ek-subtitle {
    margin: 18px 0 0 !important;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-principle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.ek-card {
    margin: 0;
    padding: 18px 18px 16px;
    background: #f7f9fc;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 12px;
    scroll-margin-top: 96px;
}
.ek-card-title {
    margin: 0 0 10px !important;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-card-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ek-card-list li {
    margin: 0 !important;
    padding: 0;
    font-family: var(--font-sans);
    color: #1e293b;
    font-size: 1.02rem;
    line-height: 1.75;
}
.ek-closing {
    margin: 20px 0 0;
    font-family: var(--font-sans);
    color: #1e293b;
    font-size: 1.02rem;
    line-height: 1.75;
}
.ek-block {
    margin: 18px 0 0;
    padding: 18px 18px 16px;
    background: #f7f9fc;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 12px;
    scroll-margin-top: 96px;
}
.ek-block-title {
    margin: 0 0 10px !important;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-block > p:last-child {
    margin-bottom: 0;
}
.ek-subblock {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(28, 69, 139, 0.08);
    scroll-margin-top: 96px;
}
.ek-subblock-title {
    margin: 0 0 12px !important;
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.ek-type {
    padding: 14px 14px 12px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 10px;
}
.ek-type--wide {
    grid-column: 1 / -1;
}
.ek-type-name {
    margin: 0 0 8px !important;
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-type p,
.ek-type ul {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    line-height: 1.75;
    color: #1e293b;
}
.ek-type ul {
    padding-left: 1.15rem;
}
.ek-type > :last-child {
    margin-bottom: 0;
}
.ek-list,
.ek-olist {
    margin: 10px 0 12px !important;
    padding-left: 1.2rem !important;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: #1e293b;
    line-height: 1.75;
}
.ek-olist li,
.ek-list li {
    margin-bottom: 6px;
}
.ek-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}
.ek-split-item {
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 10px;
}
.ek-split-title {
    margin: 0 0 6px !important;
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-split-item p {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    line-height: 1.75;
    color: #1e293b;
}
.ek-outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}
.ek-outcome {
    padding: 18px 18px 14px;
    background: #f7f9fc;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 12px;
}
.ek-outcome-title {
    margin: 0 0 10px !important;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-law {
    margin-top: 18px;
    padding: 18px;
    background: rgba(28, 69, 139, 0.04);
    border: 1px solid rgba(28, 69, 139, 0.1);
    border-radius: 12px;
}
.ek-law > p {
    margin: 0 0 14px;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    line-height: 1.75;
    color: #1e293b;
}
.ek-link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 14px 14px 16px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.12);
    border-radius: 12px;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.content-detail--ek .ek-body a.ek-link-btn {
    color: inherit;
    text-decoration: none;
    border-bottom: none;
    font-weight: inherit;
}
.ek-link-btn:hover,
.ek-link-btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(28, 69, 139, 0.25);
    box-shadow: 0 12px 28px rgba(15, 35, 80, 0.1);
    outline: none;
}
.ek-link-btn-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 69, 139, 0.08);
    color: var(--primary);
    font-size: 1.05rem;
}
.ek-link-btn--pdf .ek-link-btn-icon {
    background: rgba(185, 28, 28, 0.08);
    color: #9b1c1c;
}
.ek-link-btn-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ek-link-btn-label {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 600;
    color: #0f2350;
    line-height: 1.35;
    text-align: left;
}
.ek-link-btn-meta {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-light);
    text-align: left;
}
.ek-link-btn-action {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(28, 69, 139, 0.06);
    font-size: 0.75rem;
}
.ek-resources {
    margin: 0 0 28px;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 35, 80, 0.04);
}
.ek-resources-title {
    margin: 0 0 14px !important;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    text-align: left !important;
}
.ek-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.ek-section--refs {
    margin-bottom: 0;
}
.ek-refs {
    margin: 0 !important;
    padding-left: 1.2rem !important;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: #1e293b;
    line-height: 1.75;
}
.ek-refs li {
    margin-bottom: 10px;
}
.ek-refs a {
    color: #3b9eff;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ek-refs a:hover,
.ek-refs a:focus-visible {
    color: #1c7ed6;
    outline: none;
}
@media (max-width: 900px) {
    .ek-principle-grid,
    .ek-type-grid,
    .ek-split,
    .ek-outcome-grid,
    .ek-resources-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .content-page--ek {
        padding-top: 28px;
        padding-bottom: 40px;
    }
    .ek-toc,
    .ek-section,
    .ek-resources {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .ek-section-title {
        align-items: flex-start;
    }
    .ek-link-btn:hover {
        transform: none;
    }
}

/* ===== İletişim (intro + cards + directory / form + map) ===== */
.content-page--iletisim {
    padding-top: 36px;
    padding-bottom: 0;
    background:
        radial-gradient(ellipse 75% 45% at 8% 0%, rgba(28, 69, 139, 0.07), transparent 55%),
        radial-gradient(ellipse 60% 40% at 96% 12%, rgba(122, 202, 237, 0.14), transparent 48%),
        linear-gradient(180deg, #f3f6fb 0%, var(--bg-light) 42%, #fff 100%);
}

.content-page--iletisim .iletisim-kicker {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.iletisim-intro {
    max-width: 720px;
    margin: 0 0 32px;
}

.iletisim-title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    line-height: var(--lh-tight);
}

.iletisim-lead {
    margin: 0;
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.75;
}

.iletisim-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.iletisim-card {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 0;
    padding: 22px 20px 22px 22px;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 35, 80, 0.045);
    overflow: hidden;
}

.iletisim-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.iletisim-card-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 69, 139, 0.08);
    color: var(--primary);
    font-size: 1.05rem;
}

.iletisim-card-body {
    min-width: 0;
    flex: 1;
}

.iletisim-card-label {
    margin: 0 0 6px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.iletisim-card-value {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f2350;
    line-height: 1.55;
}

.iletisim-card-value a {
    color: inherit;
    text-decoration: none;
}

.iletisim-card-value a:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.iletisim-card-link {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.iletisim-card-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.iletisim-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: start;
    width: 100%;
    margin-bottom: 48px;
}

.iletisim-directory,
.iletisim-form-panel {
    position: relative;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(28, 69, 139, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(15, 35, 80, 0.06);
}

.iletisim-directory {
    overflow: hidden;
}

.iletisim-directory,
.iletisim-form-panel,
.iletisim-map {
    scroll-margin-top: 96px;
}

.iletisim-directory {
    padding: 28px 8px 12px 8px;
}

.iletisim-directory-head {
    padding: 0 20px 16px;
}

.iletisim-directory-title,
.iletisim-form-title,
.iletisim-map-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 600;
    color: #0f2350;
    letter-spacing: var(--tracking-tight);
    line-height: var(--lh-tight);
}

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

.iletisim-person {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    border-top: 1px solid rgba(28, 69, 139, 0.08);
}

.iletisim-person:nth-child(odd) {
    background: rgba(28, 69, 139, 0.025);
}

.iletisim-person-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.iletisim-person-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f2350;
    line-height: 1.4;
}

.iletisim-person-unit {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.45;
}

.iletisim-person-tel {
    flex: 0 0 auto;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    padding-top: 1px;
}

a.iletisim-person-tel:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.iletisim-directory-empty {
    margin: 0 20px 16px;
    padding: 28px 14px;
    text-align: center;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.iletisim-form-panel {
    padding: 28px 28px 32px;
}

@media (min-width: 993px) {
    .iletisim-form-panel {
        position: sticky;
        top: 96px;
    }
}

.iletisim-form-panel .iletisim-form-title {
    margin-bottom: 18px;
}

.iletisim-flash {
    margin: 0 0 16px;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.45;
    border-radius: 10px;
}

.iletisim-flash--success {
    background: #e8f6ee;
    color: #146c43;
    border: 1px solid #b6e2c8;
}

.iletisim-flash--error {
    background: #fdecee;
    color: #b42318;
    border: 1px solid #f3c1c6;
}

.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.iletisim-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.iletisim-form-group label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f2350;
}

.iletisim-form-group input,
.iletisim-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

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

.iletisim-form-group input:focus,
.iletisim-form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(28, 69, 139, 0.12);
}

.iletisim-form-submit {
    align-self: flex-start;
    margin-top: 4px;
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.iletisim-form-submit:hover {
    background: #0f2350;
}

.iletisim-map {
    margin-top: 8px;
    padding-top: 8px;
    background: #fff;
}

.iletisim-map-head {
    margin-bottom: 18px;
}

.iletisim-map-frame {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--bg-gray);
}

.iletisim-map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
}

@media (max-width: 992px) {
    .iletisim-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .iletisim-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .iletisim-form-panel {
        order: -1;
    }
}

@media (max-width: 576px) {
    .content-page--iletisim {
        padding-top: 28px;
    }

    .iletisim-intro {
        margin-bottom: 24px;
    }

    .iletisim-card {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .iletisim-directory {
        padding-top: 22px;
        border-radius: 14px;
    }

    .iletisim-form-panel {
        padding: 22px 18px 24px;
        border-radius: 14px;
    }

    .iletisim-person {
        flex-direction: column;
        gap: 6px;
        padding: 12px 16px;
    }

    .iletisim-person-tel {
        white-space: normal;
    }

    .iletisim-form-submit {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .iletisim-map-frame iframe {
        height: 280px;
    }
}

/* ===== İGA sayfası haberleri ===== */
.iga-news-section {
    padding-top: 0;
}

.iga-news-header {
    margin-bottom: 24px;
}

.iga-news-header h2 {
    margin: 0;
    color: #0f2350;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.iga-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iga-news-grid .content-list-card {
    height: 100%;
}

.iga-news-grid .content-list-body {
    flex: 1;
}

.iga-news-grid .content-list-body small {
    margin-top: auto;
}

@media (max-width: 900px) {
    .iga-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .iga-news-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==================== HABERLER: SAĞ 2x2 GRID (SOL KART İLE EŞİT YÜKSEKLİK) ==================== */
/* Başlıklar tam görünsün: satır kırpma (-webkit-line-clamp) ve ellipsis kaldırıldı,
   başlık kaç satır sürerse sürsün tamamı okunur. */
.news-grid-title {
    display: block;
    -webkit-line-clamp: none;
    -webkit-box-orient: initial;
    overflow: visible;
    text-overflow: clip;
    /* Kısa başlıklarda da en az 2 satırlık yer ayrılır, böylece karolardaki görsel
       yükseklikleri birbirine yakın kalır. */
    min-height: calc(var(--lh-snug) * 2em);
}

/* Sol öne çıkan slider ile sağdaki 4'lü grid aynı grid satırında esner.
   Satır yüksekliği = max(slider taban yüksekliği, grid'in içeriğe göre doğal yüksekliği).
   Böylece başlıklar uzasa bile iki taraf otomatik olarak eşit yükseklikte kalır, taşma olmaz. */
@media (min-width: 1201px) {
    .news-content-wrapper {
        align-items: stretch;
    }

    .news-featured-slider {
        align-self: stretch;
        display: flex;
        flex-direction: column;
    }

    .news-slider-container {
        flex: 1 1 auto;
        height: auto;
        min-height: 560px;
    }

    .news-grid-wrapper {
        align-self: stretch;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .news-grid-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    /* Görsel kalan alanı doldurur; başlık uzadıkça küçülür ama bu taban değerin altına inmez */
    .news-grid-image {
        position: relative;
        flex: 1 1 auto;
        height: auto;
        min-height: 120px;
    }

    .news-grid-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-grid-content {
        flex: 0 0 auto;
    }
}

/* ==================== HABER İÇERİĞİ: GÖRSEL GALERİSİ ==================== */
/* WordPress'ten aktarılan haber gövdelerindeki figür blokları ortalanmış, masaüstünde
   3 sütunlu bir galeriye dönüştürülür; her karo #calPosterLightbox üzerinden büyütülebilir.
   CSS grid yerine flex-wrap + justify-content:center kullanılır: grid'de eksik kalan son
   satır sola yapışır, flex'te ise satır kendi içinde ortalanır (4 görselde tek kalan,
   5 görselde iki kalan karo tam ortada durur). Sütun sayısı flex-basis ile kilitlenir. */
.article-gallery {
    --article-gallery-gap: 16px;
    --article-gallery-columns: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--article-gallery-gap);
    margin: 28px auto;
}

.article-gallery-item {
    display: block;
    /* Satır başına sabit sütun sayısı; boşluk payı düşülür. Son çıkarılan 0.02px,
       tam sığma durumunda alt piksel yuvarlamasının satırı erken kırmasını engeller. */
    flex: 0 1 calc(
        (100% - (var(--article-gallery-columns) - 1) * var(--article-gallery-gap))
        / var(--article-gallery-columns) - 0.02px
    );
    max-width: 100%;
    min-width: 0;
    padding: 0;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #eef2f8;
    cursor: zoom-in;
    box-shadow: 0 6px 20px rgba(15, 35, 80, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.article-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 35, 80, 0.16);
}

.article-gallery-item:focus-visible {
    outline: 3px solid #1c458b;
    outline-offset: 3px;
}

/* Sabit en-boy oranı + cover: kırpma tek biçimli, görsel oranı bozulmuyor */
.article-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.article-gallery-item--single {
    flex: 0 1 100%;
    margin: 24px 0;
}

.article-gallery-item--single img {
    aspect-ratio: auto;
}

/* Tablet: 2 sütun */
@media (max-width: 1024px) {
    .article-gallery {
        --article-gallery-gap: 14px;
        --article-gallery-columns: 2;
    }
}

/* Mobil: tek sütun */
@media (max-width: 640px) {
    .article-gallery {
        --article-gallery-gap: 12px;
        --article-gallery-columns: 1;
    }
}

/* ===== ARDEK Yönerge — inline document viewer ===== */
.content-page--doc {
    padding-top: 28px;
    padding-bottom: 56px;
}
.content-page--doc .container {
    max-width: 1100px;
}
.content-detail--doc {
    padding: 14px;
    overflow: hidden;
}
.content-detail--doc .doc-body {
    padding: 10px 18px 18px;
}
.doc-viewer {
    position: relative;
    width: 100%;
    height: min(1180px, calc(100vh - 210px));
    min-height: 680px;
    border-radius: 10px;
    overflow: hidden;
    background: #e8eef6;
    border: 1px solid rgba(28, 69, 139, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.doc-viewer-object {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #e8eef6;
}
.doc-viewer-fallback {
    margin: 0;
    padding: 28px 20px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    text-align: center;
}
@media (max-width: 768px) {
    .content-page--doc {
        padding-top: 20px;
        padding-bottom: 36px;
    }
    .content-detail--doc {
        padding: 8px;
        border-radius: 12px;
    }
    .doc-viewer {
        height: 72vh;
        min-height: 480px;
        border-radius: 8px;
    }
}