  /* 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;
        }
        
        /* Arama Bölümü */
        .search-section {
            background: white;
            border-radius: 60px;
            padding: 0.3rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .search-input-group {
            display: flex;
            align-items: center;
            background: #f8f5ef;
            border-radius: 60px;
            padding: 0.2rem 0.2rem 0.2rem 1.5rem;
        }
        .search-input-group i {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        .search-input-group input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.9rem 1rem;
            font-size: 0.95rem;
            outline: none;
        }
        .search-input-group input::placeholder {
            color: #aaa;
        }
        .result-count {
            font-size: 0.85rem;
            color: #777;
            margin-top: 0.8rem;
            padding-left: 1rem;
        }
        
        /* Galeri Kartları */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.8rem;
        }
        .gallery-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            border: 1px solid #f0e5d5;
            cursor: pointer;
        }
        .gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(139,44,45,0.15);
            border-color: var(--primary-gold);
        }
        .gallery-image-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-card:hover .gallery-image {
            transform: scale(1.08);
        }
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }
        .gallery-overlay i {
            font-size: 2.5rem;
            color: white;
            background: rgba(0,0,0,0.6);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gallery-info {
            padding: 1rem;
            text-align: center;
        }
        .gallery-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 0.3rem;
        }
        .gallery-date {
            font-size: 0.75rem;
            color: #888;
        }
        .photo-count {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            color: white;
            padding: 4px 10px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
        }
        
        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.6rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .page-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #e0d5c0;
            background: white;
            color: var(--primary-burgundy);
            font-weight: 600;
            transition: all 0.3s;
        }
        .page-btn.active {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: #2d2d2d;
        }
        .page-btn:hover:not(.active) {
            border-color: var(--primary-gold);
            background: #fff3e0;
            transform: translateY(-2px);
        }
        .nav-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid var(--primary-gold);
            background: white;
            color: var(--primary-gold);
            transition: all 0.3s;
        }
        .nav-btn:hover:not(:disabled) {
            background: var(--primary-gold);
            color: white;
            transform: scale(1.05);
        }
        .nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        
        /* Modal Slider Stili */
        .gallery-modal .modal-content {
            background: rgba(0,0,0,0.95);
            border: none;
            border-radius: 0;
            height: 100vh;
        }
        .gallery-modal .modal-header {
            border: none;
            padding: 1rem;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
            background: transparent;
        }
        .gallery-modal .modal-header .btn-close {
            background-color: white;
            opacity: 0.8;
        }
        .gallery-modal .modal-body {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            height: 100vh;
        }
        .modal-swiper {
            width: 100%;
            height: 80vh;
        }
        .modal-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .modal-swiper .swiper-slide img {
            max-width: 90%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 12px;
        }
        .modal-swiper .swiper-button-next,
        .modal-swiper .swiper-button-prev {
            color: white;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .modal-swiper .swiper-button-next:after,
        .modal-swiper .swiper-button-prev:after {
            font-size: 1.2rem;
        }
        .modal-swiper .swiper-pagination-bullet {
            background: white;
        }
        .modal-swiper .swiper-pagination-bullet-active {
            background: var(--primary-gold);
        }
        .modal-title-info {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            background: rgba(0,0,0,0.6);
            padding: 0.8rem;
            margin: 0;
            font-size: 0.9rem;
            z-index: 10;
        }
        
        /* Boş Durum */
        .no-results {
            background: #f8f5ef;
            border-radius: 30px;
            padding: 3rem;
            text-align: center;
            grid-column: 1 / -1;
        }
        .no-results i {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        
        /* Sağ Taraf Menü */
        .sidebar-menu {
            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);
        }
        .sidebar-menu h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .sidebar-menu h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .menu-list li {
            margin-bottom: 0.8rem;
        }
        .menu-list a {
            display: block;
            padding: 12px 18px;
            border-radius: 50px;
            color: #4a4a4a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            background: #f8f5ef;
        }
        .menu-list a i {
            margin-right: 12px;
            color: var(--primary-gold);
            width: 24px;
        }
        .menu-list a:hover {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
            transform: translateX(5px);
        }
        .menu-list a:hover i {
            color: white;
        }
        .menu-list a.active {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
        }
        .menu-list a.active i {
            color: white;
        }
        
        .loading-spinner {
            text-align: center;
            padding: 3rem;
        }
        
        @media (max-width: 992px) {
            .sidebar-menu {
                position: relative;
                top: 0;
                margin-top: 2rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .search-input-group {
                padding: 0.2rem;
            }
            .search-input-group input {
                padding: 0.7rem 0.8rem;
            }
            .search-input-group i {
                display: none;
            }
            .modal-swiper {
                height: 70vh;
            }
            .modal-swiper .swiper-slide img {
                max-width: 95%;
            }
        }