		/* 
        =====================================================================
        СЕКЦИЯ ГАЛЕРЕИ
        =====================================================================
        */
        .gallery-section {
            background-color: #f8f9fa;
			margin-top: 80px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-card:hover .gallery-image img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 2rem;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-info h5 {
            color: white !important;
            margin-bottom: 0.8rem;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .gallery-info p {
            color: rgba(255, 255, 255, 0.9) !important;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }
        
        .gallery-badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .btn-view {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-view:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: scale(1.1);
        }
        
        /* Полноэкранное модальное окно */
        #fullscreenModal .modal-content {
            background-color: rgba(0, 0, 0, 0.95) !important;
            border: none !important;
        }
        
        #fullscreenModal .modal-dialog {
            margin: 0 !important;
            max-width: none !important;
        }
        
        .fullscreen-image-container {
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .fullscreen-image-container img {
            max-width: 100vw;
            max-height: 100vh;
            width: auto;
            height: auto;
            object-fit: contain;
        }
        
        .fullscreen-nav {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s ease;
            z-index: 10;
            margin: 0 20px;
            backdrop-filter: blur(10px);
        }
        
        .fullscreen-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }
        
        .fullscreen-counter {
            z-index: 10;
        }
        
        .btn-zoom-out {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            color: white;
        }