body,
html {
    height: auto;
    margin: 0;
    font-family: "Inter", sans-serif;
    overflow: auto;
}

/* Map area: fixed height, footer stays below */
.booking-engine-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
    margin-top: 80px;
}

.booking-engine-wrapper #map {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.booking-container {
    position: absolute;
    top: 20px !important;
    left: 20px;
    z-index: 2;
    width: 500px;
    max-width: 100%;
}

.booking-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-height: 560px;
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
}

.booking-engine-page #footer {
    margin-top: 0;
}

.booking-card::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.booking-card::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.booking-card::-webkit-scrollbar-thumb {
    background: #1a3a8a;
    border-radius: 10px;
}

/* =============================================================
   STICKY-FOOTER CTA MODE  (default, body[data-cta-mode="sticky"])
   ------------------------------------------------------------- */
body[data-cta-mode="sticky"] .booking-card {
    display: flex;
    flex-direction: column;
    padding: 0;
}

body[data-cta-mode="sticky"] .booking-card__scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 20px 20px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body[data-cta-mode="sticky"] .booking-card__scroll::-webkit-scrollbar {
    display: none;
}

body[data-cta-mode="sticky"] .booking-card__footer {
    flex: 0 0 auto;
    padding: 12px 20px 16px;
    background: #fff;
    border-top: 1px solid #eef0f3;
    box-shadow: 0 -8px 12px -8px rgba(0, 0, 0, 0.06);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

body[data-cta-mode="sticky"] .cta-slot { display: none; }
body[data-cta-mode="sticky"] .cta-slot.is-active { display: block; }

/* CTA buttons stretch full width inside the footer and lose the
   default top-margin they used to need when sitting at the end of
   a step's vertical stack. */
body[data-cta-mode="sticky"] .booking-card__footer .btn-book,
body[data-cta-mode="sticky"] .booking-card__footer .btn-continue,
body[data-cta-mode="sticky"] .booking-card__footer .btn-lets-go {
    width: 100%;
    margin: 0;
    display: block;
}

/* Single-line selection summary above the green CTA on step 2. */
body[data-cta-mode="sticky"] .cta-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
    padding: 0 2px 8px;
}
body[data-cta-mode="sticky"] .cta-summary__label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
body[data-cta-mode="sticky"] .cta-summary__value {
    color: #111827;
    font-size: 14px;
    font-weight: 600;
}

/* =============================================================
   FAB (FLOATING ACTION BUTTON) DEMO MODE  body[data-cta-mode="fab"]
   -------------------------------------------------------------
   Kept side-by-side with sticky mode for visual comparison. The
   buttons live in .booking-card__footer slots in both modes; here we
   absolutely-position that footer over the bottom of the scroll area
   with a transparent backdrop + fade so the list bleeds underneath.
   To remove later: delete this whole block.
*/
body[data-cta-mode="fab"] .booking-card {
    display: block;
    padding: 0;
    position: relative;
    overflow: hidden;     /* contain the absolute footer */
}

body[data-cta-mode="fab"] .booking-card__scroll {
    overflow-y: auto;
    padding: 20px 20px 90px;   /* reserve space so list doesn't end behind FAB */
    max-height: 560px;
}

body[data-cta-mode="fab"] .booking-card__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 20px 16px;
    background: transparent;
    border-top: none;
    box-shadow: none;
    /* Soft white-to-transparent gradient backdrop so the list fades
       under the floating button rather than being clipped sharply. */
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.97) 60%, rgba(255, 255, 255, 0));
    pointer-events: none;       /* let touches pass through the fade */
}

body[data-cta-mode="fab"] .booking-card__footer .cta-slot {
    pointer-events: auto;        /* but capture taps on the button slot */
}

body[data-cta-mode="fab"] .cta-slot { display: none; }
body[data-cta-mode="fab"] .cta-slot.is-active { display: block; }

body[data-cta-mode="fab"] .booking-card__footer .btn-book,
body[data-cta-mode="fab"] .booking-card__footer .btn-continue,
body[data-cta-mode="fab"] .booking-card__footer .btn-lets-go {
    width: 100%;
    margin: 0;
    display: block;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.32);
    border-radius: 10px;
}

/* Hide the summary line in FAB mode — less screen real-estate. */
body[data-cta-mode="fab"] .cta-summary { display: none; }

/* Hide default leaflet-control-geocoder elements if needed */
.leaflet-control-geocoder {
    display: none !important;
}

/* Force booking map markers to stay visible above route lines */
.leaflet-marker-icon.booking-pin-icon {
    background: transparent !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    overflow: visible !important;
    z-index: 1000 !important;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 8px;
}

