/* ===== MODERN LOGO ANIMATION - ZEMİNSİZ ===== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 5px 0;
}

.rotating-logo {
    width: 140px; /* DAHA BÜYÜK */
    height: 140px;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFlip 15s infinite linear;
}

/* Hover'da dursun, tıklamayla dönsün */
.rotating-logo:hover .logo-3d {
    animation-play-state: paused;
}

/* Logo yüzleri - ZEMİN YOK, ÇERÇEVE YOK */
.logo-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0; /* YUVARLAK DEĞİL, KÖŞELER DÜZ */
    overflow: visible; /* RESİM TAŞMASIN */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important; /* ZEMİN YOK */
    box-shadow: none !important; /* GÖLGE YOK */
    border: none !important; /* ÇERÇEVE YOK */
}

/* Logo resimleri - TAM EKRAN */
.logo-img {
    width: 100%; /* TAM GENİŞLİK */
    height: 100%; /* TAM YÜKSEKLİK */
    object-fit: contain; /* ORANLARI KORU */
    padding: 0; /* PADDING YOK */
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* HAFİF GÖLGE */
}

/* Hover efekti - Sadece hafif büyüme */
.logo-face:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.logo-front {
    transform: rotateY(0deg);
}

.logo-back {
    transform: rotateY(180deg);
}

