Files
carmanagement/docs/CAR_BOOKING_PROCESS_IMPROVEMENT_PLAN.md
T
2026-06-11 15:35:25 -04:00

5.4 KiB

Car Booking Process Revision and Improvement Plan

Problem

The current renter booking process is too heavy too early. It asks for identity documents, full address, and detailed license data before the renter has even submitted a reservation request. That creates unnecessary friction, lowers conversion, and makes the flow feel like paperwork instead of booking.

Revision Applied

The booking form has been simplified into a low-friction request flow:

  1. Trip details first: pick-up location, drop-off choice, pick-up date, return date, and estimated total.
  2. Contact details second: first name, last name, email, phone, and optional notes.
  3. Driver details moved into an optional collapsible section.
  4. Submission copy changed from a formal “reservation request” flow to a faster “request this car in 1 minute” flow.
  5. Required validation reduced to only what is necessary to start the booking conversation: dates, name, email, phone, and required locations.
  6. Optional driver fields are still supported and sent to the same backend if the renter chooses to provide them.
  7. The existing backend contract is preserved because those identity and license fields are already optional in the public reservation schema.

Why This Is Better

The old flow forced renters to provide high-trust personal data before they had enough confidence that the booking was worth completing. That is backwards. The revised flow asks only for the information needed to check availability and contact the renter. Driver documents can be collected after the company confirms availability, pricing, and intent.

This reduces cognitive load, reduces privacy anxiety, and makes mobile completion more realistic. Yes, apparently people abandon forms when confronted with a small government census inside a car card. Shocking.

Implementation Plan

Phase 1: Frontend Simplification

Replace the current booking form with the revised version in:

apps/marketplace/src/components/BookingForm.tsx

Acceptance criteria:

  • The visible default form fits into three clear sections: trip details, contact details, optional driver details.
  • Driver identity and license fields are hidden by default.
  • Required fields are only trip dates, renter name, email, phone, and required locations.
  • Estimated total still updates when valid dates are entered.
  • Existing helper behavior for total days, return location, and optional text normalization remains intact.

Phase 2: Availability Confidence

Add a lightweight availability check before or during submission.

Recommended behavior:

  • When dates are selected, call an availability endpoint for the selected vehicle and date range.
  • If unavailable, show the next available date before the renter fills contact details.
  • If available, show a small “Likely available” message, without overpromising final confirmation.

Backend candidate:

  • Add or expose GET /marketplace/:slug/vehicles/:id/availability?startDate=&endDate=.
  • Reuse the existing getVehicleAvailabilitySummary service instead of inventing yet another inconsistent truth source, because apparently systems enjoy lying to themselves.

Phase 3: Booking Status Transparency

After submission, show exactly what happens next.

Suggested post-submit states:

  • Request sent.
  • Company confirms availability.
  • Renter provides documents if required.
  • Payment/deposit is completed.
  • Booking confirmed.

Acceptance criteria:

  • The renter understands that the first submission is a request, not a guaranteed reservation.
  • Staff can see incomplete document status inside the dashboard.
  • Reminder notifications are triggered if documents or payment are missing.

Phase 4: Save Renter Profile

For logged-in renters, prefill known data.

Recommended behavior:

  • Prefill name, email, and phone from the renter profile.
  • Let renters save driver details to their account after submitting once.
  • Never require repeated entry of license and identity fields for returning renters unless expired or missing.

Phase 5: Measure the Flow

Track funnel metrics so the team stops guessing, a radical concept.

Recommended events:

  • booking_form_viewed
  • trip_dates_selected
  • contact_details_started
  • driver_details_expanded
  • booking_request_submitted
  • booking_request_failed
  • booking_request_success

Primary KPIs:

  • Form completion rate.
  • Time to submit.
  • Drop-off rate before contact details.
  • Drop-off rate after driver details expansion.
  • Request-to-confirmation conversion.

Future UX Improvements

  • Add date and time selection, not just dates, because rental handoff depends on time.
  • Add promo code validation inside the vehicle page, not only search.
  • Add a sticky mobile bottom bar with price estimate and submit button.
  • Add a progress indicator: Trip → Contact → Optional documents.
  • Add WhatsApp fallback after successful submission for companies that rely on chat.
  • Support document upload after confirmation rather than typing document numbers into a tiny form.

Risk Notes

  • Do not remove backend support for driver fields. Some companies may need them for compliance or faster approvals.
  • Do not make the first request feel like a guaranteed booking unless inventory locking and payment are implemented.
  • Do not collect sensitive identity data unless there is a clear business reason and proper privacy handling.
  • Do not bury the total price. Price uncertainty kills trust faster than bad button colors, though humans keep trying both.