/* ==========================================================================
   STEP INSIDE MY BOOTH - Booking Form Styles
   Mobile-first responsive design - 2025 Update
   ========================================================================== */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-color: #ffd100;
    --primary-hover: #567BD2;
    --secondary-color: #567BD2;
    --success-color: #567BD2;
    --error-color: #ef4444;
    --warning-color: #ffd100;
    --text-dark: #333;
    --text-medium: #9ca3af;
    --text-light: #9ca3af;
    --border-color: #ffd100;
    --border-focus: #567BD2;
    --bg-light: #fff;
    --bg-white: #fff;
    --bg-disabled: #9ca3af;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.2s ease-in-out;
}

/* ==========================================================================
   Base / Reset
   ========================================================================== */
.bkinq_booking_form_container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bkinq_booking_form_container *,
.bkinq_booking_form_container *::before,
.bkinq_booking_form_container *::after {
    box-sizing: border-box;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.bkinq_booking_form {
    background: #fff;
    border-radius: 12px;
    box-shadow: none;
    padding: 24px 16px;
}

/* Form Sections */
.bkinq_form_section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ffd100;
}

.bkinq_form_section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bkinq_form_section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

/* Form Grid */
.bkinq_form_row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.bkinq_form_row--2col {
    grid-template-columns: 1fr;
}

.bkinq_form_row--3col {
    grid-template-columns: 1fr;
}

/* Form Groups */
.bkinq_form_group {
    display: flex;
    flex-direction: column;
}

.bkinq_form_label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.bkinq_form_label--required::after {
    content: ' *';
    color: #ef4444;
}

/* Input Styles */
.bkinq_form_input,
.bkinq_form_select,
.bkinq_form_textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 2px solid #ffd100;
    border-radius: 4px;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.5;
    box-sizing: border-box;
}

.bkinq_form_input:hover,
.bkinq_form_select:hover,
.bkinq_form_textarea:hover {
    border-color: #567BD2;
}

.bkinq_form_input:focus,
.bkinq_form_select:focus,
.bkinq_form_textarea:focus {
    outline: none;
    border-color: #567BD2;
}

.bkinq_form_input:valid:not(:placeholder-shown),
.bkinq_form_select:valid,
.bkinq_form_textarea:valid:not(:placeholder-shown) {
    border-color: #567BD2;
}

.bkinq_form_input::placeholder {
    color: #9ca3af;
}

.bkinq_form_input--error,
.bkinq_form_select--error {
    border-color: #ef4444;
}

.bkinq_form_input--success,
.bkinq_form_select--success {
    border-color: #567BD2;
}

/* ==========================================================================
   Floating Labels (Twilio-style)
   ========================================================================== */
.bkinq_floating_label {
    position: relative;
    margin-bottom: 20px;
}

.bkinq_floating_label .bkinq_float_input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 2px solid #ffd100;
    border-radius: 4px;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.5;
    box-sizing: border-box;
}

.bkinq_floating_label .bkinq_float_input:hover {
    border-color: #567BD2;
}

.bkinq_floating_label .bkinq_float_input:focus {
    outline: none;
    border-color: #567BD2;
}

.bkinq_floating_label label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #9ca3af;
    background: #fff;
    padding: 0 4px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.bkinq_floating_label .bkinq_float_input:focus + label,
.bkinq_floating_label .bkinq_float_input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #567BD2;
}

.bkinq_floating_label .bkinq_float_input:not(:focus):not(:placeholder-shown) + label {
    color: #567BD2;
}

/* Autocomplete filled state */
.bkinq_floating_label .bkinq_float_input:-webkit-autofill + label,
.bkinq_floating_label .bkinq_float_input.bkinq_autocomplete_filled + label {
    top: 0;
    font-size: 12px;
    color: #567BD2;
}

.bkinq_floating_label .bkinq_float_input:-webkit-autofill,
.bkinq_floating_label .bkinq_float_input.bkinq_autocomplete_filled {
    border-color: #567BD2;
}

