.travel-page {
    padding: 24px 16px 48px;
    --travel-brand-blue: #0644b3;
    --travel-brand-blue-soft: #9fc2ff;
    --travel-step-muted-bg: #f1f5f9;
    --travel-step-muted-border: #e2e8f0;
}

.travel-container {
    max-width: 1100px;
    margin: 0 auto;
}

.travel-flow-stepper {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--travel-step-muted-border);
    padding-bottom: 4px;
}

.travel-flow-stepper-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.travel-flow-step {
    flex: 1 1 0;
    min-width: 108px;
    text-align: center;
    padding: 10px 8px 12px;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    border-bottom: 3px solid transparent;
    margin-bottom: -5px;
    white-space: nowrap;
}

.travel-flow-step-label {
    display: block;
}

.travel-flow-step.is-done {
    color: #334155;
    border-bottom-color: #cbd5e1;
}

.travel-card-step-heading-row--raised {
    position: relative;
    z-index: 4;
}

.travel-card-step-heading-row--raised .travel-edit-btn {
    position: relative;
    z-index: 5;
}

.travel-flow-band[hidden] {
    display: none !important;
}

.travel-band-placeholder-text {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.55;
}

.travel-back-step-btn {
    border: 1px solid var(--travel-brand-blue-soft);
    background: #ffffff;
    color: var(--travel-brand-blue);
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
}

.travel-back-step-btn:hover {
    background: #eff6ff;
}

.travel-flow-band-passengers .travel-card {
    margin-bottom: 0;
}

.travel-passengers-toolbar {
    margin: 0 0 14px;
}

.travel-add-passenger-btn {
    border: 1px dashed var(--travel-brand-blue-soft);
    background: #f8fafc;
    color: var(--travel-brand-blue);
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.travel-add-passenger-btn:hover {
    background: #eff6ff;
    border-color: var(--travel-brand-blue);
}

.travel-passengers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 18px;
}

.travel-passenger-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
}

.travel-passenger-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    flex: 1 1 240px;
    min-width: 0;
}

.travel-passenger-field .travel-passenger-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
}

.travel-passenger-national-id {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    background: #fff;
}

.travel-passenger-field--birth .travel-date-picker {
    min-height: 56px;
}

.travel-passenger-field--birth label.travel-date-display {
    min-height: 52px;
    padding: 12px 14px 10px;
}

.travel-passenger-remove {
    flex: 0 0 auto;
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #b91c1c;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    align-self: center;
}

.travel-passenger-remove:hover {
    background: #ffe4e6;
}

.travel-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 8px;
    cursor: pointer;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #1e293b;
}

.travel-consent-row input[type='checkbox'] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--travel-brand-blue);
}

.travel-consent-text {
    flex: 1;
}

.travel-passengers-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.travel-submit-btn--inline {
    width: auto;
    min-width: 160px;
    margin-top: 0;
}

@media (max-width: 640px) {
    .travel-passenger-fields {
        grid-template-columns: 1fr;
    }

    .travel-passengers-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .travel-submit-btn--inline {
        width: 100%;
    }
}

body.travel-passengers-preview-modal-open {
    overflow: hidden;
}

.travel-passengers-preview-modal[hidden] {
    display: none !important;
}

.travel-passengers-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.travel-passengers-preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    cursor: pointer;
}

.travel-passengers-preview-modal__panel {
    position: relative;
    z-index: 1;
    max-width: 540px;
    width: 100%;
    max-height: min(88vh, 680px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 22px 18px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
    text-align: right;
    border: 1px solid #e2e8f0;
}

.travel-passengers-preview-modal__title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: #0f172a;
}

.travel-passengers-preview-modal__hint {
    margin: 0 0 16px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #475569;
}

.travel-passengers-preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.travel-passengers-preview-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 14px 12px;
    background: #f8fafc;
}

.travel-passengers-preview-card__idx {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--travel-brand-blue);
    margin-bottom: 10px;
}

.travel-passengers-preview-dl {
    margin: 0;
    display: grid;
    gap: 8px;
}

