.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem 1rem;
}
.contact-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.contact-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color, #2563eb);
    margin-bottom: 0.7rem;
}
.contact-subtitle {
    font-size: 1.1rem;
    color: #5faee3;
    margin-bottom: 0;
}
.contact-content {
    display: flex;
    gap: 2.5rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 2.5rem 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contact-form {
    flex: 2 1 340px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-weight: 500;
    color: var(--primary-color, #2563eb);
}
.form-group input,
.form-group textarea {
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    background: #f4f8fb;
    color: #222;
    transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border: 1.5px solid #2563eb;
    outline: none;
}
.contact-btn {
    background: var(--primary-color, #2563eb);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.8rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}
.contact-btn:hover {
    background: #1e40af;
    transform: translateY(-2px) scale(1.04);
}
.contact-btn-whatsapp {
    background: #25d366;
    text-decoration: none;
}
.contact-btn-whatsapp:hover {
    background: #1ebe5d;
    text-decoration: none;
}
.form-message {
    margin-top: 0.7rem;
    font-size: 1rem;
    color: #2563eb;
    min-height: 1.2em;
}
.contact-info {
    flex: 1 1 220px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0.5rem;
}
.contact-info h4 {
    color: #5faee3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.contact-info p {
    color: #4b5563;
    font-size: 1.05rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.contact-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.contact-social a {
    color: #fff;
    background: #353b45;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-social a:hover {
    background: #5faee3;
    color: #23272f;
    transform: scale(1.12) rotate(-8deg);
}
@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        padding: 1.5rem 0.7rem;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
    }
    .contact-info {
        align-items: center;
        text-align: center;
    }
    .contact-form {
        width: 100%;
    }
}
