.contact-section {
    width: 100%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f7f8fa 0%, #f2f2f2 100%);
}

.contact-map-container {
    flex: 1;
    min-width: 350px;
    max-width: 550px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-map-header {
    text-align: center;
    margin-bottom: 15px;
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

#mapa-contacto {
    height: 400px;
    width: 100%;
    border-radius: 20px;
}

.contact-form-container {
    flex: 1;
    min-width: 350px;
    max-width: 550px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-selection {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #ddd;
    outline: none;
    background-color: #fafafa;
    color: #333;
    transition: border 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-selection:focus {
    border-color: #e27ea6;
}

.contact-form button {
    padding: 15px;
    background-color: #e27ea6;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #d5668e;
}

.contact-whatsapp-link {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s ease;
}

.contact-whatsapp-link:hover {
    background-color: #e27ea6;
    color: #fff;
    text-decoration: none;
}

.contact-title {
    color: #e27ea6;
    font-weight: bold;
    font-size: 1.5rem;
}

.contact-subtitle {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-error-message {
    color: #e27ea6;
    text-align: center;
}

.contact-message {
    text-align: center;
    font-weight: bold;
    margin: 0;
}

.contact-message.success {
    color: #25d366;
}

.contact-message.error {
    color: #e27ea6;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 20px;
    }

    .contact-map-container,
    .contact-form-container {
        width: 100%;
        max-width: 90%;
    }
}