.travel-passengers-preview-dl > div {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8px;
    align-items: start;
    font-size: 0.88rem;
}

.travel-passengers-preview-dl dt {
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

.travel-passengers-preview-dl dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
    word-break: break-word;
}

.travel-passengers-preview-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.travel-submit-btn.is-loading {
    opacity: 0.9;
    cursor: wait;
}

@media (max-width: 480px) {
    .travel-passengers-preview-dl > div {
        grid-template-columns: 1fr;
    }

    .travel-passengers-preview-modal__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .travel-passengers-preview-modal__actions .travel-submit-btn--inline {
        width: 100%;
    }
}

.travel-intro {
    text-align: right;
    margin-bottom: 20px;
}

.travel-intro-compact {
    margin-bottom: 16px;
}

.travel-intro h1 {
    margin: 0 0 8px;
    color: #0f172a;
}

.travel-intro p {
    margin: 0;
    color: #475569;
}

.travel-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.travel-alert-success {
    border: 1px solid #86efac;
    background: #f0fdf4;
    color: #166534;
}

.travel-alert-error {
    border: 1px solid #fca5a5;
    background: #fef2f2;
    color: #b91c1c;
}

.travel-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.travel-card-step {
    position: relative;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.travel-step-pending-bar {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    min-height: 56px;
    box-sizing: border-box;
}

.travel-step-pending-title {
    flex: 1;
    text-align: right;
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    line-height: 1.35;
}

.travel-step-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
}

.travel-step-badge-primary {
    background: #eef4ff;
    color: var(--travel-brand-blue);
    border: 2px solid var(--travel-brand-blue-soft);
}

.travel-step-badge-muted {
    background: #fff;
    color: #94a3b8;
    border: 2px solid #cbd5e1;
}

.travel-step-heading-row {
    align-items: center;
}

.travel-step-heading-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: right;
}

.travel-step-heading-main .travel-card-title {
    margin-bottom: 4px;
}

.travel-card-subtitle-inline {
    margin-top: 2px;
}

.travel-card-step.is-locked {
    padding: 0;
    background: var(--travel-step-muted-bg);
    border-color: var(--travel-step-muted-border);
    box-shadow: none;
}

.travel-card-step.is-locked .travel-step-pending-bar {
    display: flex;
}

.travel-card-step.is-locked .travel-card-step-body {
    display: none !important;
}

.travel-card-step:not(.is-locked) .travel-step-pending-bar {
    display: none !important;
}

.travel-card-step:not(.is-locked) .travel-card-step-body {
    display: block;
}

.travel-card-title-wrap {
    margin-bottom: 14px;
}

.travel-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

/* يمنع عنوانًا طويلاً من تغطية زر «تعديل» في الوضع المرن (خصوصاً RTL) */
.travel-card-title-row .travel-step-heading-main {
    flex: 1;
    min-width: 0;
}

.travel-card-title-row .travel-edit-btn {
    flex-shrink: 0;
    align-self: flex-start;
    pointer-events: auto;
    position: relative;
    z-index: 12;
}

.travel-card-title {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1.15rem;
}

.travel-card-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.travel-options-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.travel-options-grid.three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.travel-page .travel-option {
    border: 2px solid var(--travel-brand-blue-soft) !important;
    border-radius: 10px;
    background-color: #ffffff !important;
    color: #1f2937 !important;
    text-align: right;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: 0.2s ease;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(6, 68, 179, 0.18);
    outline: none;
}

.travel-option-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-option-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.travel-page .travel-option.active,
.travel-page .travel-option:hover {
    border-color: var(--travel-brand-blue) !important;
    background-color: #eef4ff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12), inset 0 0 0 1px rgba(6, 68, 179, 0.38);
}

.travel-option-title {
    font-weight: 700;
}

.travel-option-note {
    color: #64748b;
    font-size: 0.9rem;
}

.travel-edit-btn {
    border: 1px solid #bfdbfe;
    background-color: #eff6ff;
    color: #1d4ed8;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 600;
    display: none;
}

