/* ================================================================
   booking.css — Multi-Step Car Rental Booking Form
   Car Rental Limousine Service Theme Extension
   Fonts: Outfit | Colors: #f5b754 (gold), #1b1b1b (dark), #f2f2f2 (gray)
================================================================ */

/* ======= Step Progress Bar ======= */
.msf-wrapper {
    padding: 80px 0 100px;
}

.msf-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
}

.msf-progress-track {
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.msf-progress-fill {
    height: 100%;
    background: #f5b754;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.msf-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.msf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.msf-step-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #aaa;
    transition: all 0.4s ease;
    position: relative;
}

.msf-step-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    transition: color 0.4s ease;
    white-space: nowrap;
}

/* Active Step */
.msf-step.active .msf-step-icon {
    border-color: #f5b754;
    background: #f5b754;
    color: #1b1b1b;
    box-shadow: 0 8px 25px rgba(245, 183, 84, 0.4);
    transform: scale(1.1);
}

.msf-step.active .msf-step-label {
    color: #1b1b1b;
    font-weight: 600;
}

/* Completed Step */
.msf-step.completed .msf-step-icon {
    border-color: #f5b754;
    background: #f5b754;
    color: #1b1b1b;
}

.msf-step.completed .msf-step-icon::after {
    content: '✓';
    font-size: 20px;
    font-weight: 700;
}

.msf-step.completed .msf-step-icon .step-num {
    display: none;
}

.msf-step.completed .msf-step-label {
    color: #555;
}


/* ======= Form Panel ======= */
.msf-panels-wrap {
    position: relative;
}

.msf-panels-wrap.hidden {
    display: none;
}

.msf-panel {
    display: none;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.msf-panel.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.msf-panel.leaving {
    display: block !important;
    opacity: 0 !important;
    transform: translateX(-40px) !important;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.msf-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 50px 40px;
    box-shadow: 0 10px 40px rgba(27, 27, 27, 0.06);
    position: relative;
    overflow: hidden;
}

.msf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #f5b754;
    border-radius: 20px 0 0 20px;
}

.msf-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 8px;
}

.msf-card-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #888;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ======= Trip Type Selector (Step 1) ======= */
.trip-type-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    background: #f2f2f2;
    border-radius: 30px;
    padding: 6px;
}

.trip-type-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.trip-type-btn.active {
    background: #f5b754;
    color: #1b1b1b;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 183, 84, 0.3);
}

.trip-type-btn:hover:not(.active) {
    background: rgba(245, 183, 84, 0.15);
    color: #1b1b1b;
}

/* ======= Form Field Styles ======= */
.msf-field {
    margin-bottom: 20px;
}

.msf-field label {
    display: block !important;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #1b1b1b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.msf-field input[type="text"],
.msf-field input[type="email"],
.msf-field input[type="tel"],
.msf-field input[type="number"],
.msf-field input[type="date"],
.msf-field select,
.msf-field textarea {
    width: 100%;
    padding: 16px 22px;
    background: #f2f2f2;
    border: 2px solid transparent;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1b1b1b;
    transition: all 0.3s ease;
    margin-bottom: 0;
    height: auto;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.msf-field input:focus,
.msf-field select:focus,
.msf-field textarea:focus {
    background: #fff;
    border-color: #f5b754;
    box-shadow: 0 4px 20px rgba(245, 183, 84, 0.15);
    outline: none;
}

.msf-field input::placeholder,
.msf-field textarea::placeholder {
    color: #aaa;
    font-weight: 300;
}

.msf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.msf-field textarea {
    border-radius: 20px;
    resize: none;
}

/* ======= Field with icon =======
   FIX: was defined twice with conflicting display values
   (position:relative block + separate display:flex block).
   The flex block caused .field-ico to lose its position:absolute
   anchor on toggled elements (airport sections), merging icon
   into the input text. Consolidated into one block here.
   ======================================= */
.msf-field-icon {
    position: relative;           /* anchor for the absolute icon */
    display: flex;                /* align icon + input in a row  */
    align-items: center;
}

.msf-field-icon .field-ico {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #f5b754;
    z-index: 2;
    line-height: 1;
    pointer-events: none;
}

/* Ensure ALL inputs inside .msf-field-icon get left padding
   so text never sits under the icon.
   High-specificity rule covers address, airport, tel, email,
   date and any future input type added in this wrapper.        */
.msf-field .msf-field-icon input[type="text"],
.msf-field .msf-field-icon input[type="tel"],
.msf-field .msf-field-icon input[type="email"],
.msf-field .msf-field-icon input[type="date"],
.msf-field .msf-field-icon select {
    padding-left: 50px !important;
}

/* ======= Section Divider ======= */
.msf-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.msf-divider-line {
    flex: 1;
    height: 1px;
    background: #f0f0f0;
}

.msf-divider-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

/* ======= Round Trip Section ======= */
.round-trip-section {
    display: none;
}

.round-trip-section.show {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

/* ======= Duration Slider (Hourly) ======= */
.duration-display {
    background: #f5b754;
    color: #1b1b1b;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 18px;
    border-radius: 20px;
    margin-bottom: 15px;
    line-height: 1;
}

.duration-display span {
    font-size: 13px;
    font-weight: 300;
    display: block;
    margin-top: 4px;
}

.msf-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    outline: none;
    margin-bottom: 0;
    padding: 0;
}

.msf-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #f5b754;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(245, 183, 84, 0.5);
    transition: transform 0.2s;
}

.msf-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #aaa;
    margin-top: 8px;
}

