.jet-form-builder-row:has(input[name="service_type"]) {
    display: block !important;
    width: 100%;
    margin-bottom: 14px;
    margin-top: -4px;
}

.jet-form-builder-row:has(input[name="service_type"]) .jet-form-builder__fields-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.jet-form-builder-row:has(input[name="service_type"]) .jet-form-builder__field-wrap {
    display: inline-flex !important;
    align-items: center;
    flex: 0 0 auto !important;
    width: auto !important;
    gap: 7px;
    margin: 0 !important;
}

.jet-form-builder-row:has(input[name="service_type"]) input[name="service_type"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #005180;
    cursor: pointer;
}

.jet-form-builder-row:has(input[name="service_type"]) label {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
}

.jet-form-builder select[name="selected_transfer"],
.jet-form-builder select[name="selected_tour"] {
    display: block;
    width: 100% !important;
    min-width: 0;
    min-height: 50px;
    box-sizing: border-box;
    padding: 0 48px 0 14px;
    border: 1px solid #d9dfe7;
    border-radius: 12px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px 18px;
    color: #1f2937;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.jet-form-builder select[name="selected_transfer"]:hover,
.jet-form-builder select[name="selected_tour"]:hover {
    border-color: rgba(0, 81, 128, 0.45);
}

.jet-form-builder select[name="selected_transfer"]:focus,
.jet-form-builder select[name="selected_tour"]:focus {
    border-color: #005180;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 81, 128, 0.12);
}



.jet-form-builder-choice.booking-vehicles {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-vehicles > .jet-form-builder-choice--item {
    position: relative;
    display: block !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d9dfe7;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease;
}

.booking-vehicles > .jet-form-builder-choice--item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 81, 128, 0.45);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.booking-vehicles > .jet-form-builder-choice--item.is-checked {
    border-color: #005180;
    background: rgba(0, 81, 128, 0.1);
    box-shadow: 0 0 0 1px #005180;
    border-radius: 12px;
}

.booking-vehicles > .jet-form-builder-choice--item:focus-within {
    border-color: #005180;
    box-shadow: 0 0 0 2px rgba(0, 81, 128, 0.15);
}

.vehicle-card-content {
    display: flex;
    flex-direction: column;
    /*min-height: 150px;*/
    height: 100%;
    padding: 0px 15px 10px 15px;
    font-family: "Inter", Sans-serif;
}

.booking-vehicles .vehicle-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 110px;
    margin-bottom: 10px;
}

.booking-vehicles .vehicle-image picture{
    width: 100%;
    height: 100%;
    
}

.booking-vehicles .vehicle-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.booking-vehicles .vehicle-name {
    text-align: center;
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.booking-vehicles .vehicle-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
}

.booking-vehicles .vehicle-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    line-height: 1;
    color: #9aa3ad;
}

.booking-vehicles .vehicle-icon {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    fill: currentColor;
}

.booking-vehicles .vehicle-meta-text {
    line-height: 1;
}

.booking-vehicles .vehicle-price {
    margin: auto 0 0;
    padding-top: 7px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #333333;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    text-align: center;
}

@media (max-width: 1024px) {
    .jet-form-builder-choice.booking-vehicles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .jet-form-builder-choice.booking-vehicles {
        gap: 10px;
    }

    .vehicle-card-content {
        min-height: 135px;
        padding: 14px;
    }

    .booking-vehicles .vehicle-name {
        font-size: 15px;
    }

}



.jet-form-builder__label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #444;
}

.booking-direction {
    margin-top: 14px;
    margin-bottom: 16px;
}

.booking-direction-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: 2px 16px;
    padding: 18px 20px 14px;
    border: 1px solid #d9dfe7;
    border-radius: 12px;
    background: #fff;
    -webkit-user-select: none;
    user-select: none;
}

.booking-direction-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    gap: 3px;
    text-align: center;
}

.booking-direction-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.booking-direction-label-from {
    color: #008f5a;
}

.booking-direction-label-to {
    color: #d94a4a;
}

.booking-direction-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
}

.booking-direction-card .booking-direction-swap {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50%;
    background: transparent !important;
    box-shadow: none !important;
    color: #9ca3af !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.booking-direction-card .booking-direction-swap .swap-icon-circle {
    display: block;
    width: 38px;
    height: 38px;
    color: inherit;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.booking-direction-card .booking-direction-swap:hover {
    background: transparent !important;
    color: #005180 !important;
}

.booking-direction-card .booking-direction-swap:hover .swap-icon-circle {
    transform: scale(1.05);
}

.booking-direction-card .booking-direction-swap:focus,
.booking-direction-card .booking-direction-swap:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
}

.booking-direction-duration {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.3;
    color: #6b7280;
}

.booking-direction-clock {
    display: block;
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    fill: currentColor;
}

.booking-direction-duration-text,
.booking-direction-trip-type {
    line-height: 1.3;
}

@media (max-width: 480px) {
    .booking-direction-card {
        grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
        gap: 8px;
        padding: 16px 12px 12px;
    }

    .booking-direction-value {
        font-size: 14px;
    }

    .booking-direction-swap .swap-icon-circle {
        width: 34px;
        height: 34px;
    }
}