/* Select Dropdown */
.bkinq_form_select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

/* Textarea */
.bkinq_form_textarea {
    min-height: 120px;
    resize: vertical;
}

/* Error Messages */
.bkinq_form_error {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bkinq_form_error svg {
    width: 14px;
    height: 14px;
    fill: #ef4444;
}

/* ==========================================================================
   Radio & Checkbox Styles
   ========================================================================== */
.bkinq_form_options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bkinq_form_options--inline {
    flex-direction: row;
    flex-wrap: wrap;
}

.bkinq_form_option {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.bkinq_form_option input[type="radio"],
.bkinq_form_option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bkinq_form_option-indicator {
    width: 24px;
    height: 24px;
    border: 2px solid #ffd100;
    background: #fff;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bkinq_form_option input[type="radio"] + .bkinq_form_option-indicator {
    border-radius: 50%;
}

.bkinq_form_option input[type="checkbox"] + .bkinq_form_option-indicator {
    border-radius: 4px;
}

.bkinq_form_option:hover .bkinq_form_option-indicator {
    border-color: #567BD2;
}

.bkinq_form_option input:checked + .bkinq_form_option-indicator {
    background: #567BD2;
    border-color: #567BD2;
}

.bkinq_form_option input:checked + .bkinq_form_option-indicator::after {
    content: '';
    display: block;
}

.bkinq_form_option input[type="radio"]:checked + .bkinq_form_option-indicator::after {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

.bkinq_form_option input[type="checkbox"]:checked + .bkinq_form_option-indicator::after {
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    margin-bottom: 3px;
}

.bkinq_form_option-label {
    font-size: 1rem;
    color: #333;
}

.bkinq_form_option-other {
    flex: 1;
    margin-left: 8px;
}

/* ==========================================================================
   SMS Verification Styles
   ========================================================================== */
.bkinq_verification_section {
    background: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    margin-top: 24px;
}

.bkinq_verification_title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.bkinq_verification_description {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bkinq_verification_disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 8px;
}

/* Phone Input Group */
.bkinq_phone_input_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.bkinq_phone_input_wrapper {
    position: relative;
    flex: 1;
}

.bkinq_phone_prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 500;
}

.bkinq_phone_input {
    padding-left: 48px;
}

/* Send Code Button */
.bkinq_btn_send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #ffd100;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bkinq_btn_send:hover {
    background: #567BD2;
}

.bkinq_btn_send:disabled {
    background: #9ca3af;
    color: #9ca3af;
    cursor: not-allowed;
}

.bkinq_btn_send svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.bkinq_btn_send__loading .bkinq_btn_spinner {
    display: block;
}

.bkinq_btn_spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* OTP Input Styles */
.bkinq_otp_container {
    margin-top: 24px;
}

.bkinq_otp_label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: block;
}

.bkinq_otp_inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bkinq_otp_input {
    width: 56px;
    height: 64px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    background: #fff;
    border: 2px solid #ffd100;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bkinq_otp_input:focus {
    outline: none;
    border-color: #567BD2;
    box-shadow: none;
}

.bkinq_otp_input--filled {
    border-color: #ffd100;
    background: #fff;
}

.bkinq_otp_input--success {
    border-color: #22c55e;
    background: #fff;
}

.bkinq_otp_input--error {
    border-color: #ef4444;
    background: #fff;
}

/* Verification Status */
.bkinq_verification_status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.bkinq_verification_status--success {
    background: #fff;
    color: #22c55e;
}

.bkinq_verification_status--error {
    background: #fff;
    color: #ef4444;
}

.bkinq_verification_status--pending {
    background: #fff;
    color: #ffd100;
}

.bkinq_verification_status svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Resend Link */
.bkinq_resend_container {
    text-align: center;
    margin-top: 16px;
}

.bkinq_resend_text {
    font-size: 0.875rem;
    color: #9ca3af;
}

.bkinq_resend_link {
    color: #567BD2;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.bkinq_resend_link:hover {
    text-decoration: underline;
}

