/* CONTENEDOR GENERAL */
.contact-section {
    display: flex;
    min-height: 100vh;
}

/* FORMULARIO IZQUIERDA */
.contact-form {
    flex: 1;
    background: #f7f6f5;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* IMAGEN DERECHA */
.contact-image {
    flex: 1;
    overflow: hidden;
}

/* IMAGEN AJUSTADA PERFECTAMENTE */
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TÍTULO */
.contact-form h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #222;
}

/* GRID FORM */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FULL WIDTH */
.full {
    grid-column: span 2;
}

/* LABEL */
label {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

/* INPUTS */
input, select, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #eae8e6;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* FOCUS */
input:focus, select:focus, textarea:focus {
    border-color: #999;
    background: #fff;
}

/* TEXTAREA */
textarea {
    resize: none;
    min-height: 120px;
}

/* BOTÓN */
button {
    margin-top: 20px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #222;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }

    /* IMAGEN ARRIBA EN MÓVIL */
    .contact-image {
        height: 300px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }
}