  /* Modern Gallery Styles */
        
        /* Season Navigator */
        .season-navigator {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            background: var(--light-bg, #f5f7fa);
            border-radius: 8px;
            padding: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .season-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            transition: all 0.3s ease;
        }
        
        .season-nav {
            display: flex;
            gap: 1rem;
        }
        
        .season-nav button {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            padding: 0.5rem 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .season-nav button:hover:not(:disabled) {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        
        .season-nav button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Enhanced Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            background: white;
            position: relative;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }
        
        .gallery-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
            cursor: pointer;
        }
        
        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-actions {
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-actions {
            transform: translateY(0);
        }
        
        .gallery-zoom {
            background: var(--primary, #3a6ea5);
            color: white;
            border: none;
            border-radius: 4px;
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .gallery-zoom:hover {
            background: var(--secondary, #4a90e2);
        }
        
        .gallery-caption {
            padding: 1rem;
        }
        
        .gallery-caption h3 {
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
        }
        
        .gallery-caption p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Category Tabs */
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .category-tab {
            background: none;
            border: 1px solid var(--primary, #3a6ea5);
            color: var(--primary, #3a6ea5);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .category-tab.active, .category-tab:hover {
            background: var(--primary, #3a6ea5);
            color: white;
        }
        
        /* Enhanced Modal */
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-modal.fade-in {
            opacity: 1;
        }
        
        .modal-content {
            max-width: 1200px;
            height: 100%;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1010;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.4);
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        
        .close-modal:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .modal-image-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        #modalImage {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            transition: opacity 0.3s ease;
        }
        
        #modalImage.fade-out {
            opacity: 0.5;
        }
        
        .modal-caption {
            color: white;
            padding: 1rem 0;
            text-align: center;
        }
        
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.4);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .modal-nav:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .prev-image {
            left: 1rem;
        }
        
        .next-image {
            right: 1rem;
        }
        
        /* Season Indicator */
        .season-indicator {
            display: flex;
            justify-content: center;
            margin: 1rem 0 2rem;
        }
        
        .season-dots {
            display: flex;
            gap: 0.5rem;
        }
        
        .season-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .season-dot.active {
            background: var(--primary, #3a6ea5);
            transform: scale(1.2);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            
            .season-navigator {
                flex-direction: column;
                gap: 1rem;
            }
            
            .category-tabs {
                justify-content: center;
            }
            
            .modal-nav {
                width: 40px;
                height: 40px;
            }
        }