.bkinq_resend_link--disabled {
    color: #9ca3af;
    cursor: not-allowed;
}

.bkinq_resend_timer {
    font-weight: 600;
    color: #333;
}

/* ==========================================================================
   Submit Button
   ========================================================================== */
.bkinq_submit_section {
    margin-top: 32px;
}

.bkinq_btn_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    background: #ffd100;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
}

.bkinq_btn_submit:hover:not(:disabled) {
    background: #567BD2;
    transform: translateY(-2px);
    box-shadow: none;
}

.bkinq_btn_submit:active:not(:disabled) {
    transform: translateY(0);
}

.bkinq_btn_submit:disabled {
    background: #9ca3af;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bkinq_btn_submit svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ==========================================================================
   Progress Indicator
   ========================================================================== */
.bkinq_form_progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 8px;
}

.bkinq_progress_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.bkinq_progress_step::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ffd100;
    z-index: 0;
}

.bkinq_progress_step:last-child::before {
    display: none;
}

.bkinq_progress_step_number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #9ca3af;
    background: #fff;
    border: 2px solid #ffd100;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.2s ease;
}

.bkinq_progress_step_label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 8px;
    text-align: center;
}

.bkinq_progress_step__active .bkinq_progress_step_number {
    color: #fff;
    background: #ffd100;
    border-color: #ffd100;
}

.bkinq_progress_step__active .bkinq_progress_step_label {
    color: #333;
    font-weight: 600;
}

.bkinq_progress_step__completed .bkinq_progress_step_number {
    color: #fff;
    background: #22c55e;
    border-color: #22c55e;
}

.bkinq_progress_step__completed::before {
    background: #22c55e;
}

/* ==========================================================================
   Messages / Alerts
   ========================================================================== */
.bkinq_alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.bkinq_alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bkinq_alert--info {
    background: #fff;
    color: #567BD2;
}

.bkinq_alert--info svg {
    fill: #567BD2;
}

.bkinq_alert--success {
    background: #fff;
    color: #22c55e;
}

.bkinq_alert--success svg {
    fill: #22c55e;
}

.bkinq_alert--warning {
    background: #fff;
    color: #ffd100;
}

.bkinq_alert--warning svg {
    fill: #ffd100;
}

.bkinq_alert--error {
    background: #fff;
    color: #ef4444;
}

.bkinq_alert--error svg {
    fill: #ef4444;
}

/* ==========================================================================
   Responsive - Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .bkinq_booking_form {
        padding: 32px;
    }

    .bkinq_form_row--2col {
        grid-template-columns: repeat(2, 1fr);
    }

    .bkinq_form_row--3col {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .bkinq_phone_input_group {
        flex-direction: row;
        align-items: flex-end;
    }

    .bkinq_btn_send {
        width: auto;
        white-space: nowrap;
    }

    .bkinq_otp_input {
        width: 64px;
        height: 72px;
        font-size: 1.75rem;
    }

    .bkinq_verification_section {
        padding: 32px;
    }

    .bkinq_progress_step_label {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   Responsive - Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    .bkinq_booking_form_container {
        width: 100%;
        margin: 0 auto;
    }

    .bkinq_form_options--inline {
        gap: 24px;
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.bkinq_sr_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bkinq_hidden {
    display: none;
}

.bkinq_text_center {
    text-align: center;
}

.bkinq_mt_4 {
    margin-top: 16px;
}

.bkinq_mb_4 {
    margin-bottom: 16px;
}
/* CSS Document - Modernized 2025 */

html {
	margin: 0px;
	padding: 0px;
}

/*===============================================================
	fonts - Using system fonts for better readability
=================================================================*/

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

