/* --- Formulario Gab Booking PRO --- */
#gab-booking-form {
    max-width: 430px;
    margin: 38px auto;
    background: #FFFFFF;
    padding: 32px 16px 24px 16px;
    border-radius: 22px;
    box-shadow: 0 8px 38px #02285922;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 1.09em;
    position: relative;
    border: 2.5px solid #D3EAA4;
}

/* --- Inputs, selects y textareas --- */
#gab-booking-form .input-icon input,
#gab-booking-form .input-icon textarea,
#gab-booking-form .input-icon select {
    width: 100% !important;
    padding-left: 56px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
    border-radius: 13px !important;
    border: 2px solid #D3EAA4 !important;
    background: #f9fff5 !important;
    color: #022859 !important;
    font-size: 1.11em !important;
    font-family: inherit !important;
    min-height: 50px !important;
    height: 50px !important;
    line-height: 1.3 !important;
    appearance: none !important;
    margin-bottom: 0 !important;
    outline: none !important;
    vertical-align: middle !important;
    transition: border 0.2s, box-shadow 0.22s, background 0.2s;
}

.input-icon textarea { min-height: 64px !important; resize: vertical; }

.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
    border-color: #528540 !important;
    box-shadow: 0 3px 16px #52854022 !important;
    background: #eafbe3 !important;
}

.input-icon {
    position: relative;
    margin-bottom: 18px;
}

/* --- Iconos alineados --- */
#gab-booking-form .input-icon i.fa {
    position: absolute;
    left: 18px !important;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.24em !important;
    color: #528540 !important;
    z-index: 10 !important;
    pointer-events: none;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 1;
    background: none;
}

/* --- Placeholder bonito --- */
.input-icon input::placeholder,
.input-icon textarea::placeholder {
    color: #528540cc;
    opacity: 1;
    font-weight: 500;
    letter-spacing: .02em;
}

/* --- Input date bonito --- */
#gab-booking-form .input-icon input[type="date"]::-webkit-input-placeholder { color: #bbb; }
#gab-booking-form .input-icon input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(42%) sepia(1) hue-rotate(100deg) saturate(2);
    opacity: 0.97;
    cursor: pointer;
    height: 28px;
    width: 28px;
}
#gab-booking-form .input-icon input[type="date"] {
    color: #022859 !important;
    font-size: 1.09em !important;
}

/* --- Select flecha personalizada --- */
#gab-booking-form .input-icon select {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23022859' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 22px 22px;
}





/* --- Mensaje de éxito/error --- */
#gab-booking-msg {
    margin-top: 18px;
    font-size: 1.09em;
    padding: 12px 0 0 0;
    text-align: center;
}
#gab-booking-msg span {
    padding: 11px 18px;
    border-radius: 9px;
    display: inline-block;
    font-weight: 600;
    font-size: 1em;
    border: 1.6px solid #D3EAA4;
    background: #D3EAA4;
    color: #022859;
}
#gab-booking-msg span[style*="green"] {
    background: #D3EAA4;
    color: #528540;
    border: 2px solid #52854099;
}
#gab-booking-msg span[style*="red"] {
    background: #F2870522;
    color: #F28705;
    border: 2px solid #F28705;
}

/* --- Responsive --- */

#gab-booking-form button {
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(90deg, #528540 0%, #F28705 100%);
    color: #fff;
    border: none;
    padding: 15px 0;
    border-radius: 13px;
    font-size: 1.19em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 17px #02285925;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    transition:
        box-shadow 0.24s cubic-bezier(.77,0,.18,1),
        transform 0.14s cubic-bezier(.77,0,.18,1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#gab-booking-form button:hover,
#gab-booking-form button:focus {
    color: #fff !important;
    box-shadow: 0 6px 30px #F2870570, 0 0 0 2px #D3EAA4;
    transform: translateY(-1px) scale(1.02);
}

/* Efecto presionado */
#gab-booking-form button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 2px 10px #F2870555, 0 0 0 2px #D3EAA4;
}

/* Elimina totalmente el pseudo-elemento y su efecto */
#gab-booking-form button:before,
#gab-booking-form button:after {
    display: none !important;
    content: none !important;
}

#gab-booking-form button *,
#gab-booking-form button span,
#gab-booking-form button strong {
    color: #fff !important;
    position: relative;
    z-index: 2;
}
