{{-- resources/views/livewire/trips/trip-type-selection.blade.php --}}

How would you like to plan your trip?

Choose the planning style that best fits your preferences and travel experience.

@if(config('app.debug'))
Debug: Selected: {{ $selectedTripType ?? 'none' }} | Session Test: {{ $sessionTest ?? 'not run' }} | Session ID: {{ session()->getId() }}
@endif
@csrf
@if(file_exists(public_path('images/image15.jpg'))) Pre-planned packages @endif
Pre-planned Packages
@if($selectedTripType === 'pre_planned')
@endif

Pre-planned Packages

Choose from expertly curated trip packages with pre-arranged activities, accommodations, and itineraries.

Expert-curated experiences
All-inclusive pricing
Hassle-free planning

Perfect for: First-time travelers, busy schedules, or stress-free experiences

@csrf
@if(file_exists(public_path('images/image23.jpg'))) Custom planning @endif
Custom Planning
@if($selectedTripType === 'self_planned')
@endif

Custom Planning

Build your own unique adventure from scratch with complete control over every detail of your journey.

Complete creative control
Flexible budget options
Personalized experiences

Perfect for: First-time travelers, busy schedules, or stress-free experiences

@csrf
@if(file_exists(public_path('images/image23.jpg'))) Custom planning @endif
Custom Planning
@if($selectedTripType === 'self_planned')
@endif

Custom Planning

Build your own unique adventure from scratch with complete control over every detail of your journey.

Complete creative control
Flexible budget options
Personalized experiences

Perfect for: Experienced travelers, unique preferences, or maximum flexibility

@if($selectedTripType)
{{ ucfirst(str_replace('_', '-', $selectedTripType)) }} trip selected
@endif @if($isAutoAdvancing)
Proceeding to next step...
@endif @if (session('trip_type_selected'))

{{ session('trip_type_selected') }}

@endif @if(config('app.debug')) @endif