/**
 * Ana Sayfa Modülü Stilleri - AGÜ Tarzı Modern Tasarım
 */

/* ===== AGÜ TARZI HERO ===== */
.agu-hero-section {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    padding: 140px 40px 50px;
    overflow: visible;
    z-index: 1;
}

.agu-hero-slider {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 720px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.agu-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.agu-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.agu-slide-image {
    width: 100%;
    height: 95%;
    object-fit: cover;
    object-position: center;
}

.agu-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Slider Dots - Alt Orta (çizgi yok) */
.agu-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.agu-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.agu-slider-dot.active {
    background: #fecb15;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(254, 203, 21, 0.7);
}

.agu-slider-dot:hover {
    background: rgba(254, 203, 21, 0.8);
    transform: scale(1.15);
}

/* Countdown Wrapper - Badge'ler ve Countdown */
.agu-countdown-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Badge'ler - Countdown'ın üstünde */
.agu-badges {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.agu-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.agu-badge img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.agu-badge i {
    font-size: 0.75rem;
}

.agu-badge.badge-gold {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.agu-badge.badge-blue {
    background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.agu-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ===== HERO CONTENT CONTAINER - Slider içinde ===== */
.agu-hero-center {
    position: absolute;
    bottom: 30px;
    left: 10px;
    right: 10px;
    z-index: 16;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    pointer-events: none;
}

.agu-hero-center > * {
    pointer-events: auto;
}

.agu-hero-content {
    flex: 0 0 auto;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

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

.agu-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a237e;
    margin: 0 0 0.35rem 0;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.agu-hero-subtitle {
    font-size: 0.8rem;
    color: #374151;
    margin: 0 0 1rem 0;
    font-weight: 500;
    padding-left: 15px;
    position: relative;
}

.agu-hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: #fecb15;
}

.agu-hero-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 0.85rem;
}

.agu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

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

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

.agu-btn-primary {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.35);
}

.agu-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.45);
    background: linear-gradient(135deg, #283593, #3949ab);
}

.agu-btn-secondary {
    background: linear-gradient(135deg, #fecb15, #f0b800);
    color: #1a237e;
    box-shadow: 0 4px 15px rgba(254, 203, 21, 0.35);
}

.agu-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 203, 21, 0.45);
    background: linear-gradient(135deg, #f0b800, #e6b500);
}

.agu-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a237e;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.agu-hero-link:hover {
    color: #1a237e;
    gap: 10px;
}

.agu-hero-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

/* ===== COUNTDOWN ===== */
.agu-countdown-box {
    position: relative;
    background: rgba(26, 35, 126, 0.93);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 1.1rem 1.35rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: slideInRight 0.8s ease-out 0.5s both;
}

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

.agu-countdown-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.7rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.agu-countdown-header i {
    color: #fecb15;
    font-size: 0.85rem;
}

.agu-countdown-timer {
    display: flex;
    gap: 7px;
}

.agu-countdown-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 9px 11px;
    text-align: center;
    min-width: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.agu-countdown-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
}

.agu-countdown-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fecb15;
    line-height: 1;
}

.agu-countdown-label {
    display: block;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.agu-countdown-location {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.7rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
}

.agu-countdown-location i {
    color: #fecb15;
    font-size: 0.7rem;
}

/* Scroll İndikatörü - Gizli */
.agu-scroll-indicator {
    display: none;
}

/* ===== MOBILE HERO SECTION - Modern Kompakt Tasarım ===== */
.mobile-hero-section {
    display: none;
    position: relative;
    min-height: auto;
    overflow: hidden;
    margin-top: 65px;
}

.mobile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 19, 64, 0.85) 0%,
        rgba(26, 35, 126, 0.7) 40%,
        rgba(26, 35, 126, 0.85) 100%
    );
}

.mobile-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem 2rem;
    text-align: center;
}

.mobile-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.mobile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #fecb15, #f0b800);
    color: #1a237e;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(254, 203, 21, 0.3);
}

.mobile-badge.badge-date {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.mobile-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem 0;
    letter-spacing: 3px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.mobile-hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.25rem 0;
    font-weight: 500;
}

.mobile-countdown {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.mobile-countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px 10px;
    min-width: 52px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-countdown-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fecb15;
    line-height: 1.1;
}

.mobile-countdown-label {
    display: block;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.mobile-hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 150px;
}