/* ======= Passenger Counter ======= */
.passenger-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f2f2f2;
    border-radius: 30px;
    padding: 10px 20px;
    width: fit-content;
}

.pax-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    line-height: 1;
    flex-shrink: 0;
}

.pax-btn:hover {
    background: #f5b754;
    color: #1b1b1b;
    box-shadow: 0 3px 10px rgba(245, 183, 84, 0.4);
}

.pax-count {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1b1b1b;
    min-width: 30px;
    text-align: center;
}


/* ======= Step 2 — Vehicle Cards ======= */
.vehicle-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vehicle-card {
    background: #f2f2f2;
    border-radius: 20px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.vehicle-card:hover {
    border-color: #f5b754;
    background: #fff;
    box-shadow: 0 8px 30px rgba(245, 183, 84, 0.15);
    transform: translateY(-2px);
}

.vehicle-card.selected {
    border-color: #f5b754;
    background: #fff;
    box-shadow: 0 8px 30px rgba(245, 183, 84, 0.2);
}

.vehicle-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: #f5b754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #1b1b1b;
}

.vehicle-thumb {
    width: 130px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.12));
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-thumb {
    transform: scale(1.05);
}

.vehicle-thumb-placeholder {
    width: 130px;
    height: 80px;
    background: #e8e8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.vehicle-info {
    flex: 1;
}

.vehicle-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 4px;
}

.vehicle-type-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f5b754;
    background: rgba(245, 183, 84, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.vehicle-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.7;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #555;
    background: rgba(27, 27, 27, 0.06);
    padding: 4px 12px;
    border-radius: 15px;
}

.vehicle-price-col {
    text-align: right;
    flex-shrink: 0;
}

.vehicle-price {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1;
}

.vehicle-price-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 300;
    display: block;
    margin-top: 4px;
}

.vehicle-pax {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

/* ======= Step 3 — Extras ======= */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 10px;
}

.extra-card {
    background: #f2f2f2;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.extra-card:hover {
    border-color: #f5b754;
    background: #fff;
    box-shadow: 0 5px 20px rgba(245,183,84,0.12);
}

.extra-card.selected {
    border-color: #f5b754;
    background: #fff;
}

.extra-card .extra-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: transparent;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
}

.extra-card.selected .extra-check {
    border-color: #f5b754;
    background: #f5b754;
    color: #1b1b1b;
}

.extra-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.extra-name {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 4px;
}

.extra-price {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #f5b754;
}

/* ======= Step 4 — Review & Confirm ======= */
.review-block {
    background: #f2f2f2;
    border-radius: 16px;
    padding: 25px 28px;
    margin-bottom: 20px;
}

.review-block-title {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5b754;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}

.review-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.review-row:last-child {
    border-bottom: none;
}

.review-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #888;
    flex: 1;
}

.review-value {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1b1b1b;
    text-align: right;
    flex: 1;
}

.price-summary {
    background: #1b1b1b;
    border-radius: 16px;
    padding: 25px 28px;
    margin-bottom: 20px;
}

.price-summary .review-label {
    color: rgba(255,255,255,0.55);
}

.price-summary .review-value {
    color: #fff;
}

.price-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.price-total-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

.price-total-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #f5b754;
}

/* ======= Navigation Buttons ======= */
.msf-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}

.msf-btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
}

.msf-btn-prev:hover {
    border-color: #1b1b1b;
    color: #1b1b1b;
    background: transparent;
}

.msf-btn-prev.hidden {
    visibility: hidden;
    pointer-events: none;
}

.msf-btn-next,
.msf-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 45px;
    background: #f5b754;
    border: none;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1b1b1b;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    line-height: 1.4;
    box-shadow: 0 6px 20px rgba(245, 183, 84, 0.35);
}

.msf-btn-next:hover,
.msf-btn-submit:hover {
    background: #1b1b1b;
    color: #fff;
    box-shadow: 0 8px 25px rgba(27, 27, 27, 0.2);
    transform: translateY(-2px);
}

.msf-btn-submit {
    background: #1b1b1b;
    color: #fff;
    box-shadow: 0 6px 20px rgba(27, 27, 27, 0.2);
}

.msf-btn-submit:hover {
    background: #f5b754;
    color: #1b1b1b;
}

/* ======= Success Screen ======= */
.msf-success {
    display: none;
    text-align: center;
    padding: 0;
}