.service-tab {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: #4b5563;
}

.service-tab img {
    height: 25px;
}

.service-tab span {
    font-size: 11px;
    font-weight: 600;
}

.service-tab.active {
    background: #1a3a8a;
    color: #fff;
    border-color: #1a3a8a;
}

.service-tab:hover:not(.active) {
    background: #f9fafb;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    font-weight: 700;
    font-size: 15px;
    color: #1a3a8a;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    height: 45px;
    box-shadow: none;
    font-size: 14px;
    padding-left: 12px;
}

.form-control:focus {
    border-color: #1a3a8a;
    box-shadow: 0 0 0 2px rgba(26, 58, 138, 0.1);
}

/* intl-tel-input v9 (legacy plugin) with separateDialCode renders a flag +
 * dial-code column to the left of the input. The plugin's own stylesheet
 * already sets the right input padding via .iti-sdc-N rules — we only need
 * to (a) make the wrapper full width inside the form-group, and (b) align
 * the flag block's height with our 45px .form-control so the flag image
 * isn't visually clipped at the top/bottom. */
.passenger-details-form .intl-tel-input,
.passenger-details-form .intl-tel-input.allow-dropdown {
    width: 100%;
    display: block;
}

.passenger-details-form .intl-tel-input .selected-flag {
    height: 43px;
}

.passenger-details-form .intl-tel-input.separate-dial-code .selected-dial-code {
    color: #1f2937;
    font-size: 14px;
    padding-left: 25px !important;
}

.icon-marker {
    position: absolute;
    left: -35px;
    top: 30px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.vertical-line {
    position: absolute;
    left: -24px;
    top: 55px;
    /* Start below the pin */
    width: 2px;
    height: calc(100% + 15px);
    /* Extend beyond the group to meet the next one */
    background: #cbd5e1;
    z-index: 0;
}

.stop-item .vertical-line {
    top: 0;
    height: calc(100% + 20px);
}

.form-group:last-of-type .vertical-line {
    display: none;
    /* No line under the last marker (dropoff) */
}

.add-stop {
    color: #1a3a8a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin: -10px 0 15px 0;
    display: inline-block;
}

.add-stop i {
    margin-right: 5px;
}

/* ASAP/Scheduled Toggle */
.toggle-group {
    display: flex;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #4b5563;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: #1a3a8a;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Radio Buttons */
.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.trip-type label {
    font-weight: 500;
    font-size: 14px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Continue Button */
.btn-continue {
    background: #65a30d;
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    transition: background 0.2s;
}

/* Dynamic Stop Styling */
.stop-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-left: 30px;
    position: relative;
}

.stop-item .form-control {
    flex: 1;
}

.btn-remove-stop {
    background: #fee2e2;
    color: #ef4444;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-remove-stop:hover {
    background: #fecaca;
}

/* Date/Time Fields */
.datetime-container {
    display: none;
    margin-bottom: 20px;
}

.scheduled-fields {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed #cbd5e1;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Search Results Dropdown — default in-flow; .is-floating escapes the
   scroll container via position:fixed (see booking-engine.js). */
.search-results-dropdown {
    position: absolute;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: calc(100% - 20px);
    z-index: 2000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    margin-top: 2px;
}

/* In-card placeholders are unused; all results render in #address-search-portal. */
#pickup-results,
#dropoff-results {
    display: none !important;
}

#address-search-portal {
    position: fixed !important;
    z-index: 99999 !important;
    margin-top: 0;
    width: auto;
    display: none;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9fafb;
    color: #1a3a8a;
}

.search-result-item i {
    margin-right: 8px;
    color: #1a3a8a;
}

/* Return Trip Section */
#return-trip-section {
    display: none;
    border-top: 2px dashed #e5e7eb;
    padding-top: 20px;
    margin-top: 20px;
}

