    .contact-section {
            padding: 5rem 2rem;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.1;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(72, 202, 228, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(72, 202, 228, 0); }
            100% { box-shadow: 0 0 0 0 rgba(72, 202, 228, 0); }
        }

        .contact-container {
            position: relative;
            z-index: 2;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease;
        }

        .contact-header h1 {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #48cae4);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 3s ease infinite;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .contact-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form-container {
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.3s ease;
        }

        .contact-form:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(72, 202, 228, 0.3);
        }

        .form-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #fff;
            text-align: center;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: #fff;
            font-size: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-family: inherit;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #48cae4;
            box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.25rem;
            background: linear-gradient(135deg, #48cae4, #0096c7);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #0096c7, #0077b6);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(72, 202, 228, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .social-section {
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .social-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .social-container:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(254, 202, 87, 0.3);
        }

        .social-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #fff;
        }

        .social-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .social-buttons {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.25rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .discord-btn {
            background: linear-gradient(135deg, #5865f2, #4752c4);
        }

        .discord-btn:hover {
            background: linear-gradient(135deg, #4752c4, #3c45a5);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(88, 101, 242, 0.4);
        }

        .telegram-btn {
            background: linear-gradient(135deg, #0088cc, #006699);
        }

        .telegram-btn:hover {
            background: linear-gradient(135deg, #006699, #004d73);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 136, 204, 0.4);
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .response-times {
            background: rgba(72, 202, 228, 0.1);
            border: 1px solid rgba(72, 202, 228, 0.3);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .response-times h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #48cae4;
        }

        .response-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .response-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .response-method {
            font-weight: 600;
        }

        .response-time {
            color: #feca57;
            font-weight: 600;
        }

        .success-message,
        .error-message {
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            text-align: center;
            font-weight: 600;
            display: none;
        }

        .success-message {
            background: rgba(72, 202, 228, 0.2);
            color: #48cae4;
            border: 1px solid rgba(72, 202, 228, 0.3);
        }

        .error-message {
            background: rgba(255, 107, 107, 0.2);
            color: #ff6b6b;
            border: 1px solid rgba(255, 107, 107, 0.3);
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 3rem 1rem;
            }

            .contact-header h1 {
                font-size: 2.5rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-form,
            .social-container {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .social-buttons {
                gap: 1rem;
            }
        }