/* ========== ROOT DEĞİŞKENLER ========== */
:root {
    --primary-burgundy: #8B2C2D;
    --primary-gold: #C5A028;
    --primary-gold-light: #e2bc6c;
    --primary-cream: #FDF7E7;
    --dark-burgundy: #631f20;
    --light-gold: #f3e5c2;
    --gray-dark: #1e1b16;
    --glass-bg: rgba(255, 255, 245, 0.92);
    --shadow-elegant: 0 25px 45px -12px rgba(0,0,0,0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-cream);
    color: #2c2a27;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-burgundy);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b58f2a 100%);
    color: #1e1b16;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 32px;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 8px 20px rgba(197,160,40,0.3);
}
.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(197,160,40,0.4);
    background: linear-gradient(135deg, #b58f2a 0%, var(--primary-gold) 100%);
    color: #2d2d2d;
}
.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-burgundy);
    font-weight: 500;
    border-radius: 50px;
    padding: 8px 28px;
    transition: var(--transition-smooth);
}
.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-burgundy));
    border-radius: 4px;
}

/* Header Top Bar */
.top-bar {
    background: var(--gray-dark);
    color: #e5dccf;
    font-size: 0.85rem;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}
.top-bar a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin: 0 12px;
}
.top-bar a:hover { 
    color: white; 
}

/* Navbar Modern */
.navbar-custom {
    background: rgba(255, 255, 245, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    padding: 8px 0;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1000;
}
.navbar-brand img {
    max-height: 70px;
    width: auto;
    transition: var(--transition-smooth);
}
.navbar-brand img:hover {
    transform: scale(1.02);
}

/* Mega Menu / Dropdown Styles */
.nav-item {
    position: relative;
}
.nav-link {
    font-weight: 600;
    margin: 0 6px;
    color: #2c2a27;
    transition: var(--transition-smooth);
    position: relative;
    padding: 10px 16px;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}
.nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gold);
    transition: 0.3s;
    border-radius: 3px;
}
.nav-link:hover:after {
    width: 100%;
}

/* Dropdown Menu - Hover ile açılan */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 260px;
    padding: 12px 0;
    margin: 0;
    font-size: 0.9rem;
    color: #2c2a27;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.nav-item:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dropdown-menu .dropdown-item {
    font-weight: 500;
    padding: 8px 24px;
    transition: all 0.2s;
    color: #2c2a27;
}
.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-cream);
    color: var(--primary-burgundy);
    padding-left: 28px;
}
/* Sağ taraftaki dropdown için */
.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* ========== HEADER ALANI (İKİ ALAN) - MOBİL DÜZELTMELİ ========== */
.hero-header {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
}
.hero-header-container {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    width: 100%;
}

/* SOL TARAF - İLÇE RESİMLERİ (Dönen) */
.hero-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 300px;
    width: 100%;
}
.hero-left .swiper {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-left .swiper-wrapper {
    height: 100%;
}
.hero-left .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
    min-height: 300px;
}
.hero-left .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}
.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    font-weight: 500;
    font-size: 0.9rem;
}

