.socia-contact-hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: var(--socia-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.socia-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.9), rgba(16, 185, 129, 0.8));
}

.socia-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.socia-contact-hero-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--socia-gold);
}

.socia-contact-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.socia-contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.socia-contact-content {
    background: var(--socia-white);
    padding: 4rem 0;
}

.socia-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.socia-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.socia-contact-info {
    background: var(--socia-gray-50);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid var(--socia-gray-200);
}

.socia-contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1.5rem;
}

.socia-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.socia-contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--socia-white);
    border-radius: 0.75rem;
    border: 1px solid var(--socia-gray-200);
    transition: all 0.3s ease;
}

.socia-contact-method:hover {
    border-color: var(--socia-primary);
    transform: translateY(-1px);
}

.socia-contact-method-icon {
    font-size: 1.5rem;
    color: var(--socia-primary);
    flex-shrink: 0;
}

.socia-contact-method-content h4 {
    font-weight: 600;
    color: var(--socia-gray-900);
    margin-bottom: 0.25rem;
}

.socia-contact-method-content p {
    color: var(--socia-gray-600);
    margin: 0;
    font-size: 0.95rem;
}

.socia-contact-form {
    background: var(--socia-white);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 2px solid var(--socia-gray-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.socia-contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1.5rem;
}

.socia-form-group {
    margin-bottom: 1.5rem;
}

.socia-form-label {
    display: block;
    font-weight: 600;
    color: var(--socia-gray-700);
    margin-bottom: 0.5rem;
}

.socia-form-input,
.socia-form-select,
.socia-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--socia-gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.socia-form-input:focus,
.socia-form-select:focus,
.socia-form-textarea:focus {
    outline: none;
    border-color: var(--socia-primary);
    box-shadow: 0 0 0 3px rgba(157, 62, 245, 0.1);
}

.socia-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.socia-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    color: var(--socia-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.socia-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.3);
}

.socia-cta-section {
    background: var(--socia-gray-900);
    color: var(--socia-white);
    padding: 4rem 0;
    text-align: center;
}

.socia-cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.socia-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.socia-cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.socia-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    color: var(--socia-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 62, 245, 0.3);
}

.socia-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.4);
}

@media (max-width: 768px) {
    .socia-contact-hero-title {
        font-size: 2.25rem;
    }

    .socia-contact-hero-icon {
        font-size: 3rem;
    }

    .socia-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .socia-contact-info,
    .socia-contact-form {
        padding: 2rem;
    }

    .socia-cta-title {
        font-size: 2rem;
    }
}

/* === FOOTER OVERRIDE FOR SUPPORT PAGES === */
.socia-footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.socia-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
}

.socia-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
    display: block;
}

.socia-footer-tagline {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.socia-footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.socia-footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
}

.socia-footer-link:hover {
    color: var(--socia-primary);
}

.socia-footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.socia-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
}

.socia-social-link:hover {
    background: var(--socia-primary);
    color: var(--socia-white);
}

.socia-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

.socia-footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .socia-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .socia-footer-brand {
        align-items: center;
    }

    .socia-footer-social {
        justify-content: center;
    }

    .socia-footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}