.msf-success.active {
    display: block;
    animation: fadeSlideIn 0.6s ease;
}

.msf-card--success {
    text-align: center;
    padding: 60px 50px 50px;
}

.msf-card--success::before {
    display: none;
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f5b754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.msf-success h3 {
    font-size: 28px;
    color: #1b1b1b;
    margin-bottom: 10px;
}

.msf-success p {
    color: #888;
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto 30px;
}

.booking-ref {
    display: inline-block;
    background: #f2f2f2;
    border-radius: 15px;
    padding: 15px 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 30px;
}

.booking-ref strong {
    display: block;
    font-size: 22px;
    color: #1b1b1b;
    margin-top: 5px;
    letter-spacing: 3px;
}

/* ======= Validation States ======= */
.msf-field.error input,
.msf-field.error select,
.msf-field.error textarea {
    border-color: #e74c3c;
    background: #fff8f8;
}

.msf-field .field-error {
    display: none;
    font-size: 11px;
    color: #e74c3c;
    margin-top: 5px;
    padding-left: 15px;
    font-family: 'Outfit', sans-serif;
}

.msf-field.error .field-error {
    display: block;
}

/* ======= Sidebar Summary ======= */
.booking-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-summary {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(27, 27, 27, 0.06);
    margin-bottom: 20px;
}

.sidebar-summary-title {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5b754;
    margin-bottom: 20px;
}

.sidebar-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
}

.sidebar-row:last-of-type {
    border-bottom: none;
}

.sidebar-key {
    color: #aaa;
    font-weight: 300;
}

.sidebar-val {
    color: #1b1b1b;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.sidebar-total {
    background: #f5b754;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.sidebar-total-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(27, 27, 27, 0.7);
}

.sidebar-total-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1b1b1b;
}

.sidebar-help {
    background: #1b1b1b;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.sidebar-help p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 12px;
}

.sidebar-help a {
    display: block;
    color: #f5b754;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
    transition: color 0.2s;
}

.sidebar-help a:hover {
    color: #fff;
}

/* ======= Checkbox / Radio styled ======= */
.msf-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.msf-check-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #555;
    cursor: pointer;
    background: #f2f2f2;
    padding: 10px 18px;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.msf-check-label:hover {
    border-color: #f5b754;
    background: rgba(245, 183, 84, 0.08);
}

.msf-check-label input[type="checkbox"],
.msf-check-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #f5b754;
    display: inline;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

/* ======= Terms checkbox ======= */
.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f2f2f2;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #f5b754;
    display: inline;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-check label {
    display: block !important;
    font-size: 13px;
    color: #555;
    font-weight: 300;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 0;
    cursor: pointer;
    line-height: 1.6;
}

.terms-check label a {
    color: #f5b754;
    font-weight: 600;
    text-decoration: underline;
    display: inline;
}

/* ======= Order Type tabs ======= */
.order-type-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.order-type-btn {
    padding: 10px 20px;
    background: #f2f2f2;
    border: 2px solid transparent;
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #555;
    cursor: pointer;
    transition: all 0.25s ease;
}

.order-type-btn.active,
.order-type-btn:hover {
    background: #1b1b1b;
    color: #fff;
}

.order-type-btn.active {
    border-color: #1b1b1b;
}

/* ======= Animations ======= */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ======= Responsive Styles ======= */
@media screen and (max-width: 1199px) {
    .msf-steps {
        gap: 50px;
    }
}

@media screen and (max-width: 991px) {
    .msf-wrapper {
        padding: 60px 0 80px;
    }

    .msf-card {
        padding: 35px 30px;
    }

    .vehicle-card {
        flex-wrap: wrap;
        gap: 15px;
    }

    .vehicle-price-col {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .booking-sidebar {
        position: static;
        margin-top: 30px;
    }

    .msf-steps {
        gap: 30px;
    }

    .msf-step-label {
        font-size: 9px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 767px) {
    .msf-wrapper {
        padding: 40px 0 60px;
    }

    .msf-progress-track {
        width: 75%;
    }

    .msf-steps {
        gap: 15px;
    }

    .msf-step-icon {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .msf-step-label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .msf-card {
        padding: 28px 22px;
    }

    .msf-progress {
        margin-bottom: 40px;
    }

    .trip-type-selector {
        flex-direction: column;
        border-radius: 20px;
    }

    .trip-type-btn {
        border-radius: 15px;
    }

    .vehicle-card {
        padding: 20px;
    }

    .vehicle-thumb-placeholder {
        width: 80px;
        height: 55px;
    }

    .extras-grid {
        grid-template-columns: 1fr 1fr;
    }

    .msf-nav {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .msf-btn-prev,
    .msf-btn-next,
    .msf-btn-submit {
        width: 100%;
        justify-content: center;
    }

    .msf-btn-prev.hidden {
        display: none;
    }

    .price-total-amount {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }

    .msf-step-label {
        display: none;
    }

    .msf-steps {
        gap: 10px;
    }
}