/* SAĞ TARAF - BAŞKAN ALANI */
.hero-right {
    flex: 1;
    background: linear-gradient(145deg, rgba(139,44,45,0.95), rgba(99,31,32,0.98));
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    width: 100%;
}
.president-card-transparent {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    width: 100%;
}
.president-image {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}
.president-image img {
    max-width: 200px;
    width: 100%;
    border-radius: 30px;
    background: transparent;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    transition: transform 0.4s;
}
.president-image img:hover {
    transform: scale(1.02);
}
.president-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.president-title {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 1rem;
}
.president-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0.75rem auto;
    border-radius: 3px;
}
.social-media-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.social-icon-header {
    width: 40px;
    height: 40px;
    background: rgba(255,255,240,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-decoration: none;
    backdrop-filter: blur(4px);
}
.social-icon-header:hover {
    background: var(--primary-gold);
    color: var(--primary-burgundy);
    transform: translateY(-5px);
}

/* Özel Bilgi Kartları */
.info-premium {
    background: white;
    border-radius: 32px;
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--primary-gold);
    text-align: center;
    height: 100%;
}
.info-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px rgba(139,44,45,0.12);
}
.info-premium i {
    font-size: 3rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

/* Tab Panel */
.tab-modern {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
}
.nav-tabs-premium {
    border-bottom: none;
    gap: 12px;
    flex-wrap: wrap;
}
.nav-tabs-premium .nav-link {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    background: #f0ebe0;
    color: var(--primary-burgundy);
    border: none;
    transition: 0.3s;
}
.nav-tabs-premium .nav-link.active {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
    color: white;
    box-shadow: 0 10px 20px rgba(139,44,45,0.3);
}
.nav-tabs-premium .nav-link:hover:not(.active) {
    background: #e5ddce;
    transform: translateY(-2px);
}

/* ========== HABER KARTLARI - RESİMLİ ========== */
.news-card-image {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}
.news-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(139,44,45,0.15);
}
.news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card-image:hover .news-img {
    transform: scale(1.05);
}
.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: #2d2d2d;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.news-content {
    padding: 1.5rem;
}
.news-meta {
    margin-bottom: 0.75rem;
}
.news-date {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}
.news-date i {
    margin-right: 5px;
    color: var(--primary-gold);
}
.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-burgundy);
    line-height: 1.4;
}
.news-excerpt {
    font-size: 0.85rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.news-readmore {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.news-readmore:hover {
    color: var(--primary-burgundy);
    gap: 8px;
}

/* ========== DUYURU KARTLARI - RESİMLİ ========== */
.duyuru-card-image {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}
.duyuru-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.duyuru-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
}
.duyuru-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.duyuru-card-image:hover .duyuru-img {
    transform: scale(1.05);
}
.duyuru-icon-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-burgundy);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}
.duyuru-card-image:hover .duyuru-icon-overlay {
    transform: scale(1.1);
    background: var(--primary-gold);
    color: var(--primary-burgundy);
}
.duyuru-content {
    padding: 1.2rem;
}
.duyuru-meta {
    margin-bottom: 0.5rem;
}
.duyuru-date {
    font-size: 0.7rem;
    color: #7f8c8d;
}
.duyuru-date i {
    margin-right: 5px;
    color: var(--primary-gold);
}
.duyuru-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-burgundy);
    line-height: 1.3;
}
.duyuru-excerpt {
    font-size: 0.8rem;
    color: #5a5a5a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.duyuru-readmore {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.duyuru-readmore:hover {
    color: var(--primary-burgundy);
    gap: 8px;
}

/* ========== VİDEO KARTLARI ========== */
.video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.video-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .video-img {
    transform: scale(1.05);
}
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}
.video-card:hover .video-play-overlay {
    opacity: 1;
}
.video-play-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.video-play-btn:hover {
    transform: scale(1.1);
    background: white;
    color: var(--primary-gold);
}
.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}
.video-content {
    padding: 1rem;
}
.video-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-burgundy);
    line-height: 1.3;
}
.video-stats {
    font-size: 0.7rem;
    color: #7f8c8d;
}
.video-stats i {
    margin-right: 5px;
    color: var(--primary-gold);
}

/* Proje Kartları */
.project-card-premium {
    border-radius: 32px;
    overflow: hidden;
    background: white;
    transition: all 0.5s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}
.project-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px rgba(0,0,0,0.12);
}
.project-img-wrapper {
    overflow: hidden;
    height: 240px;
}
.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.project-card-premium:hover .project-img-wrapper img {
    transform: scale(1.08);
}
.project-card-premium .badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
}
.project-card-premium h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-burgundy);
}
.project-card-premium p {
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.5;
}

/* ========== FOOTER MODERN ========== */
.footer-modern {
    background: linear-gradient(135deg, #1a1712 0%, #0f0e0a 100%);
    padding-top: 4rem;
    color: #e5dccf;
}
.footer-modern .footer-title {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-modern .footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
}
.footer-modern .footer-links {
    margin: 0;
    padding: 0;
}
.footer-modern .footer-links li {
    margin-bottom: 0.75rem;
}
.footer-modern .footer-links a {
    color: #ccc5b5;
    transition: 0.3s;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
}
.footer-modern .footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}
.footer-modern .footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-gold);
    transition: 0.3s;
}
.footer-modern .footer-links a:hover i {
    transform: translateX(3px);
}
.footer-modern .footer-logo img {
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}
.footer-modern .footer-logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(197,160,40,0.5));
}
.footer-modern .social-media-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.footer-modern .social-icon-circle {
    width: 38px;
    height: 38px;
    background: rgba(197,160,40,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--primary-gold);
    text-decoration: none;
}
.footer-modern .social-icon-circle:hover {
    background: var(--primary-gold);
    color: #1a1712;
    transform: translateY(-3px);
}
.footer-modern .footer-bottom {
    border-top: 1px solid rgba(197,160,40,0.2);
}
.footer-modern .footer-bottom small {
    font-size: 0.75rem;
    color: #9a947e;
}

