.contact {
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin: 6rem 10rem;
    padding: 2.5rem;
}

.contact h2{
    font-size: 2.25rem;
    margin-bottom: 2rem;
    border-left: 5px solid #F08A5D;
    padding-left: 12px;
    font-weight: 700;
}

.form-contact {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.form-contact label {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.input-form-contact, textarea, select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background: #f9fafb;
}

.input-form-contact::placeholder, textarea::placeholder {
    color: #94a3b8;
}

.input-form-contact:focus, textarea:focus, select:focus {
    border-color: #FF6464;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 118, 100, 0.1);
    background: white;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.btn-form-contact {
    background: #FF6464;
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-top: 1rem;
}

.btn-form-contact:hover {
    background: #ff9264;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 118, 100, 0.2);
}

.message-info-form-contact {
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
}

/* .contact-social-content{
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-social-content h2 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-social-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff7664;
}

.social-card {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
} */

@media (max-width: 900px){
    .contact {
        margin: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 1rem;
    }
    
    .form-contact {
        padding: 1rem;
    }
    
    .contact-social-containers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 426px){
    .contact {
        margin: 6rem 0;
    }
}