.contact-hero {
    padding: 160px 0 60px;
    position: relative;
}

.contact-hero-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(200, 24, 128, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-badge-hero {
    margin-bottom: 24px;
}

.contact-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.contact-hero-subtitle-1 {
    margin-bottom: 40px;
    max-width: 800px;
}

.contact-hero-subtitle-2 {
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.contact-email-btn {
    padding: 18px 48px;
    font-size: 1.3rem;
    border-radius: 999px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 35px -5px rgba(200, 24, 128, 0.6);
    position: relative;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.15);
}

.contact-social-section {
    padding: 60px 0;
}

.contact-social-title {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.contact-social-subtitle {
    margin-bottom: 40px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .contact-social-links > .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--color-text-primary);
        box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.75);
        opacity: 1;
        transform: none;
        filter: none;
    }

        .contact-social-links > .social-icon svg {
            width: 24px;
            height: 24px;
            display: block;
            fill: currentColor;
        }

        .contact-social-links > .social-icon:hover {
            border-color: rgba(200, 24, 128, 0.45);
            background: rgba(200, 24, 128, 0.1);
            color: var(--color-accent-bright);
        }

.contact-company-section {
    padding: 60px 0 100px;
}

.contact-company-card {
    display: block;
    margin: 0 auto;
    max-width: 600px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
}

.contact-company-title {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.contact-company-details {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.contact-company-name {
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .contact-social-links {
        gap: 20px;
    }

        .contact-social-links > .social-icon {
            width: 48px;
            height: 48px;
        }

            .contact-social-links > .social-icon svg {
                width: 16px;
                height: 16px;
            }
}