.travel-selected-preview {
    display: none;
    border: 2px solid #2563eb;
    background-color: #eef4ff;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.travel-card-step-trip.travel-card.trip-type-collapsed .travel-card-subtitle {
    display: none;
}

.travel-card-step-trip.travel-card.trip-type-collapsed .travel-step-heading-row {
    margin-bottom: 12px;
}

.travel-card.trip-type-collapsed .travel-options-grid {
    display: none;
}

.travel-card.trip-type-collapsed .travel-selected-preview {
    display: block;
}

.travel-card.trip-type-collapsed .travel-edit-btn {
    display: inline-flex;
}

.travel-card.travel-purpose-collapsed .travel-card-subtitle {
    display: none;
}

.travel-card.travel-purpose-collapsed .travel-options-grid {
    display: none;
}

.travel-card.travel-purpose-collapsed .travel-selected-preview {
    display: block;
}

.travel-card.travel-purpose-collapsed .travel-edit-btn {
    display: inline-flex;
}

.travel-card.travel-purpose-collapsed .travel-step-heading-row {
    margin-bottom: 12px;
}

.travel-dates-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
}

.travel-date-secondary-cell {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 62px;
}

.travel-date-secondary-cell > .travel-multi-duration {
    margin-bottom: 0;
}

.travel-date-picker {
    position: relative;
    min-height: 62px;
    border-radius: 12px;
}

.travel-page label.travel-date-display {
    width: 100%;
    margin: 0;
    border: 1px solid var(--travel-brand-blue-soft);
    background-color: #ffffff !important;
    border-radius: 12px;
    padding: 14px 16px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    color: #0f172a;
    min-height: 58px;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.travel-page label.travel-date-display:hover {
    border-color: #a9bbd4;
    background-color: #ffffff !important;
}

.travel-page label.travel-date-display:active {
    transform: translateY(1px);
}

.travel-page label.travel-date-display.has-value {
    border-color: var(--travel-brand-blue);
    box-shadow: 0 8px 18px rgba(29, 78, 216, 0.14);
}

.travel-page .travel-date-picker.is-focus label.travel-date-display {
    border-color: var(--travel-brand-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.14);
}

.travel-date-text {
    position: relative;
    min-height: 32px;
    flex: 1;
    overflow: hidden;
}

.travel-date-label {
    position: absolute;
    top: 0;
    right: 0;
    color: #6b7f99;
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 500;
}

.travel-date-value {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    white-space: nowrap;
}

.travel-date-value:empty::before {
    content: "dd/mm/yyyy";
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.86rem;
}

.travel-date-icon {
    width: 18px;
    height: 18px;
    color: #5f738f;
    flex-shrink: 0;
    margin-right: 10px;
}

.travel-date-icon svg {
    width: 100%;
    height: 100%;
}

/* الحقل الأصلي مخفي بصريًا؛ الضغط يتم عبر <label for> — يعمل على سطح المكتب والجوال بدون طبقات متعارضة */
.travel-date-input-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.travel-field-error {
    display: block;
    color: #b91c1c;
    margin-top: 8px;
    font-size: 0.9rem;
}

.travel-subheading {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 1rem;
}

.travel-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.travel-page .travel-destination {
    border: 2px solid var(--travel-brand-blue-soft) !important;
    border-radius: 10px;
    background-color: #ffffff !important;
    color: #1e293b !important;
    padding: 14px 12px;
    cursor: pointer;
    transition: 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: inset 0 0 0 1px rgba(6, 68, 179, 0.18);
    min-height: 104px;
}

.travel-destination-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.travel-destination-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.travel-destination-text {
    flex: 1;
    min-width: 0;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
    text-align: center;
}

.travel-page .travel-destination:hover {
    border-color: var(--travel-brand-blue) !important;
    background-color: #eef4ff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12), inset 0 0 0 1px rgba(6, 68, 179, 0.38);
}

.travel-page .travel-destination.active {
    border-color: var(--travel-brand-blue) !important;
    background-color: #eef4ff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12), inset 0 0 0 1px rgba(6, 68, 179, 0.38);
}

.travel-destination.disabled {
    border-color: #e2e8f0;
    background-color: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
}

.travel-countries-panel {
    margin-top: 12px;
    position: relative;
}

.travel-countries-names-summary {
    margin: 8px 0 0;
    padding: 0 2px;
    font-size: 0.85rem;
    line-height: 1.45;
    color: #475569;
    text-align: right;
}

.travel-countries-control {
    width: 100%;
    border: 1px solid #d8e2f0;
    border-radius: 10px;
    background: #ffffff;
    min-height: 46px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: right;
}

.travel-countries-control[aria-expanded="true"] {
    border-color: var(--travel-brand-blue);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.travel-countries-control-text {
    display: block;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 600;
}

.travel-countries-control-text.is-placeholder {
    color: #64748b;
    font-weight: 500;
}

.travel-countries-control-icon {
    color: #64748b;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.travel-countries-control[aria-expanded="true"] .travel-countries-control-icon {
    transform: rotate(180deg);
}

.travel-countries-menu {
    border: 1px solid #d8e2f0;
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.travel-countries-list {
    max-height: 280px;
    overflow-y: auto;
}

.travel-country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    color: #0f172a;
    font-size: 0.92rem;
}

.travel-country-option:last-child {
    border-bottom: 0;
}

.travel-country-option:hover {
    background: #f8fbff;
}

.travel-country-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--travel-brand-blue);
    margin: 0;
}

