.booking-card {
            background: #ffffff;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .heading-xl {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .heading-lg {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .booking-progress {
            margin-bottom: 2.5rem;
        }

        .booking-progress__steps {
            display: flex;
            justify-content: space-between;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
        }

        .booking-progress__steps::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--neutral-200);
            z-index: 0;
        }

        .booking-progress__step {
            flex: 1;
            text-align: center;
            font-size: 0.875rem;
            color: var(--neutral-500);
            position: relative;
            z-index: 1;
        }

        .booking-progress__step::before {
            content: attr(data-step);
            display: block;
            width: 32px;
            height: 32px;
            line-height: 32px;
            margin: 0 auto 0.5rem;
            background: #ffffff;
            border: 2px solid var(--neutral-200);
            border-radius: 50%;
            font-weight: 600;
        }

        .booking-progress__step--active::before {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: #ffffff;
        }

        .booking-progress__step--completed::before {
            background: var(--accent-green);
            border-color: var(--accent-green);
            color: #ffffff;
            content: '✓';
        }

        .booking-progress__step--active .booking-progress__label {
            color: var(--primary-blue);
            font-weight: 700;
        }

        .booking-progress__label {
            display: block;
        }

        .notification-banner {
            background: #ffffff;
            border-left: 5px solid var(--accent-red);
            padding: 1.25rem 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 2rem;
            display: none;
        }

        .notification-banner.show {
            display: block;
        }

        .notification-banner__title {
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--accent-red);
        }

        .notification-banner__content ul {
            list-style: none;
            padding: 0;
        }

        .notification-banner__content li {
            margin: 0.25rem 0;
        }

        .notification-banner__content a {
            color: var(--accent-red);
            text-decoration: none;
            font-weight: 600;
        }

        .info-banner {
            background: #eff6ff;
            border-left: 5px solid var(--primary-blue);
            padding: 1.25rem 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .info-banner strong {
            display: block;
            margin-bottom: 0.25rem;
            color: var(--primary-dark);
        }

        .step-container {
            display: none;
        }

        .step-container.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group--error .input,
        .form-group--error .select {
            border-color: var(--accent-red);
        }

        .label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--neutral-900);
        }

        .hint {
            display: block;
            font-size: 0.875rem;
            color: var(--neutral-500);
            margin-top: 0.25rem;
        }

        .error-message {
            display: none;
            color: var(--accent-red);
            font-size: 0.875rem;
            font-weight: 600;
            margin-top: 0.25rem;
        }

        .input,
        .select {
            width: 100%;
            padding: 0.75rem 0.875rem;
            border-radius: 0.5rem;
            border: 2px solid var(--neutral-200);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.2s;
        }

        .input:focus,
        .select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
        }

        .input.error,
        .select.error {
            border-color: var(--accent-red);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .radios {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .radios__item {
            position: relative;
        }

        .radios__input {
            position: absolute;
            opacity: 0;
        }

        .radios__label {
            display: block;
            padding: 1rem 1.25rem;
            padding-left: 3rem;
            border: 2px solid var(--neutral-200);
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .radios__label::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid var(--neutral-300);
            border-radius: 50%;
            background: #ffffff;
        }

        .radios__label::after {
            content: '';
            position: absolute;
            left: 1.375rem;
            top: 50%;
            transform: translateY(-50%) scale(0);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-blue);
            transition: transform 0.2s;
        }

        .radios__input:checked + .radios__label {
            border-color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.02));
        }

        .radios__input:checked + .radios__label::before {
            border-color: var(--primary-blue);
        }

        .radios__input:checked + .radios__label::after {
            transform: translateY(-50%) scale(1);
        }

        .radios__label:hover {
            border-color: var(--primary-blue);
        }

        .button-group {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 0.5rem;
            border: none;
            background: var(--primary-blue);
            color: #ffffff;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            font-family: inherit;
        }

        .button:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
        }

        .button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .button--secondary {
            background: var(--neutral-100);
            color: var(--neutral-900);
        }

        .button--secondary:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .fast-track-box {
            border: 2px solid var(--accent-green);
            border-radius: 1rem;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .fast-track-badge {
            background: var(--accent-green);
            color: #ffffff;
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            margin-left: 0.5rem;
        }

        .center-card {
            border: 2px solid var(--neutral-200);
            border-radius: 0.5rem;
            padding: 1.25rem;
            margin-bottom: 1rem;
            transition: all 0.2s;
        }

        .center-card.selected {
            border-color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.02));
        }

        .center-name {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
            color: var(--neutral-900);
        }

        .center-address {
            color: var(--neutral-600);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .center-price {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.125rem;
        }

        .loading-spinner {
            text-align: center;
            padding: 2rem;
            color: var(--neutral-500);
        }

        .review-section {
            background: var(--neutral-50);
            padding: 1.5rem;
            border-radius: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .review-section h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--neutral-900);
        }

        .review-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--neutral-200);
        }

        .review-item:last-child {
            border-bottom: none;
        }

        .review-label {
            font-weight: 500;
            color: var(--neutral-600);
        }

        .review-value {
            font-weight: 600;
            color: var(--neutral-900);
            text-align: right;
            max-width: 60%;
        }

        .review-edit {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        /* Select2 Styling */
        .select2-container--default .select2-selection--single {
            height: auto;
            border: 2px solid var(--neutral-200);
            border-radius: 0.5rem;
            padding: 0.75rem 0.875rem;
        }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: normal;
            padding: 0;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 100%;
        }

        .select2-container--default.select2-container--open .select2-selection--single {
            border-color: var(--primary-blue);
        }

        @media (max-width: 768px) {
            .booking-card {
                padding: 1.75rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .booking-progress__label {
                font-size: 0.75rem;
            }

            .button-group {
                flex-direction: column;
            }

            .review-item {
                flex-direction: column;
                gap: 0.25rem;
            }

            .review-value {
                text-align: left;
                max-width: 100%;
            }
        }