/* ========== RESPONSIVE DÜZENLEMELER ========== */
/* Tablet ve Mobil için hero-header düzenlemeleri */
@media (max-width: 992px) {
    .hero-header-container {
        flex-direction: column;
    }
    .hero-left, .hero-right {
        min-height: 400px;
        width: 100%;
    }
    .hero-left {
        min-height: 350px;
    }
    .hero-left .swiper-slide {
        min-height: 350px;
    }
    .hero-right {
        padding: 2rem 1.5rem;
    }
    .president-image img {
        max-width: 180px;
    }
    .president-name {
        font-size: 1.6rem;
    }
    .president-title {
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-title:after {
        width: 60px;
    }
    .nav-item:hover .dropdown-menu {
        display: none;
    }
    /* Mobilde dropdown buton ile açılır */
    .dropdown-menu {
        display: none;
        position: static;
        float: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 5px;
        border-radius: 12px;
    }
    .dropdown-toggle.show + .dropdown-menu,
    .dropdown.show .dropdown-menu {
        display: block;
    }
    .nav-link:after {
        display: none;
    }
    .news-image-wrapper,
    .duyuru-image-wrapper {
        height: 180px;
    }
    .video-image-wrapper {
        height: 180px;
    }
    .footer-modern .footer-title:after {
        width: 30px;
    }
    .footer-modern .footer-links li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-header-container {
        flex-direction: column;
    }
    .hero-left, .hero-right {
        min-height: auto;
    }
    .hero-left {
        min-height: 280px;
    }
    .hero-left .swiper-slide {
        min-height: 280px;
    }
    .hero-right {
        padding: 1.5rem;
    }
    .president-image img {
        max-width: 150px;
    }
    .president-name {
        font-size: 1.4rem;
    }
    .president-title {
        font-size: 0.9rem;
    }
    .social-icon-header {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .slide-caption {
        font-size: 0.75rem;
        bottom: 12px;
        left: 12px;
        padding: 5px 12px;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.8rem;
    }
    .navbar-brand img {
        max-height: 55px;
    }
    .info-premium {
        margin-bottom: 20px;
    }
    .tab-modern {
        padding: 1rem;
    }
    .nav-tabs-premium .nav-link {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .news-title,
    .duyuru-title,
    .video-title {
        font-size: 0.9rem;
    }
    .news-excerpt,
    .duyuru-excerpt {
        font-size: 0.75rem;
    }
    .footer-modern {
        padding-top: 2.5rem;
    }
    .footer-modern .footer-title {
        margin-top: 1rem;
    }
    .footer-modern .footer-bottom .row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-left {
        min-height: 250px;
    }
    .hero-left .swiper-slide {
        min-height: 250px;
    }
    .hero-right {
        padding: 1.2rem;
    }
    .president-image img {
        max-width: 120px;
    }
    .president-name {
        font-size: 1.2rem;
    }
    .president-title {
        font-size: 0.8rem;
    }
    .social-icon-header {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .btn-gold, .btn-outline-gold {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    .news-image-wrapper,
    .duyuru-image-wrapper,
    .video-image-wrapper {
        height: 160px;
    }
    .news-content,
    .duyuru-content,
    .video-content {
        padding: 1rem;
    }
    .project-img-wrapper {
        height: 180px;
    }
    .project-card-premium h5 {
        font-size: 1rem;
    }
}

/* ========== ANİMASYONLAR ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ========== YARDIMCI SINIFLAR ========== */
.text-gold {
    color: var(--primary-gold);
}
.bg-gold {
    background: var(--primary-gold);
}
.bg-burgundy {
    background: var(--primary-burgundy);
}
.cursor-pointer {
    cursor: pointer;
}
.transition {
    transition: var(--transition-smooth);
}