h1 {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.bkinq_font_custom {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
}

/*===============================================================
	general
=================================================================*/

body {
	margin: 0px;
	padding: 0px;
	font-size: 18px;
	line-height: 1.6;
	color: #333;
}

h1 {
	color: #333;
}

a {
	text-decoration: none;
}

.bkinq_main_container {
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
}

.bkinq_cleardiv {
	clear: both;
}

.bkinq_booking_button {
	border-radius: 8px;
}

.bkinq_modal {
	width: 300px;
	height: 160px;
	padding: 20px;
	border: 1px solid #9ca3af;
	border-radius: 8px;
	top: 50%;
	margin-top: -90px;
	left: 50%;
	margin-left: -160px;
	position: fixed;
	background-color: #fff;
	z-index: 40;
	box-shadow: none;
}

.bkinq_modal_loading {
	width: 100px;
	height: 100px;
	top: 50%;
	margin-top: -50px;
	left: 50%;
	margin-left: -50px;
	position: fixed;
	z-index: 40;
}

.bkinq_modal_sfondo {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 30;
	background-color: #333;
	opacity: 0.5;
}


/*===============================================================
	header
=================================================================*/

.bkinq_header_container {
	width: 100%;
	min-height: 60px;
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.bkinq_slot_special_container {
	max-width: 100%;
}


/*===============================================================
	box preview
=================================================================*/

.bkinq_box_preview_container_all {
	background-color: #fff;
	border: 1px solid #9ca3af;
	border-radius: 8px;
	position: fixed;
	z-index: 100;
	top: 300px;
	padding: 20px;
	box-shadow: none;
}

.bkinq_box_preview_title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.bkinq_box_preview_slots_container {
	margin-top: 20px;
	width: 100%;
}

.bkinq_box_preview_column {
	float: left;
	margin-left: 20px;
}

.bkinq_box_preview_row {
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	border-bottom: 1px solid #fff;
}

.bkinq_booked_slot {
	color: #ef4444;
}

/*===============================================================
	booking
=================================================================*/

.bkinq_booking_container_all {
	width: 100%;
	margin-top: 30px;
}

.bkinq_booking_left {
	float: left;
	width: 100%;
	min-height: auto;
	background: #fff;
	padding-bottom: 10px;
}

.bkinq_booking_right {
	float: left;
	width: 100%;
	min-height: auto;
	padding: 10px 0;
}

.bkinq_close_booking {
	width: 100px;
	text-align: right;
	float: right;
}

.bkinq_close_booking a {
	color: #9ca3af;
}

.bkinq_close_booking a:hover {
	color: #567BD2;
}


/* left side */

.bkinq_booking_title {
	font-size: 20px;
	font-weight: 600;
	padding: 10px 0;
}

.bkinq_booking_slots_container {
	width: 100%;
	margin-top: 20px;
}

.bkinq_booking_slots_column {
	float: left;
	margin-left: 25px;
}

.bkinq_booking_slots_row {
	height: 30px;
	font-size: 15px;
	border-bottom: 1px solid #fff;
}

.bkinq_booking_check {
	float: left;
	margin-top: 7px;
}

.bkinq_booking_slot {
	float: left;
	height: 30px;
	line-height: 34px;
	margin-left: 10px;
}

.bkinq_booking_price {
	float: left;
	height: 30px;
	line-height: 34px;
	margin-left: 15px;
	text-align: right;
}

.bkinq_booking_text {
	float: left;
	height: 30px;
	line-height: 34px;
	margin-left: 15px;
}

.bkinq_booking_seats {
	float: left;
	height: 30px;
	line-height: 34px;
	margin-left: 15px;
	text-align: right;
}

#bkinq_next, #bkinq_prev {
	margin-right: 5px;
}

#bkinq_next a {
	width: 32px;
	height: 32px;
	display: block;
	background-image: url(../images/sprite.png);
	background-position: -340px -240px;
}

#bkinq_next a:hover {
	background-position: -400px -240px;
}

#bkinq_prev a {
	width: 32px;
	height: 32px;
	display: block;
	background-image: url(../images/sprite.png);
	background-position: -457px -240px;
}

#bkinq_prev a:hover {
	background-position: -517px -240px;
}

