        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --gold: #FFD700;
            --gold-dark: #FFA500;
            --gold-darker: #FF8C00;
            --bg-dark: #0a0a0a;
            --bg-darker: #000000;
            --text-light: #ffffff;
            --text-gray: #aaaaaa;
            --text-dark: #666666;
            --success: #51cf66;
            --info: #4dabf7;
            --warning: #fab005;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Навигация */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold);
        }
        
        .nav-button {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }
        
        /* Герой секция */
        .contacts-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 150px 20px 80px;
            background: radial-gradient(ellipse at top center, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
            overflow: hidden;
        }
        
        .contacts-hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .contacts-hero-title {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)); }
            to { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8)); }
        }
        
        .contacts-hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }
        
        .quick-contacts {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .quick-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 25px;
            border-radius: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .quick-contact-item:hover {
            transform: translateY(-3px);
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }
        
        .quick-icon {
            font-size: 1.5rem;
            color: var(--gold);
        }
        
        .quick-text {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        /* Network animation background */
        .network-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.1;
        }
        
        .network-node {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.5); opacity: 1; }
        }
        
        .network-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform-origin: left center;
            animation: networkFlow 4s linear infinite;
        }
        
        @keyframes networkFlow {
            from { opacity: 0; }
            50% { opacity: 0.5; }
            to { opacity: 0; }
        }
        
        /* Секции */
        .section {
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Основные контакты */
        .main-contacts {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-bottom: 100px;
        }
        
        /* Форма контакта */
        .contact-form-section {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 30px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-form-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .form-content {
            position: relative;
            z-index: 1;
        }
        
        .form-title {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .form-subtitle {
            color: var(--text-gray);
            margin-bottom: 30px;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-label {
            display: block;
            color: var(--text-gray);
            margin-bottom: 8px;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .form-input,
        .form-textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            padding: 15px 20px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .form-input:focus + .form-label,
        .form-textarea:focus + .form-label {
            color: var(--gold);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-submit {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }
        
        /* Информация о контактах */
        .contact-info-section {
            padding: 50px;
        }
        
        .info-title {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 30px;
        }
        
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .contact-card:hover {
            transform: translateX(10px);
            border-color: var(--gold);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-label {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .contact-value {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a.contact-value:hover {
            color: var(--gold);
        }
        
        /* Офисы */
        .offices-section {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 40px;
            padding: 80px 60px;
            margin-bottom: 100px;
        }
        
        .offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .office-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .office-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .office-image {
            height: 200px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--gold);
        }
        
        .office-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--bg-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .office-info {
            padding: 35px;
        }
        
        .office-city {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .office-address {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .office-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .office-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        .office-detail-icon {
            color: var(--gold);
            width: 20px;
            text-align: center;
        }
        
        /* Социальные сети */
        .social-section {
            text-align: center;
            margin-bottom: 100px;
        }
        
        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .social-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
        }
        
        .social-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .social-card:hover::before {
            opacity: 1;
        }
        
        .social-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
        }
        
        .social-icon-large {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
            color: var(--gold);
        }
        
        .social-name {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 5px;
        }
        
        .social-handle {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        /* Поддержка */
        .support-section {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.03));
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 40px;
            padding: 80px 60px;
            text-align: center;
            margin: 100px auto;
            position: relative;
            overflow: hidden;
        }
        
        .support-content {
            position: relative;
            z-index: 1;
        }
        
        .support-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .support-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 50px;
        }
        
        .support-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .support-option {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .support-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }
        
        .support-option-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
            color: var(--gold);
        }
        
        .support-option-title {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        .support-option-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        /* FAQ Link */
        .faq-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .faq-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }
        
        /* Карта */
        .map-section {
            margin-bottom: 100px;
        }
        
        .map-container {
            height: 500px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .map-placeholder {
            text-align: center;
        }
        
        .map-icon {
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }
        
        .map-text {
            color: var(--text-gray);
            font-size: 1.2rem;
        }
        
        /* Футер */
        .footer {
            background: var(--bg-darker);
            padding: 60px 20px 30px;
            margin-top: 100px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--gold);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }
        
        /* Мобильная адаптация */
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contacts-hero-title {
                font-size: 2.5rem;
            }
            
            .quick-contacts {
                flex-direction: column;
                gap: 20px;
            }
            
            .main-contacts {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .offices-grid {
                grid-template-columns: 1fr;
            }
            
            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .support-options {
                grid-template-columns: 1fr;
            }
        }