@extends('layouts.app') @section('content') {{-- FAQ PAGE - Dark Theme with Accordion Matching the design concept with dark background and orange accents --}}
{{-- BACKGROUND EFFECTS --}}
{{-- Abstract Background Shapes --}}
{{-- Navigation Pill --}}
{{-- MAIN CONTENT --}}
{{-- FAQ Accordion Section --}}

FAQs

Answers to common questions about booking, payments, pickup, and returns. If you still need help, use the help button below.

{{-- Accordion wrapper --}}
@php $faqs = [ ['q' => 'How to book a car for rental?', 'a' => '

These are following steps you can follow:

  1. Complete your information and wait for approval
  2. Navigate to "BOOK" tab
  3. Choose your car rental details
  4. Choose your car and make a payment
'], ['q' => 'When will my deposit be returned ?', 'a' => '

Your deposit will be returned within 3-5 business days after vehicle return and inspection. Deductions for damages will be applied if necessary.

'], ['q' => 'Can I rent with a P license?', 'a' => '

Yes, P license holders may rent. Ensure the license is valid and you meet minimum experience and insurance requirements.

'], ['q' => 'Can I pickup the car outside of UTM?', 'a' => '

Pickup is primarily at UTM Student Mall. Alternative pickup locations can be arranged for an extra fee.

'], ['q' => 'Can I pickup the car at night?', 'a' => '

Night pickups are possible with prior arrangement; additional charges may apply.

For pickups after 6:00 PM, please contact us at least 24 hours in advance. An additional service fee may apply for after-hours pickups.

'] ]; @endphp @foreach($faqs as $i => $item)
{!! $item['a'] !!}
@endforeach
{{-- JavaScript for Accordion with Smooth Transitions --}} {{-- Styles --}} @endsection