.bkinq_form_text {
	padding: 10px;
	padding-bottom: 0px;
	width: 100%;
}

/* right side */

.bkinq_booking_form_box_text {
	float: left;
	padding: 3px;
}

.bkinq_booking_form_box_textarea {
	float: left;
	padding: 3px;
}

.bkinq_height_space {
	width: 100%;
	height: 10px;
}

.bkinq_booking_form_label {
	font-size: 18px;
	font-weight: 500;
}

#bkinq_input_booking {
	width: 100%;
	max-width: 300px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid #9ca3af;
	padding: 0 12px;
	font-size: 16px;
}

#bkinq_textarea_booking {
	width: 100%;
	height: 100px;
	padding: 12px;
	border: 1px solid #9ca3af;
	border-radius: 8px;
	font-size: 16px;
	resize: vertical;
}

.bkinq_action_form_button {
	margin-top: 20px;
}

.bkinq_book_now_button_container {
	float: right;
}

.bkinq_reset_form_container {
	float: left;
}

.bkinq_book_button {
	display: block;
	text-align: center;
	padding: 16px 32px;
	font-size: 18px;
	font-weight: 600;
	background: #ffd100;
	color: #333;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.bkinq_book_button:hover {
	background: #567BD2;
	color: #fff;
}

.bkinq_book_button:disabled {
	background: #9ca3af;
	color: #fff;
	cursor: not-allowed;
	border: none;
	pointer-events: none;
}

.bkinq_reset_button {
	display: block;
	padding: 12px 24px;
	text-align: center;
	background: #9ca3af;
	color: #fff;
	border-radius: 8px;
}

.bkinq_ok_button {
	display: block;
	padding: 12px 24px;
	text-align: center;
	color: #fff;
	background: #567BD2;
	margin: 20px auto;
	border-radius: 8px;
}

.bkinq_ok_button:hover {
	background: #567BD2;
}