.booking-datetime {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}

.booking-datetime > .jet-form-builder-row {
    display: block !important;
    min-width: 0;
    margin: 0 !important;
}

.booking-datetime .jet-form-builder__label {
    display: block;
    margin-bottom: 8px;
}

.booking-datetime .jet-form-builder__label-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #444;
}

.booking-datetime .booking-date,
.booking-datetime .booking-time {
    display: block;
    width: 100% !important;
    min-width: 0;
    min-height: 50px;
    box-sizing: border-box;
    padding: 0 14px;
    border: 1px solid #d9dfe7;
    border-radius: 12px;
    background: #fff;
    color: #1f2937;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-datetime .booking-date:hover,
.booking-datetime .booking-time:hover {
    border-color: rgba(0, 81, 128, 0.45);
}

.booking-datetime .booking-date:focus,
.booking-datetime .booking-time:focus {
    border-color: #005180;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 81, 128, 0.12);
}

.booking-datetime .booking-date::-webkit-calendar-picker-indicator,
.booking-datetime .booking-time::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

@media (max-width: 767px) {
    .booking-datetime {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}





.booking-contact {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: none !important;
}

.booking-contact > .booking-contact-main,
.booking-contact > .jet-form-builder-row {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin: 0 !important;
}

.booking-contact-main {
    display: grid !important;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 16px;
    width: 100%;
    max-width: none !important;
}

.booking-contact-main > .jet-form-builder-row {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin: 0 !important;
}

.booking-contact > .jet-form-builder-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin: 0 !important;
}

.booking-contact .jet-form-builder__label {
    display: block !important;
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 8px !important;
}

.booking-contact .jet-form-builder__label-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #444;
}

.booking-contact .jet-form-builder__field-wrap {
    display: block !important;
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    flex-grow: 1 !important;
}

.booking-contact .booking-name,
.booking-contact .booking-email,
.booking-contact .booking-whatsapp,
.booking-contact .booking-notes {
    display: block;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid #d9dfe7;
    border-radius: 12px;
    background: #fff;
    color: #1f2937;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-contact .booking-name,
.booking-contact .booking-email,
.booking-contact .booking-whatsapp {
    min-height: 50px;
    padding: 0 14px;
}

.booking-contact .booking-notes {
    flex: 1;
    min-height: 228px;
    padding: 14px;
    resize: vertical;
}

.booking-contact .booking-name:hover,
.booking-contact .booking-email:hover,
.booking-contact .booking-whatsapp:hover,
.booking-contact .booking-notes:hover {
    border-color: rgba(0, 81, 128, 0.45);
}

.booking-contact .booking-name:focus,
.booking-contact .booking-email:focus,
.booking-contact .booking-whatsapp:focus,
.booking-contact .booking-notes:focus {
    border-color: #005180;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 81, 128, 0.12);
}

.booking-contact input::placeholder,
.booking-contact textarea::placeholder {
    color: #8a94a3;
    opacity: 1;
}

.booking-contact textarea{
    height: 100%;
    flex-grow: 1 !important;
}

@media (max-width: 767px) {
    .booking-contact {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-contact .booking-notes {
        min-height: 130px;
    }
}



/* summary */
.booking-form-column,
.booking-summary-column {
    min-width: 0;
    width: 100%;
}

.booking-form-column{
    background: #F7F9FB;
    border-radius: 12px !important;
    border: 1px solid #e6e6e6;
    padding: 22px !important;
}

.booking-summary-column{
    background: #FFF;
    border-radius: 12px !important;
    border: 1px solid #d9dfe7;
    padding: 22px !important;
    position: sticky !important;
    top: 24px;
}

.booking-summary-title {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
}

.booking-summary-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 0 16px;
}

.booking-summary-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #6b7280;
    color: #004270;
}

.booking-summary-value {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
}

.booking-summary-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.booking-summary-total-label {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.booking-summary-total {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    color: #005180;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-summary {
        position: static;
    }
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator{
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.booking-select-tour,
.booking-select-transfer{
    margin-bottom: 10px;
    
}


.booking-native-submit,
.jet-form-builder-row:has(.booking-native-submit) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.booking-summary .booking-submit-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 50px !important;
    margin: 20px 0 0 !important;
    padding: 0 18px !important;
    border: 1px solid #25d366 !important;
    border-radius: 12px !important;
    background: #25d366 !important;
    background-color: #25d366 !important;
    color: #ffffff !important;
    font-family: "Inter", Sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-summary .booking-submit-trigger:hover:not(:disabled) {
    background: #20bd5a !important;
    background-color: #20bd5a !important;
    border-color: #20bd5a !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10) !important;
}

.booking-summary .booking-submit-trigger:focus,
.booking-summary .booking-submit-trigger:focus-visible {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
    outline: 2px solid rgba(37, 211, 102, 0.30) !important;
    outline-offset: 3px;
}

.booking-summary .booking-submit-trigger:disabled {
    background: #d1d5db !important;
    background-color: #d1d5db !important;
    border-color: #d1d5db !important;
    color: #ffffff !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.booking-summary-note {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: #777;
}

.booking-submit-error {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #b42318;
}

.booking-submit-error.is-visible {
    display: block;
}



