.contact-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    /* Ajustá según tu diseño */
    height: 550px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.contact-image-container img {
    width: 400PX;
    height: 500PX;
    object-fit: cover;
    filter: brightness(40%);
    /* oscurece la imagen */
    display: flex;
    justify-content: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 30px;
    /* align-items: center; */
    flex-wrap: wrap;
    align-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
}

.contact-item i {
    font-size: 22px;
    margin-top: 4px;
    /* alinea ícono con texto */
    color: #ffcc00;
    /* podés cambiar el color */
    flex-shrink: 0;
}

.contact-text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.input-icon-label {
    margin-bottom: 20px;
}

/* Label fijo arriba */
.input-icon-label label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

/* Contenedor input + icono */
.input-wrapper {
    display: flex;
    align-items: stretch;
    border-radius: 5px 0px 0px 5px;

    overflow: hidden;
}



/* Icono */
.input-wrapper .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #424242;
    color: #fff;
    padding: 0 12px;
    font-size: 16px;

}

/* Inputs y textarea */
.input-wrapper input,
.input-wrapper textarea {
    flex: 1;
    padding: 12px;
    border-left: none;
    border-radius: 0px 5px 5px 0px;
    outline: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background-color: #333;

}

.input-wrapper input:not([type="email"]) {
    text-transform: capitalize;
    /* primera letra en mayúscula */
}


.input-wrapper input:hover,
.input-wrapper textarea:hover {
    background-color: #333;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    background-color: #333;
}

/* Textarea estilo mensaje */
.input-wrapper textarea {
    background: #333;
    color: #fff;
    min-height: 100px;
    resize: vertical;
    border-color: #333;
    text-transform: capitalize;
}

/* Botón */
#btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#btn:hover {
    background: #ff0000;
    color: #fff;
}

#book-a-table .booking-input {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center !important;
}

#formResult {
    font-size: 16px;
}

.select{
    height: 40px;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 5px;
    font-size: 16px;
}