@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .info-card, .form-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: var(--text-3xl);
    }
    
    .form-row.two-columns {
        flex-direction: column;
        gap: var(--spacing-6);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-subtitle::before,
    .contact-subtitle::after {
        width: 20px;
    }
    
    .contact-subtitle::before {
        left: -25px;
    }
    
    .contact-subtitle::after {
        right: -25px;
    }
    
    .card-header h3,
    .form-header h3 {
        font-size: var(--text-xl);
    }
    
    .back-to-top {
        right: var(--spacing-4);
        bottom: var(--spacing-4);
        width: 40px;
        height: 40px;
    }
}