/* Step Navigation Buttons */
.bkinq_btn_next,
.bkinq_btn_submit {
	padding: 14px 32px;
	background: #ffd100;
	color: #333;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.bkinq_btn_next:hover:not(:disabled),
.bkinq_btn_submit:hover:not(:disabled) {
	background: #567BD2;
	color: #fff;
}

.bkinq_btn_next:disabled,
.bkinq_btn_submit:disabled {
	background: #9ca3af;
	color: #fff;
	cursor: not-allowed;
	opacity: 1;
	border: none;
	pointer-events: none;
}

.bkinq_btn_prev {
	padding: 14px 32px;
	background: #ffd100;
	color: #333;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.bkinq_btn_prev:hover {
	background: #567BD2;
	color: #fff;
}

.bkinq_btn_verify {
	padding: 12px 24px;
	background: #ffd100;
	color: #333;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.bkinq_btn_verify:hover {
	background: #567BD2;
	color: #fff;
}

/* Progress Indicator */
.bkinq_step_progress {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-bottom: 32px;
	padding: 0 20px;
	position: relative;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.bkinq_step_progress::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 60px;
	right: 60px;
	height: 3px;
	background: #9ca3af;
	z-index: 0;
}

@media (max-width: 599px) {
	.bkinq_step_progress {
		padding: 0 5px;
		max-width: 100%;
		gap: 4px;
	}
	
	.bkinq_step_progress::before {
		left: 30px;
		right: 30px;
		top: 15px;
	}
	
	.bkinq_step_label {
		font-size: 9px;
		word-wrap: break-word;
		max-width: 60px;
	}
	
	.bkinq_step_number {
		width: 28px;
		height: 28px;
		font-size: 12px;
		margin-bottom: 4px;
	}
}

.bkinq_step_item {
	text-align: center;
	flex: 1;
	position: relative;
	z-index: 1;
}

.bkinq_step_number {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #9ca3af;
	color: #9ca3af;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin-bottom: 8px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.bkinq_step_item.active .bkinq_step_number {
	background: #ffd100;
	color: #333;
}

.bkinq_step_item.completed .bkinq_step_number {
	background: #567BD2;
	color: #fff;
}

.bkinq_step_label {
	font-size: 12px;
	color: #9ca3af;
	transition: all 0.3s ease;
}

.bkinq_step_item.active .bkinq_step_label,
.bkinq_step_item.completed .bkinq_step_label {
	color: #333;
	font-weight: 500;
}

.bkinq_step_item.active::after {
	content: '';
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	height: 3px;
	background: #ffd100;
	z-index: 0;
}

.bkinq_step_item.completed::after {
	content: '';
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	height: 3px;
	background: #567BD2;
	z-index: 0;
}

/* Inline Validation Errors */
.bkinq_field_error {
	color: #ef4444;
	font-size: 13px;
	margin-top: 4px;
	display: none;
}

.bkinq_field_error.show {
	display: block;
}

.bkinq_form_input.error,
.bkinq_form_select.error {
	border-color: #ef4444;
}

.bkinq_form_input.valid,
.bkinq_form_select.valid {
	border-color: #567BD2;
}

/* Inquiry Summary */
.bkinq_inquiry_summary {
	background: #fff;
	border: 1px solid #9ca3af;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 24px;
}

.bkinq_summary_section {
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #9ca3af;
}

.bkinq_summary_section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.bkinq_summary_title {
	font-size: 14px;
	font-weight: 600;
	color: #9ca3af;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.bkinq_summary_content {
	font-size: 16px;
	color: #333;
	line-height: 1.5;
}

.bkinq_summary_row {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
}

.bkinq_summary_label {
	color: #9ca3af;
}

.bkinq_summary_value {
	font-weight: 500;
	color: #333;
}

.bkinq_terms_link {
	font-size: 16px;
	color: #567BD2;
}

.bkinq_terms_link:hover {
	text-decoration: underline;
}


/**
======================================================
 * RESPONSIVE - TABLET *
======================================================
*/

@media only screen and (max-width: 969px) {

img {
	max-width: 100%;
}

.bkinq_main_container {
	width: 100%;
	padding: 0 16px;
}

.bkinq_header_container {
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}


.bkinq_booking_container_all {
	width: 100%;
}

.bkinq_booking_left {
	width: 100%;
	margin: 0;
}

.bkinq_booking_right {
	width: 100%;
	margin: 0;
	padding: 16px 0;
}

.bkinq_booking_form_box_text {
	width: 48%;
	margin-right: 2%;
}

.bkinq_booking_form_box_textarea {
	width: 100%;
}

}


/**
======================================================
 * RESPONSIVE - MOBILE *
======================================================
*/

@media only screen and (max-width: 599px) {


.bkinq_booking_form_box_text {
	width: 100%;
	margin-right: 0;
}

}



.bkinq_field_input_custom {
	background-color: #fff;
	color: #333;
}

.bkinq_book_now_custom {
	background-color: #ffd100;
	color: #fff;
}

.bkinq_book_now_custom:hover {
	background-color: #ffd100;
	color: #fff;
}

.bkinq_clear_custom {
	background-color: #9ca3af;
	color: #fff;
}

.bkinq_clear_custom:hover {
	background-color: #9ca3af;
	color: #fff;
}


/*************************booking form style***************************************/

.bkinq_bookingRowFront-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.bkinq_bookingRowFront2-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.bkinq_leftBookingDiv-flex {
	flex: 1 1 300px;
}

.bkinq_rightBookingDiv-flex {
	flex: 1 1 300px;
}

.bkinq_cal_address-city {
	flex: 1 1 200px;
}

.bkinq_cal_address-state {
	flex: 1 1 100px;
}

.bkinq_cal_address-zip {
	flex: 1 1 120px;
}

.bkinq_cal_pad-right {
	padding-right: 0;
}

.bkinq_leftBookingDiv {
	float: left;
	width: 49%;
}

.bkinq_leftBookingDivAdmin {
	float: left;
	width: 15%;
	font-weight: 500;
}

.bkinq_rightBookingDivAdmin {
	float: left;
	width: 77%;
}

.bkinq_smallTextDiv {
	color: #9ca3af;
	font-size: 14px;
	padding-left: 4px;
}

.bkinq_fourcolumnLabel {
	float: left;
	width: 15%;
	font-weight: 500;
}

.bkinq_fourcolumnInput {
	float: left;
	width: 30%;
}

.bkinq_fourcolumnInput input {
	width: 90%;
}

.bkinq_showBookingDate {
	float: left;
	width: 70%;
}

.bkinq_rightBookingDiv {
	float: right;
	width: 49%;
}

.bkinq_bookingFormInput {
	font-size: 16px;
	width: 100%;
	padding: 10px;
}

.bkinq_bookingRow {
	padding-top: 15px;
}

.bkinq_booking_day_white_bg_hover {
	background: #567BD2;
}

.bkinq_booking_day_white_line1_color_hover {
	background-color: #9ca3af;
}

.bkinq_booking_day_white_line2_color_hover {
	background-color: #9ca3af;
}

.bkinq_booking_day_white_line1_color {
	background-color: #9ca3af;
}

.bkinq_booking_day_white_line2_color {
	background-color: #9ca3af;
}

.bkinq_booking_day_white_bg {
	background: #9ca3af;
}

.bkinq_bookingRowFront {
	padding-top: 20px;
}

.bkinq_bookingRowFront2 {
	padding-top: 10px;
}

input, select, ul {
	margin-bottom: 0px;
}


.bkinq_bookingFormInputFront::-webkit-input-placeholder {
	color: #9ca3af;
}

.bkinq_bookingFormInputFront:-moz-placeholder {
	color: #9ca3af;
	opacity: 1;
}

.bkinq_bookingFormInputFront::-moz-placeholder {
	color: #9ca3af;
	opacity: 1;
}

.bkinq_bookingFormInputFront:-ms-input-placeholder {
	color: #9ca3af;
}

.bkinq_bookingInputLabel {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #333;
	font-weight: 500;
	font-size: 16px;
	padding: 10px 0 8px 0;
}

.bkinq_radio_nudge {
	margin-top: 12px;
}

.bkinq_selectionLabel {
	font-size: 16px;
	font-weight: normal;
	color: #333;
	display: block;
	cursor: pointer;
	padding: 8px 0;
}

.bkinq_selectionLabel input {
	margin-right: 10px;
}

input[type="text"].bkinq_bookingFormInputFront,
select.bkinq_bookingFormInputFront,
textarea.bkinq_bookingFormInputFront {
	border: 1px solid #ffd100;
	border-radius: 8px;
	color: #333;
	background-color: #fff;
	box-shadow: none;
	display: block;
	line-height: 1.5;
	padding: 12px 16px;
	font-size: 16px;
	width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	transition: border-color 0.2s ease;
}

input[type="text"].bkinq_bookingFormInputFront.benar {
	width: 100%;
	max-width: 300px;
}

input[type="text"].bkinq_bookingFormInputFront-small {
	border: 1px solid #ffd100;
	border-radius: 8px;
	color: #333;
	background-color: #fff;
	box-shadow: none;
	font-size: 16px;
	padding: 10px 14px;
}

input[type="text"].bkinq_bookingFormInputFront:hover,
.bkinq_bookingFormInputFront:hover,
input[type="text"].bkinq_bookingFormInputFront-small:hover {
	border-color: #ffd100;
}

input[type="text"].bkinq_bookingFormInputFront:focus,
.bkinq_bookingFormInputFront:focus,
.bkinq_bookingFormInputFront-small:focus {
	border-color: #567BD2;
	box-shadow: none;
	outline: none;
}

.bkinq_paymentLabelDiv {
	float: left;
	width: 25%;
	font-weight: 500;
}

.bkinq_paymentInputDiv {
	float: left;
	width: 50%;
}

/*===============================================================
	Powered By Google Removed
=================================================================*/
.pac-container:after {
	display: none;
}