.mobile-btn-primary {
    background: linear-gradient(135deg, #fecb15, #e6b500);
    color: #1a237e;
    box-shadow: 0 4px 15px rgba(254, 203, 21, 0.35);
}

.mobile-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-btn:hover {
    transform: translateY(-2px);
}

/* ===== AGÜ HERO RESPONSİVE ===== */
@media (max-width: 1400px) {
    .agu-hero-section {
        padding: 130px 30px 45px;
    }
    
    .agu-hero-slider {
        max-width: 1300px;
        height: 696px;
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .agu-hero-section {
        padding: 120px 30px 40px;
    }
    
    .agu-hero-slider {
        max-width: 100%;
        height: 648px;
    }
    
    .agu-badge {
        padding: 6px 11px;
        font-size: 0.6rem;
    }
    
    .agu-badge img {
        height: 20px;
    }
    
    .agu-hero-content {
        max-width: 300px;
        padding: 1.15rem 1.35rem;
    }
    
    .agu-hero-title {
        font-size: 1.6rem;
    }
    
    .agu-hero-subtitle {
        font-size: 0.75rem;
    }
    
    .agu-btn {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
    
    .agu-countdown-box {
        padding: 1rem 1.2rem;
    }
    
    .agu-countdown-item {
        min-width: 44px;
        padding: 8px 10px;
    }
    
    .agu-countdown-number {
        font-size: 1.2rem;
    }
    
    .agu-countdown-label {
        font-size: 0.5rem;
    }
}

@media (max-width: 992px) {
    .agu-hero-section {
        padding: 110px 20px 35px;
    }
    
    .agu-hero-slider {
        height: 600px;
    }
    
    .agu-hero-center {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        bottom: 20px;
        left: 10px;
        right: 10px;
    }
    
    .agu-hero-content {
        max-width: none;
        padding: 1rem 1.25rem;
    }
    
    .agu-hero-title {
        font-size: 1.6rem;
    }
    
    .agu-hero-buttons {
        flex-direction: column;
        gap: 7px;
    }
    
    .agu-btn {
        justify-content: center;
        width: 100%;
        padding: 9px 16px;
    }
    
    .agu-countdown-wrapper {
        align-items: stretch;
    }
    
    .agu-badges {
        flex-wrap: wrap;
    }
    
    .agu-slider-dots {
        bottom: 8px;
    }
}

@media (max-width: 768px) {
    .agu-hero-section {
        display: none;
    }
    
    .mobile-hero-section {
        display: block;
    }
}

/* ===== ESKİ HERO (Gizli) ===== */
.hero-section {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 63px;
    overflow: visible;
    background: #f8f9fa;
    z-index: 1;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.slide-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ===== HERO COUNTDOWN (TOP-RIGHT) ===== */
.hero-countdown {
    position: absolute;
    top: 36px;
    right: 20px;
    z-index: 6;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.2);
    border: 1px solid rgba(26, 35, 126, 0.08);
}

.hero-countdown-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 0.5rem 0;
}

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

.hero-countdown-item {
    background: rgba(26, 35, 126, 0.06);
    border-radius: 10px;
    padding: 0.4rem 0.5rem;
    text-align: center;
    min-width: 52px;
}

.hero-countdown-number {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.1;
}

.hero-countdown-label {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 1px;
    color: #4b5563;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.hero-countdown-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #374151;
}

.hero-countdown-location i {
    color: #fecb15;
    font-size: 0.8rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: none;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #fecb15, #e6b500);
    color: #1a237e;
}

.hero-buttons .btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1a237e;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover {
    background: #1a237e;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.4);
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

/* Eski Slider Dots - Kullanılmıyor */
.slider-dots {
    display: none;
}

.slider-dot {
    display: none;
}

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

/* ===== MOBILE HERO SECTION ===== */
.mobile-hero-buttons-section {
    display: none;
    margin-top: 63px;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #1a237e 0%, #0d1a5a 50%, #1a237e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mobile-hero-buttons-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 203, 21, 0.15) 0%, transparent 50%);
    animation: pulse-bg 4s ease-in-out infinite;
}

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

.mobile-hero-buttons-wrapper {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-hero-title {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-hero-buttons .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-hero-buttons .btn-primary {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: #1a237e;
}

.mobile-hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #fecb15, #e6b500);
    color: #1a237e;
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.countdown-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fecb15;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(254, 203, 21, 0.3);
}

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

.countdown-location {
    margin-top: 2.5rem;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.countdown-location i {
    font-size: 1.2rem;
    color: #fecb15;
    filter: drop-shadow(0 2px 4px rgba(254, 203, 21, 0.3));
}

.countdown-location span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== QUICK ACCESS SECTION ===== */
.quick-access-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.quick-access-section::before {
    display: none;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-access-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 35, 126, 0.08);
    box-shadow: 0 10px 40px rgba(26, 35, 126, 0.08);
    text-decoration: none;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a237e, #283593);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.quick-access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.15);
}

.quick-access-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
    transition: all 0.4s ease;
}

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

.quick-access-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.quick-access-text {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.sponsor-card .quick-access-icon {
    background: linear-gradient(135deg, #fecb15 0%, #e6b500 100%);
    box-shadow: 0 8px 25px rgba(254, 203, 21, 0.4);
}

/* ===== SPONSORLARIMIZ - KAYAN KATEGORİLİ SLIDER ===== */
.agu-sponsors-section {
    padding: 3.5rem 0 4rem;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 50%, #fafbff 100%);
    position: relative;
    overflow: hidden;
}

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

.agu-sponsors-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.agu-sponsors-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a237e;
    background: rgba(26, 35, 126, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.agu-sponsors-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 0.5rem;
}

.agu-sponsors-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* Tab menü */
.agu-sponsors-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26, 35, 126, 0.06);
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.agu-sponsors-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.agu-sponsors-tab i {
    font-size: 0.85rem;
    opacity: 0.85;
}

.agu-sponsors-tab:hover {
    color: #1a237e;
    background: rgba(26, 35, 126, 0.06);
}

.agu-sponsors-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #1a237e, #283593);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.35);
}

.agu-sponsors-tab.active i {
    opacity: 1;
}

.agu-sponsors-tab--altin.active { background: linear-gradient(135deg, #d97706, #f59e0b); box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35); }
.agu-sponsors-tab--gumus.active { background: linear-gradient(135deg, #4b5563, #6b7280); box-shadow: 0 4px 15px rgba(75, 85, 99, 0.35); }
.agu-sponsors-tab--bronz.active { background: linear-gradient(135deg, #92400e, #b45309); box-shadow: 0 4px 15px rgba(146, 64, 14, 0.35); }
.agu-sponsors-tab--etkinlik.active { background: linear-gradient(135deg, #1a237e, #fecb15); box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3); }
.agu-sponsors-tab--medya.active { background: linear-gradient(135deg, #b91c1c, #dc2626); box-shadow: 0 4px 15px rgba(185, 28, 28, 0.35); }

/* Tab panelleri */
.agu-sponsors-panels {
    position: relative;
    min-height: 140px;
}

.agu-sponsors-panel {
    display: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(26, 35, 126, 0.06);
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.agu-sponsors-panel.active {
    display: block;
    animation: agu-sponsors-panel-in 0.35s ease;
}

.agu-sponsors-panel[hidden] {
    display: none !important;
}

@keyframes agu-sponsors-panel-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Kayan track */
.agu-sponsors-track {
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.agu-sponsors-slider {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: agu-sponsors-scroll 45s linear infinite;
    padding: 0 1rem;
}

.agu-sponsors-panel:hover .agu-sponsors-slider {
    animation-play-state: paused;
}

@keyframes agu-sponsors-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.agu-sponsors-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agu-sponsors-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 70px;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.agu-sponsors-slide:hover .agu-sponsors-logo-wrap {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.1);
}

.agu-sponsors-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.agu-sponsors-slide:hover .agu-sponsors-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA link */
.agu-sponsors-cta {
    text-align: center;
    margin-top: 2rem;
}

.agu-sponsors-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a237e;
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    background: rgba(26, 35, 126, 0.06);
    border: 1px solid rgba(26, 35, 126, 0.12);
    transition: all 0.3s ease;
}

.agu-sponsors-link:hover {
    background: rgba(26, 35, 126, 0.12);
    color: #1a237e;
    border-color: rgba(26, 35, 126, 0.2);
}

/* ── Sponsorlar Yakında ───────────────────────────────── */
.agu-sponsors-yakinda {
    text-align: center;
    padding: 2.5rem 1rem 1rem;
}

.agu-sponsors-yakinda-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.agu-sponsors-yakinda-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.agu-sponsors-yakinda-icon.platin {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    color: #3949ab;
}
.agu-sponsors-yakinda-icon.altin {
    background: linear-gradient(135deg, #fff9e6, #fef08a);
    color: #b45309;
}
.agu-sponsors-yakinda-icon.gumus {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #64748b;
}
.agu-sponsors-yakinda-icon.bronz {
    background: linear-gradient(135deg, #fef3e2, #fed7aa);
    color: #c2410c;
}

.agu-sponsors-yakinda h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 0.6rem;
}

.agu-sponsors-yakinda p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 1.5rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.agu-sponsors-yakinda-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
}

.agu-sponsors-yakinda-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26, 35, 126, 0.35);
}

.agu-sponsors-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.agu-sponsors-link:hover i {
    transform: translateX(4px);
}

/* ===== ANA SAYFA: SLIDER İLE AYNI GENİŞLİK (1600px) ===== */
.supporters-section .container,
.news-section .container,
.reels-section .container {
    max-width: 1600px;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* ===== SUPPORTERS SECTION - YENİ TASARIM ===== */
.supporters-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.supporters-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.supporters-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.supporters-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.supporters-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

.supporters-showcase {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.supporter-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(26, 35, 126, 0.08);
}

.supporter-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #1a237e, #fecb15);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.supporter-item:hover::before {
    opacity: 1;
}

.supporter-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.15);
}

.supporter-logo-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #f8f9ff, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.supporter-item:hover .supporter-logo-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(26, 35, 126, 0.15);
}

.supporter-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.supporter-info {
    padding-top: 0.5rem;
}

.supporter-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a237e;
    margin: 0;
}

/* ===== NEWS SECTION - YENİ TASARIM ===== */
.news-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fecb15, #e6b500);
    color: #1a237e;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.news-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a237e;
    margin: 0;
}

.news-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a237e;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(26, 35, 126, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-all-link:hover {
    background: #1a237e;
    color: #fff;
    gap: 1rem;
}

/* News Showcase */
.news-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-main-display {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.12);
    min-height: 450px;
    background: #fff;
}

.news-display-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
}

.news-display-item.active {
    opacity: 1;
    visibility: visible;
}

.news-display-image {
    position: relative;
    width: 55%;
    overflow: hidden;
}

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

.news-display-item:hover .news-display-image img {
    transform: scale(1.05);
}

.news-display-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.8) 100%);
}

.news-display-content {
    width: 45%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-display-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #1a237e;
    background: rgba(26, 35, 126, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.news-display-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-display-excerpt {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-display-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    background: linear-gradient(135deg, #1a237e, #283593);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.news-display-link:hover {
    gap: 1rem;
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(26, 35, 126, 0.4);
    color: #fff;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-page-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.news-page-btn:hover {
    border-color: #1a237e;
    background: rgba(26, 35, 126, 0.03);
}

.news-page-btn.active {
    background: linear-gradient(135deg, #1a237e, #283593);
    border-color: #1a237e;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.news-page-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a237e;
    transition: all 0.3s ease;
}

.news-page-btn.active .news-page-number {
    color: #fecb15;
}

.news-page-title {
    font-size: 0.7rem;
    color: #6b7280;
    text-align: center;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.news-page-btn.active .news-page-title {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== INSTAGRAM REELS SECTION ===== */
.reels-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.reels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80,
        #FCAF45, #F77737, #F56040, #FD1D1D, #E1306C, #C13584, #833AB4, #5851DB, #405DE6
    );
    background-size: 200% 100%;
    animation: instagramGradient 3s linear infinite;
}

@keyframes instagramGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.reels-block {
    margin-bottom: 3rem;
}

.reels-block:last-child {
    margin-bottom: 0;
}

.reels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reels-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reels-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reels-badge.kariyer {
    background: linear-gradient(45deg, #1a237e, #283593, #3949ab);
}

.reels-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
    margin: 0;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
    color: #fff;
}

.instagram-follow-btn.kariyer {
    background: linear-gradient(45deg, #1a237e, #283593);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
}

.instagram-follow-btn.kariyer:hover {
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.4);
}

.instagram-follow-btn i.fa-external-link-alt {
    font-size: 0.7rem;
    opacity: 0.7;
}

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

.reels-slider {
    overflow: hidden;
    border-radius: 20px;
}

.reels-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reel-item {
    flex: 0 0 calc(33.333% - 0.85rem);
    min-width: calc(33.333% - 0.85rem);
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.reel-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.reel-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-item:hover::before {
    opacity: 1;
}

/* Reels Navigation */
.reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1a237e;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reels-nav:hover {
    background: linear-gradient(45deg, #833AB4, #C13584);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.3);
}

.reels-prev {
    left: 0;
}

.reels-next {
    right: 0;
}

/* Loading State */
.reel-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.reel-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #C13584;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Reels Responsive */
@media (max-width: 1200px) {
    .reel-item {
        flex: 0 0 calc(50% - 0.625rem);
        min-width: calc(50% - 0.625rem);
    }
}

@media (max-width: 768px) {
    .reels-section {
        padding: 3rem 0;
    }
    
    .reels-block {
        margin-bottom: 3rem;
    }
    
    .reels-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .reels-title-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .reels-title {
        font-size: 1.5rem;
    }
    
    .instagram-follow-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .reels-slider-wrapper {
        padding: 0;
    }
    
    .reel-item {
        flex: 0 0 85%;
        min-width: 85%;
    }
    
    .reels-track {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .reels-nav {
        display: none;
    }
    
    /* Touch scroll için */
    .reels-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .reels-slider::-webkit-scrollbar {
        display: none;
    }
    
    .reel-item {
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .reels-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.875rem;
    }
    
    .reels-title {
        font-size: 1.25rem;
    }
    
    .instagram-follow-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .instagram-follow-btn span {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .reel-item {
        flex: 0 0 90%;
        min-width: 90%;
    }
}

/* ===== FLOATING RECTOR BUTTON ===== */
.floating-rector-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.rector-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 10px 35px rgba(26, 35, 126, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.rector-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(26, 35, 126, 0.5);
}

.rector-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.rector-text {
    font-size: 0.9rem;
}

/* ===== RECTOR MODAL ===== */
.rector-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.rector-modal.active {
    display: flex;
}

.rector-modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}

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

.rector-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
    font-size: 1.1rem;
}

.rector-modal-close:hover {
    transform: rotate(90deg);
}

.rector-modal-body {
    padding: 3rem;
    text-align: center;
}

.rector-modal-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid #1a237e;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.rector-modal-title {
    font-size: 1.75rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.rector-modal-text {
    text-align: left;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.rector-modal-text p {
    margin-bottom: 1rem;
}

.rector-signature {
    text-align: right;
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
}

.rector-name {
    font-weight: 700;
    color: #1a237e;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.rector-title {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-content {
        bottom: 60px;
        left: 40px;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        bottom: 50px;
        left: 30px;
    }

    .hero-countdown {
        top: 28px;
        right: 16px;
        padding: 0.75rem 0.85rem;
    }

    .hero-countdown-title {
        font-size: 0.85rem;
    }

    .hero-countdown-timer {
        gap: 0.4rem;
    }

    .hero-countdown-item {
        min-width: 46px;
        padding: 0.35rem 0.4rem;
    }

    .hero-countdown-number {
        font-size: 0.9rem;
    }

    .hero-countdown-label {
        font-size: 0.5rem;
    }

    .hero-countdown-location {
        font-size: 0.7rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .slider-prev { left: 15px; }
    .slider-next { right: 15px; }
    
    .quick-access-grid {
        max-width: 100%;
    }
    
    .supporters-showcase {
        gap: 1.5rem;
    }
    
    .supporter-item {
        min-width: 250px;
    }
    
    .news-display-item {
        position: relative !important;
        flex-direction: column;
        height: auto !important;
    }
    
    .news-display-item:not(.active) {
        display: none !important;
    }
    
    .news-display-item.active {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .news-display-image,
    .news-display-content {
        width: 100%;
    }
    
    .news-display-image {
        height: 250px;
    }
    
    .news-display-overlay {
        display: none;
    }
    
    .news-display-content {
        padding: 2rem;
    }
    
    .news-main-display {
        min-height: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    /* Desktop hero gizle, mobil göster */
    .agu-hero-section {
        display: none;
    }
    
    .mobile-hero-section {
        display: block;
    }
    
    .hero-section {
        display: none;
    }
    
    .mobile-hero-buttons-section {
        display: none;
    }
    
    .countdown-section {
        padding: 2rem 0;
    }
    
    .countdown-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 75px;
        padding: 1rem 1.25rem;
        border-radius: 16px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .countdown-location {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .countdown-location i {
        font-size: 1rem;
    }
    
    .quick-access-section {
        padding: 2rem 0;
    }
    
    .agu-sponsors-section {
        padding: 2.5rem 0 3rem;
    }
    
    .agu-sponsors-container {
        padding: 0 1rem;
    }
    
    .supporters-section .container,
    .news-section .container,
    .reels-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .agu-sponsors-title {
        font-size: 1.5rem;
    }
    
    .agu-sponsors-tabs {
        gap: 0.35rem;
        padding: 0.4rem;
        flex-wrap: wrap;
    }
    
    .agu-sponsors-tab {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .agu-sponsors-tab i {
        font-size: 0.75rem;
    }
    
    .agu-sponsors-tab span {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .agu-sponsors-tab span {
        display: inline;
    }
    
    .agu-sponsors-tab {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .agu-sponsors-logo-wrap {
        width: 110px;
        height: 55px;
        padding: 0.4rem 0.75rem;
    }
    
    .agu-sponsors-slider {
        gap: 1.5rem;
        animation-duration: 35s;
    }
    
    .supporters-section,
    .news-section {
        padding: 2rem 0 3rem;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-access-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-access-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .supporters-title {
        font-size: 1.75rem;
    }
    
    .supporters-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .supporter-item {
        width: 100%;
        max-width: 320px;
    }
    
    .supporter-logo-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .news-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .news-header-left {
        align-items: center;
    }
    
    .news-title {
        font-size: 1.75rem;
    }
    
    .news-display-item:not(.active) {
        display: none !important;
    }
    
    .news-display-item.active {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .news-main-display {
        min-height: auto !important;
        height: auto !important;
    }
    
    .news-display-title {
        font-size: 1.35rem;
    }
    
    .news-pagination {
        gap: 0.5rem;
    }
    
    .news-page-btn {
        padding: 0.75rem 1rem;
        min-width: 60px;
        border-radius: 12px;
    }
    
    .news-page-number {
        font-size: 1.25rem;
    }
    
    .news-page-title {
        display: none;
    }
    
    .floating-rector-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .rector-button {
        padding: 0.6rem 1rem;
    }
    
    .rector-avatar {
        width: 38px;
        height: 38px;
    }
    
    .rector-text {
        font-size: 0.8rem;
    }
    
    .rector-modal-body {
        padding: 2rem;
    }
    
    .rector-modal-image {
        width: 110px;
        height: 110px;
    }
    
    .rector-modal-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .mobile-hero-section {
        margin-top: 58px;
    }
    
    .mobile-hero-content {
        padding: 2rem 1rem 1.5rem;
    }
    
    .mobile-badges {
        gap: 6px;
        margin-bottom: 0.75rem;
    }
    
    .mobile-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .mobile-hero-title {
        font-size: 2.25rem;
        letter-spacing: 2px;
    }
    
    .mobile-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .mobile-countdown {
        gap: 5px;
        margin-bottom: 1rem;
    }
    
    .mobile-countdown-item {
        padding: 6px 8px;
        min-width: 46px;
    }
    
    .mobile-countdown-num {
        font-size: 1.2rem;
    }
    
    .mobile-countdown-label {
        font-size: 0.5rem;
    }
    
    .mobile-hero-buttons {
        gap: 8px;
        max-width: 280px;
    }
    
    .mobile-btn {
        padding: 9px 14px;
        font-size: 0.8rem;
        max-width: 130px;
    }
    
    .mobile-hero-buttons-section {
        margin-top: 58px;
        padding: 2.5rem 1rem;
    }
    
    .mobile-hero-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 0.875rem 1rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .news-display-item:not(.active) {
        display: none !important;
    }
    
    .news-display-item.active {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .news-display-image {
        height: 200px;
    }
    
    .news-display-overlay {
        display: none;
    }
    
    .news-display-content {
        padding: 1.5rem;
    }
    
    .news-display-title {
        font-size: 1.2rem;
    }
    
    .news-display-excerpt {
        font-size: 0.9rem;
    }
}