.payment-options {
    font-size: 18px;
    color: #1f2937;
    font-weight: 700;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a3a8a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Flatpickr Confirm Button Styling */
.flatpickr-confirm {
    background: #1a3a8a !important;
    color: #fff !important;
    padding: 10px 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    border-radius: 0 0 8px 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.flatpickr-confirm:hover {
    background: #1e40af !important;
}

.flatpickr-confirm svg {
    fill: #fff !important;
}

/* Step 2: Vehicle Selection */
.step-content {
    transition: all 0.3s ease;
}

.step-2 {
    display: none;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #1f2937;
}

.edit-ride {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.edit-ride i {
    margin-right: 5px;
}

.vehicle-list {
    margin-bottom: 20px;
}

.vehicle-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.vehicle-item:hover {
    background: #f8fafc;
    transform: translateX(4px);
}

.vehicle-item.selected {
    background: #eff6ff;
    border-bottom: 2px solid #1a3a8a;
    transform: translateX(0);
}

.vehicle-img {
    width: 100px;
    height: auto;
    margin-right: 15px;
}

/* .vehicle-img img {
    width: 100%;
} */

.vehicle-info {
    flex: 1;
}

.vehicle-name {
    font-size: 16px;
    font-weight: 700;
    color: #6b7280;
    margin: 0 0 2px 0;
    transition: color 0.2s;
}

.vehicle-desc {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 5px 0;
    transition: color 0.2s;
}

.vehicle-item.selected .vehicle-name,
.vehicle-item.selected .vehicle-desc,
.vehicle-item.selected .price-now {
    color: #1a3a8a;
}

.vehicle-capacity {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}

.vehicle-capacity span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle-capacity img {
    height: 14px;
    width: auto;
    filter: grayscale(1) opacity(0.6);
}

.vehicle-price {
    text-align: right;
}

.price-old {
    font-size: 14px;
    color: #1a3a8a;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
}

.price-now {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    transition: color 0.2s;
}

.selection-indicator {
    margin-left: 15px;
    width: 22px;
    height: 22px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    position: relative;
}

.vehicle-item.selected .selection-indicator,
.parcel-item.selected .selection-indicator,
.removal-item.selected .selection-indicator {
    border-color: #1a3a8a;
    background: #fff;
}

.vehicle-item.selected .selection-indicator::after,
.parcel-item.selected .selection-indicator::after,
.removal-item.selected .selection-indicator::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #1a3a8a;
    border-radius: 50%;
    display: block;
}

.btn-continue {
    background: #e5e7eb;
    color: #9ca3af;
    border: none;
    border-radius: 12px;
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.2s;
    margin-top: 20px;
}

.btn-continue.active {
    background: #65a30d;
    color: #fff;
    cursor: pointer;
}

.btn-continue.active:hover {
    background: #65a30d;
}

.btn-book {
    background: #e5e7eb;
    color: #9ca3af;
    border: none;
    border-radius: 12px;
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.2s;
    margin-top: 20px;
}

.btn-book.active {
    background: #65a30d;
    color: #fff;
    cursor: pointer;
}

.btn-book.active:hover {
    background: #65a30d;
}

/* Step 3: Confirmation */
.step-3 {
    display: none;
}

.journey-summary {
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-label {
    width: 100px;
    font-weight: 700;
    color: #4b5563;
}

.summary-value {
    flex: 1;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-divider {
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.option-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.option-card i,
.option-card img {
    height: 24px;
    margin-bottom: 8px;
    color: #4b5563;
}

.option-card span {
    font-size: 11px;
    font-weight: 600;
    color: #4b5563;
}

.option-card.selected {
    background: #1a3a8a;
    border-color: #1a3a8a;
    box-shadow: 0 4px 12px rgba(26, 58, 138, 0.2);
}

.option-card.selected i,
.option-card.selected span {
    color: #fff;
}

.promo-link {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
}

/* Promo feedback under the input — keep text readable (server messages are plain UTF-8). */
#promo-message {
    display: block;
    margin-top: 8px;
    line-height: 1.45;
    white-space: normal;
    word-break: break-word;
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.passenger-info-header {
    text-align: center;
    margin-bottom: 20px;
}

.passenger-info-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.cancel-link {
    color: #1a3a8a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cancel-link:hover {
    opacity: 0.7;
    text-decoration: none;
}

.vehicle-price.expanded .price-now {
    font-size: 24px;
    color: #1a3a8a;
}

.promo-group {

    gap: 10px;
}

.promo-input {
    border-radius: 8px !important;
    background: #f9fafb !important;
}

.btn-apply {
    background: #1a3a8a !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 10px 25px !important;
    border-radius: 8px !important;
    height: 45px;
}

.promo-section {
    flex: 1;
}

.passenger-details-form {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.passenger-details-form .form-group:last-child {
    margin-bottom: 0;
}

.btn-lets-go {
    background: #e5e7eb;
    color: #9ca3af;
    border: none;
    border-radius: 12px;
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.2s;
}

.btn-lets-go.active {
    background: #65a30d;
    color: #fff;
    cursor: pointer;
}

.btn-lets-go.active:hover {
    background: #65a30d;
}

.btn-lets-go.active:hover {
    background: #65a30d;
}

/* Flatpickr Confirm Button Styling */
.flatpickr-confirm {
    background: #65a30d !important;
    color: #fff !important;
    padding: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 0 0 12px 12px !important;
    cursor: pointer !important;
    border: none !important;
    opacity: 1 !important;
    transition: background 0.2s !important;
    text-transform: none !important;
}

.flatpickr-confirm:hover {
    background: #4d7c0f !important;
}

.flatpickr-confirm svg {
    display: none !important;
    /* Hide the default tick icon if not needed */
}

.flatpickr-calendar {
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e5e7eb !important;
}

.flatpickr-calendar.confirmDate-padding {
    padding-bottom: 50px !important;
    /* Make room for the confirm button */
}

.flatpickr-calendar.confirmDate-padding .flatpickr-confirm {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* success page */
body.success-page,
html.success-page {
    overflow: auto !important;
    height: auto !important;
}

.success-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.header-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #eff6ff;
}

.header-section h4 {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 10px;
}

.header-section p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.card-custom {
    background-color: #eff6ff;
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-title {
    color: #1a3a8a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
    font-size: 16px;
}

.info-value {
    color: #475569;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.4;
}

.row-detail {
    margin-bottom: 20px;
}

#map-success {
    height: 350px;
    width: 100%;
    border-radius: 12px;
}

.customer-card {
    margin-top: 30px;
    background-color: #eff6ff;
    border-radius: 12px;
    padding: 25px;
}

.customer-card h3 {
    color: #1a3a8a;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.btn-group-custom {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-return {
    background-color: #84cc16;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-cancel {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-my-bookings {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-book-again,
.btn-book-return {
    color: #1e3a8a;
    background-color: #ffffff;
    border: 1px solid #1e3a8a;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-book-again:hover,
.btn-book-return:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}

.pdf-icon {
    font-size: 32px;
    color: #64748b;
}

@media (max-width: 768px) {
    .card-custom {
        margin-bottom: 20px;
    }
}

/* Airport Hints and suggestions */
.airport-warning {
    padding: 12px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ffe58f;
}

.airport-terminal-item {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.airport-terminal-item:hover {
    background: #eff6ff;
}

/* Airport Alert Popup */
#airport-alert-popup {
    display: none;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    width: 380px;
    max-width: 95%;
    text-align: center;
    border-top: 6px solid #1a3a8a;
}

#airport-alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 10000;
}

.airport-alert-icon {
    font-size: 50px;
    color: #1a3a8a;
    margin-bottom: 20px;
}

.airport-alert-text {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-got-it {
    background: #1a3a8a;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(26, 58, 138, 0.2);
}

.btn-got-it:hover {
    background: #152e6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 58, 138, 0.3);
}

/* Courier Parcel Selection Styling */
.parcel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.parcel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    position: relative;
    margin-bottom: 0;
    border-bottom: 1px solid #f3f4f6;
}

.parcel-item:hover {
    background: #f8fafc;
}

.parcel-item.selected {
    background: #eff6ff;
    border-bottom: 2px solid #1a3a8a;
}

.parcel-img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parcel-img img {

    height: auto;
    object-fit: contain;
}

.parcel-info {
    flex: 1;
}

.parcel-name {
    font-size: 16px;
    font-weight: 700;
    color: #6b7280;
    margin: 0 0 2px 0;
}

.parcel-item.selected .parcel-name,
.parcel-item.selected .price-now {
    color: #1a3a8a;
}

.parcel-desc {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    margin: 0;
}

.parcel-type {
    font-size: 11px;
    color: #9ca3af;
    margin: 4px 0 0 0;
}

/* Removal Item Styles */
.removal-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 15px;
}

.removal-item:hover {
    background: #f8fafc;
}

.removal-item.selected {
    background: #eff6ff;
    border-bottom: 2px solid #1a3a8a;
}

.removal-img {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.removal-img img {

    height: auto;
    object-fit: contain;
}

.removal-info {
    flex: 1;
}

.removal-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.removal-item.selected .removal-name {
    color: #1a3a8a;
}

.removal-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.removal-details p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.removal-details i {
    width: 16px;
    text-align: center;
    color: #475569;
}

.removal-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 80px;
    margin-top: 5px;
}

.removal-price .price-now {
    color: #1f2937;
}

.removal-item.selected .price-now {
    color: #1a3a8a;
}

.removal-item .selection-indicator {
    margin-top: 15px;
}

.parcel-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 70px;
}

@media (min-width: 320px) and (max-width: 768px) {
    .booking-container {
        left: 15px;
        width: calc(100% - 30px);
        max-width: 400px;
    }
}