.travel-multi-duration {
    margin-bottom: 18px;
}

.travel-multi-duration-heading {
    margin-bottom: 10px;
}

.travel-multi-duration-label-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    direction: ltr;
    unicode-bidi: isolate;
}

.travel-multi-duration-label-extreme {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.travel-duration-slider {
    width: 100%;
    margin-bottom: 8px;
    direction: ltr;
    unicode-bidi: isolate;
}

.travel-duration-slider-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

.travel-duration-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    border-radius: 999px;
    background: #2563eb;
    pointer-events: none;
    z-index: 1;
}

.travel-duration-slider-ticks {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7px;
    z-index: 2;
    pointer-events: none;
    box-sizing: border-box;
}

.travel-duration-tick {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #cbd5e1;
    flex-shrink: 0;
}

.travel-duration-tick.is-active {
    background: #ffffff;
}

.travel-duration-slider-input {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    margin: 0;
    z-index: 4;
    opacity: 1;
    cursor: pointer;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    direction: ltr;
}

.travel-duration-slider-input::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
}

.travel-duration-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin-top: -4px;
    border-radius: 999px;
    background: #2563eb;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

.travel-duration-slider-input::-moz-range-track {
    height: 8px;
    background: transparent;
}

.travel-duration-slider-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #2563eb;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

.travel-multi-duration-summary {
    margin: 4px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    text-align: right;
}

.travel-submit-btn {
    width: 100%;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* جاهز للانتقال — كل الحقول مكتملة */
.travel-submit-btn:not(:disabled) {
    background-color: var(--travel-brand-blue);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(6, 68, 179, 0.32);
}

.travel-submit-btn-icon {
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.95;
}

.travel-submit-btn:not(:disabled):hover {
    background-color: #003a99;
    box-shadow: 0 6px 18px rgba(6, 68, 179, 0.38);
}

.travel-submit-btn:not(:disabled):active {
    background-color: #003081;
    box-shadow: 0 2px 8px rgba(6, 68, 179, 0.28);
}

.travel-submit-btn:disabled {
    cursor: not-allowed;
    background-color: #cbd5e1;
    color: #64748b;
    box-shadow: none;
}

.travel-submit-btn:disabled .travel-submit-btn-icon {
    opacity: 0.75;
}

.travel-submit-btn:disabled:hover {
    background-color: #cbd5e1;
    box-shadow: none;
}

@media (max-width: 900px) {
    .travel-flow-step {
        min-width: 92px;
        font-size: 0.72rem;
        padding-inline: 4px;
    }

    .travel-options-grid,
    .travel-options-grid.three-columns,
    .travel-destination-grid,
    .travel-dates-grid {
        grid-template-columns: 1fr;
    }
}