/* Daha yavaş ve net animasyon */
@keyframes logoFlip {
    0% {
        transform: rotateY(0deg);
    }
    10% {
        transform: rotateY(0deg); /* Türk Sağlık Sen görünür */
    }
    15% {
        transform: rotateY(90deg);
    }
    50% {
        transform: rotateY(180deg); /* Kamu-Sen görünür */
    }
    55% {
        transform: rotateY(270deg);
    }
    60% {
        transform: rotateY(360deg); /* Tekrar Türk Sağlık Sen */
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Logo Text - Daha şık */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-title {
    margin: 0;
    color: #8B0000;
    text-transform:uppercase;
    font-size: 4rem; /* DAHA BÜYÜK */
    font-weight: 800; /* DAHA KALIN */
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.site-subtitle {
    margin: 8px 0 0 0;
    color: #B22222;
    text-transform:uppercase;
    font-size: rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.mobile-search-btn{
    display:none!important;
}

/* Responsive - DAHA İYİ */
@media (max-width: 1200px) {
    .rotating-logo {
        width: 120px;
        height: 120px;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .rotating-logo {
        width: 100px;
        height: 100px;
    }
    
    .site-title {
        font-size: 1.6rem;
    }
    
    .site-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .logo-container {
        flex-direction: row; /* MOBİLDE DE YAN YANA */
        gap: 15px;
        justify-content: center;
        text-align: left;
    }
    
    .rotating-logo {
        width: 80px;
        height: 80px;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .site-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .logo-container {
        gap: 12px;
    }
    
    .rotating-logo {
        width: 70px;
        height: 70px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .site-subtitle {
        font-size: 0.8rem;
        margin-top: 5px;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .rotating-logo {
        width: 80px;
        height: 80px;
    }
    
    .site-title {
        font-size: 1.3rem;
    }
}

/* Animasyonu kapatma seçeneği */
@media (prefers-reduced-motion: reduce) {
    .logo-3d {
        animation: none;
    }
    
    .rotating-logo:hover .logo-3d {
        transform: rotateY(180deg);
        transition: transform 1s ease;
    }
}
.rotating-logo {
    transform: translateZ(0); /* GPU acceleration */
    will-change: transform; /* Performans optimizasyonu */
}

/* Slider yanı haber akış efektli*/
/* Resim sağdan kayarak gelsin */
.news-card {
    position: relative;
    overflow: hidden;
}

.news-card-image {
    position: absolute;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: right 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    border-radius: 0 12px 12px 0;
}

.news-card:hover .news-card-image {
    right: 0;
    opacity: 0.2;
}

/* İçerik solda kalsın */
.news-card-content {
    width: 100%;
    transition: width 0.5s ease;
}

.news-card:hover .news-card-content {
    width: 60%;
}
.card-bg-image {
    background-image: var(--news-image, 
        linear-gradient(135deg, #8B0000, #B22222));
}

/* Kategoriye göre renk */
.news-card[data-category="guncel"] .card-bg-image {
    background-image: linear-gradient(135deg, #e67e22, #f39c12);
}

.news-card[data-category="ekonomi"] .card-bg-image {
    background-image: linear-gradient(135deg, #1890ff, #096dd9);
}

.news-card[data-category="spor"] .card-bg-image {
    background-image: linear-gradient(135deg, #52c41a, #389e0d);
}
.hover-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    
    /* Önce resim */
    background-image: var(--news-image);
    background-size: cover;
    background-position: center;
    
    /* Resim yoksa gradient */
    background: var(--news-image, 
        linear-gradient(135deg, 
            var(--category-color, #8B0000), 
            color-mix(in srgb, var(--category-color, #8B0000) 80%, white)
        )
    );
    
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 12px;
}
/* style.css dosyasına ekle veya custom.css'ye */
.branch-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    border-bottom: 3px solid var(--tss-blue) !important;
    position: relative !important;
}

/* Şube haberleri butonlarını düzelt */
.carousel-controls {
    display: flex !important;
    gap: 10px !important;
    margin-left: auto !important; /* Bu önemli: sağa yaslar */
    order: 2 !important; /* Flex container içinde en sağa alır */
}

.branch-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

/* Butonların kendisi */
.carousel-btn {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    color: var(--tss-blue) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    transition: all 0.3s !important;
    position: static !important; /* absolute olmamalı */
    transform: none !important; /* transform sıfırla */
    top: auto !important;
    right: auto !important;
}

.carousel-btn:hover {
    background: var(--tss-blue) !important;
    color: white !important;
    border-color: var(--tss-blue) !important;
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .branch-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .carousel-controls {
        position: static !important;
        transform: none !important;
        margin-top: 15px !important;
        align-self: flex-end !important;
    }
}
/* Yeni stiller ekle */
.branch-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.branch-title-content {
    display: flex;
    flex-direction: column;
}

.branch-main-title {
    color: var(--tss-blue) !important;
    font-size: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.branch-subtitle {
    color: var(--text-light) !important;
    margin: 5px 0 0 0 !important;
    padding: 0 !important;
    font-size: 0.95rem !important;
}
@media (max-width: 768px) {
    .carousel-controls {
        float: none !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 15px;
    }
}
/* Modern Number Dots */
.slick-dots {
        display: flex !important;
    justify-content: center !important; /* YATAY ORTALA */
    align-items: center !important;     /* DİKEY ORTALA */
    gap: 10px !important;
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    z-index: 1000 !important;
}

.slick-dots li {
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
}

.slick-dots li button {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(5px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.slick-dots li button:hover {
    background: rgba(231, 57, 70, 0.8) !important;
    border-color: #e63946 !important;
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 10px 20px rgba(231, 57, 70, 0.4) !important;
}

.slick-dots li.slick-active button {
    background: #e63946 !important;
    border-color: #e63946 !important;
    transform: scale(1.15) !important;
    box-shadow: 0 0 25px rgba(231, 57, 70, 0.9) !important;
}

/* Hover efekti */
.slick-dots li button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.slick-dots li button:hover:after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .slick-dots li button {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }
}
.main-slider .slick-dots li.slick-active button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 5px #e63946; }
    50% { box-shadow: 0 0 20px #e63946; }
    100% { box-shadow: 0 0 5px #e63946; }
}
/* MANŞETTEN HABERLER BÖLÜMÜ */
.sidebar-news-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.sidebar-news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.sidebar-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #e63946;
}

/* RESİM ALANI */
.sidebar-news-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sidebar-news-card:hover .sidebar-news-image img {
    transform: scale(1.05);
}

/* KATEGORİ ETİKETİ */
.sidebar-news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* İÇERİK ALANI */
.sidebar-news-content {
    padding: 15px;
}

.sidebar-news-title {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-news-title a:hover {
    color: #e63946;
}

/* ALT BİLGİ */
.sidebar-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #7f8c8d;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.news-date, .news-views {
    display: flex;
    align-items: center;
    gap: 5px;
}
/* ===== MODERN NEWS GRID ===== */
.modern-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 10px;
    padding: 10px 0;
}

.modern-news-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 150px; /* Sabit yükseklik */
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Resim Katmanı */
.card-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B0000, #B22222);
    color: white;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.fallback-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* İçerik Katmanı */
.card-content-layer {
    position: relative;
    z-index: 2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.85) 100%
    );
    color: white;
}

/* Başlık - EN ÜST */
.news-title {
    margin: 0 0 auto 0; /* Altına boşluk bırak */
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.news-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Footer - ALTA YAPIŞIK */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.9;
}

/* Kategori */
.news-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* İzlenme ve Tarih */
.news-views, .news-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.news-views i, .news-date i {
    font-size: 12px;
    opacity: 0.7;
}

/* Hover Overlay - RESİM ÇIKSIN */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(178, 34, 34, 0.7));
    opacity: 0;
    z-index: 3;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* ===== HOVER EFFECTS ===== */
.modern-news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
}

.modern-news-card:hover .news-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.modern-news-card:hover .card-hover-overlay {
    opacity: 0.3; /* KIRMIZI OVERLAY ÇIKSIN */
}

.modern-news-card:hover .news-title a {
    color: #FFD700; /* Altın rengi */
}

.modern-news-card:hover .news-category {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .modern-news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .modern-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .modern-news-card {
        height: 320px;
    }
    
    .card-content-layer {
        padding: 20px;
    }
    
    .news-title {
        font-size: 17px;
    }
    
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .modern-news-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-news-card {
        height: 300px;
    }
    
    .news-title {
        font-size: 16px;
    }
}
/* YAN BÖLÜM HABER KARTLARI */
.sidebar-news-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

/* KART TASARIMI */
.sidebar-news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
}

.sidebar-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #e63946;
}

/* RESİM ALANI (ÜST) */
.sidebar-news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-news-card:hover .sidebar-news-image img {
    transform: scale(1.08);
}

/* KATEGORİ BADGE (RESİM ÜZERİNDE) */
.news-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(231, 57, 70, 0.9);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(5px);
}

/* HOVER OVERLAY */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-news-card:hover .image-overlay {
    opacity: 1;
}

/* İÇERİK ALANI (ALT) */
.sidebar-news-content {
    padding: 20px;
    background: white;
}

/* BAŞLIK */
.news-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a:hover {
    color: #e63946;
}

/* META BİLGİLER */
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #7f8c8d;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.meta-date, .meta-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-date i, .meta-views i {
    font-size: 14px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .sidebar-news-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sidebar-news-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar-news-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .sidebar-news-image {
        height: 160px;
    }
    
    .sidebar-news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 15px;
    }
}/* NAVBAR SEARCH FIX */
/* NAVBAR SEARCH FIX */
.main-nav {
    position: relative;
    z-index: 100;
    background: #8B0000;
}

.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    overflow: visible !important;
}

.nav-menu {
    display: flex !important;
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    flex-wrap: wrap !important;
}

.nav-menu li {
    position: relative;
    z-index: 100;
}

.nav-search {
    margin-left: 20px !important;
    position: relative !important;
    z-index: 101 !important;
    flex-shrink: 0 !important;
}

/* Vue Search Container */
#vue-search-app {
    position: relative !important;
    display: inline-block !important;
    width: 250px !important;
    z-index: 102 !important;
}

/* Dropdown fix */
#vue-search-app > div > div:last-child {
    position: absolute !important;
    z-index: 9999 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-search {
        display: none !important;
    }
    
    .mobile-search-btn {
        display: inline-block !important;
        color: white;
        font-size: 20px;
        cursor: pointer;
        margin-left: 15px;
    }
}
/* ===== MOBİL MENÜ DÜZENLEMESİ ===== */
@media (max-width: 991px) {
    /* Desktop menüyü gizle */
    .nav-menu {
        display: none !important;
    }
    
    /* Navbar düzenini ayarla */
    .nav-container {
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        padding: 10px 0 !important;
    }
    
    /* Hamburger butonu */
    .hamburger-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
        z-index: 1001;
    }
    
    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobil menü container */
    .mobile-menu-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #8B0000;
        z-index: 9999;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu-container.active {
        left: 0;
    }
    
    /* Mobil menü overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobil menü içeriği */
    .mobile-menu-header {
        padding: 20px;
        background: rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-title {
        color: white;
        font-size: 18px;
        font-weight: bold;
        margin: 0;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Mobil menü listesi */
    .mobile-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu li a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: 0.3s;
    }
    
    .mobile-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 25px;
    }
    
    /* Mobil dropdown */
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-dropdown-toggle::after {
        content: '›';
        font-size: 20px;
        transition: 0.3s;
    }
    
    .mobile-dropdown-toggle.active::after {
        transform: rotate(90deg);
    }
    
    .mobile-dropdown-menu {
        display: none;
        background: rgba(0, 0, 0, 0.2);
        padding: 0;
    }
    
    .mobile-dropdown-menu.active {
        display: block;
    }
    
    .mobile-dropdown-menu li a {
        padding-left: 30px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.1);
    }
}


/* Desktop'ta hamburger gizle */
@media (min-width: 992px) {
    .hamburger-btn,
    .mobile-menu-container,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}
/* ⭐⭐ MOBILE BUTON FIX - KESİNLİKLE GÖSTER ⭐⭐ */
.mobile-search-btn {
    display: none;
    cursor: pointer;
    color: white !important;
    font-size: 20px !important;
    margin-left: 15px !important;
    padding: 8px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s !important;
}

.mobile-search-btn:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    .hamburger-btn {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(231, 57, 70, 0.95) !important;
        border: 2px solid rgba(255, 255, 255, 0.6) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Logo alanını ayarla */
    .logo-container {
        padding-right: 55px !important;
        width: calc(100% - 55px) !important;
    }
    
    /* Hamburger butonunu daha belirgin yap */
    .hamburger-btn span {
        background: white !important;
        width: 22px !important;
        height: 3px !important;
        margin: 3px 0 !important;
    }
}

/* 480px ve altı */
@media (max-width: 480px) {
    .hamburger-btn {
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-container {
        padding-right: 50px !important;
    }
    
    .hamburger-btn span {
        width: 20px !important;
        height: 2.5px !important;
    }
}

/* Navbar yüksekliğini ayarla ki hamburger düzgün görünsün */
.main-nav {
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
}

.nav-container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}