        :root {
            --gray-1: #333;
            --gray-4: #BDBDBD;
            --white: #FFFFFF;
            --accent: #C30000;
            --light-gray: #f8f8f8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        body {
            background-color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            color: var(--gray-1);
            line-height: 1.6;
        }
        
        /* Стили для галереи */
        .gallery-section {
            width: 100%;
            max-width: 1440px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .gallery-title {
            color: var(--gray-4);
            font-size: 64px;
            font-weight: 300;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .gallery-item {
            width: 210px;
            height: 260px;
            flex-shrink: 0;
            background: #C4C4C4;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform, box-shadow;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* Навигация галереи */
        .gallery-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 60px;
        }
        
        .gallery-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid var(--gray-1);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: inherit;
        }
        
        .gallery-arrow img {
            width: 24px;
            height: 24px;
            transition: filter 0.3s ease;
            filter: brightness(0) saturate(100%);
        }
        
        .gallery-arrow:hover:not(.disabled) {
            background: var(--gray-1);
        }
        
        .gallery-arrow:hover:not(.disabled) img {
            filter: brightness(0) invert(1) saturate(100%) contrast(100%);
        }
        
        .gallery-arrow.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
        }
        
        .modal-content-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90%;
            display: block;
        }
        
        .modal-nav-area {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50%;
            cursor: pointer;
        }
        
        .modal-nav-area.left {
            left: 0;
        }
        
        .modal-nav-area.right {
            right: 0;
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 2;
        }
        
        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
        }
        
        /* Секция обратной связи */
        .contact-section {
            width: 100%;
            max-width: 1440px;
            margin: 100px auto;
            padding: 0 20px;
            display: flex;
            flex-direction: row;
            gap: 80px;
            align-items: baseline;
        }
        
        .contact-info {
            flex: 1;
            max-width: 400px;
        }
        
        .contact-info h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-details p {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--light-gray);
            border-radius: 50%;
            color: var(--gray-1);
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .whatsapp:hover {
            background: #25D366;
            color: white;
        }
        
        .telegram:hover {
            background: #0088cc;
            color: white;
        }
        
        .instagram:hover {
            background: #e1306c;
            color: white;
        }
        
        .vk:hover {
            background: #4a76a8;
            color: white;
        }
        
        .contact-subtitle {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--gray-1);
        }
        
        .contact-form-wrapper {
            flex: 1;
            max-width: 350px;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .form-group label {
            color: #8D8D8D;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 8px;
            letter-spacing: 0.56px;
        }
        
        .form-group label span {
            color: var(--accent);
        }
        
        .form-group input,
        .form-group textarea {
            border: none;
            border-bottom: 1px solid #BDBDBD;
            padding: 12px 0;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
            background: transparent;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-bottom-color: var(--gray-1);
        }
        
        .checkbox-group {
            flex-direction: row;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin: 0;
        }
        
        .checkbox-group label {
            margin-bottom: 0;
            font-size: 14px;
        }
        
        .submit-btn {
            background: var(--gray-1);
            color: white;
            border: none;
            padding: 20px 0;
            font-size: 12px;
            letter-spacing: 2.4px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 20px;
            width: 222px;
            height: 71px;
        }
        
        .submit-btn:hover {
            background: #555;
        }
        
        /* reCAPTCHA стили */
        .g-recaptcha {
            margin: 20px 0;
            transform: scale(0.95);
            transform-origin: left;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Индикатор загрузки */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #f0f0f0;
            z-index: 1000;
        }
        
        .loader-bar {
            height: 100%;
            width: 0%;
            background: #c30000;
            transition: width 0.4s ease;
        }
        
        /* Скелетоны для ленивой загрузки */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            border-radius: 4px;
            width: 100%;
            height: 100%;
        }
        
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* Адаптивность */
        @media (max-width: 1480px) {
            .footer-content {
                padding-right: 5%;
            }
        }
        
        @media (max-width: 1200px) {
            .gallery-container {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .contact-form-wrapper {
                max-width: 100%;
            }
        }
        
        @media (max-width: 900px) {
            .gallery-container {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .gallery-title {
                font-size: 48px;
            }
            
            .contact-section {
                flex-direction: column;
            }
        }
        
        @media (max-width: 600px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .gallery-title {
                font-size: 36px;
            }
            
            .gallery-item {
                width: 100%;
                height: 240px;
            }
            
            .submit-btn {
                width: 180px;
                height: 60px;
            }
        }
        
        @media (max-width: 450px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }