 /* AOS kaynaklı opacity sorununu düzelt */
        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2d1516 100%);
            padding: 2.5rem 0;
            margin-bottom: 2rem;
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        
        /* Sekme Stili */
        .tabs-container {
            background: white;
            border-radius: 28px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
            border: 1px solid #f0e5d5;
            margin-bottom: 2rem;
        }
        .nav-tabs-custom {
            background: #fef9e8;
            border-bottom: 1px solid #f0e5d5;
            padding: 0 1rem;
        }
        .nav-tabs-custom .nav-link {
            border: none;
            padding: 1rem 2rem;
            font-weight: 600;
            color: #6c6c6c;
            transition: all 0.3s;
            position: relative;
        }
        .nav-tabs-custom .nav-link i {
            margin-right: 8px;
            color: var(--primary-gold);
        }
        .nav-tabs-custom .nav-link:hover {
            color: var(--primary-burgundy);
            background: transparent;
        }
        .nav-tabs-custom .nav-link.active {
            color: var(--primary-burgundy);
            background: white;
            border-bottom: 3px solid var(--primary-gold);
        }
        .tab-content-custom {
            padding: 1.5rem;
        }
        
        /* Arama Bölümü */
        .search-section {
            background: #f8f5ef;
            border-radius: 60px;
            padding: 0.2rem 0.2rem 0.2rem 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        .search-section i {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        .search-section input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            outline: none;
        }
        .search-section input::placeholder {
            color: #aaa;
        }
        .result-count {
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 1rem;
            padding-left: 0.5rem;
        }
        
        /* Tablo Stili */
        .table-container {
            overflow-x: auto;
        }
        .sister-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .sister-table th {
            background: linear-gradient(135deg, #fef9e8, #fff6e5);
            padding: 1rem;
            text-align: left;
            font-weight: 700;
            color: var(--primary-burgundy);
            border-bottom: 2px solid var(--primary-gold);
        }
        .sister-table td {
            padding: 1rem;
            border-bottom: 1px solid #f0e5d5;
            vertical-align: middle;
        }
        .sister-table tr:hover td {
            background: #fef9e8;
        }
        .sister-table .sira-col {
            width: 70px;
            text-align: center;
            font-weight: 600;
            color: var(--primary-gold);
        }
        .sister-table .belediye-col {
            font-weight: 600;
            color: var(--primary-burgundy);
        }
        .city-badge {
            background: #f8f5ef;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            display: inline-block;
        }
        .country-badge {
            background: rgba(197,160,40,0.15);
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            display: inline-block;
        }
        .country-badge i {
            margin-right: 5px;
            color: var(--primary-gold);
        }
        
        /* Kart Görünümü (Mobil için alternatif) */
        .cards-view {
            display: none;
        }
        .sister-card {
            background: white;
            border-radius: 20px;
            padding: 1rem;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #f0e5d5;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .sister-card .card-number {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .sister-card .card-info {
            flex: 1;
        }
        .sister-card .card-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 0.25rem;
        }
        .sister-card .card-info p {
            font-size: 0.8rem;
            color: #666;
            margin: 0;
        }
        .sister-card .card-location {
            text-align: right;
        }
        .sister-card .card-location .city {
            font-weight: 600;
            color: var(--primary-gold);
        }
        .sister-card .card-location .country {
            font-size: 0.7rem;
            color: #888;
        }
        
        /* Boş Durum */
        .no-results {
            background: #f8f5ef;
            border-radius: 30px;
            padding: 3rem;
            text-align: center;
        }
        .no-results i {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        
        /* İstatistik Kartları */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .stat-card {
            background: linear-gradient(135deg, #fef9e8, #fff6e5);
            border-radius: 20px;
            padding: 1rem;
            text-align: center;
        }
        .stat-card .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-burgundy);
        }
        .stat-card .stat-label {
            font-size: 0.7rem;
            color: #888;
        }
        
        /* Sağ Menü */
        .kurumsal-sidebar {
            background: white;
            border-radius: 28px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
            border-bottom: 3px solid var(--primary-gold);
        }
        .kurumsal-sidebar h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .kurumsal-sidebar h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .kurumsal-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .kurumsal-menu li {
            margin-bottom: 0.5rem;
        }
        .kurumsal-menu a {
            display: block;
            padding: 10px 15px;
            border-radius: 50px;
            color: #4a4a4a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            background: #f8f5ef;
        }
        .kurumsal-menu a i {
            margin-right: 12px;
            color: var(--primary-gold);
            width: 24px;
        }
        .kurumsal-menu a:hover {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
            transform: translateX(5px);
        }
        .kurumsal-menu a:hover i {
            color: white;
        }
        .kurumsal-menu a.active {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
        }
        
        .loading-spinner {
            text-align: center;
            padding: 3rem;
        }
        
        @media (max-width: 992px) {
            .kurumsal-sidebar {
                position: relative;
                top: 0;
                margin-top: 2rem;
            }
        }
        @media (max-width: 768px) {
            .table-view {
                display: none;
            }
            .cards-view {
                display: block;
            }
            .nav-tabs-custom .nav-link {
                padding: 0.8rem 1rem;
                font-size: 0.85rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 769px) {
            .cards-view {
                display: none;
            }
            .table-view {
                display: block;
            }
        }