@extends('layouts.main') @section('content')
{{ $contents['hero_badge'] ?? 'CERTIFIED CAR SPECIALISTS' }}

{!! $contents['hero_title'] ?? 'Precision Care for
Your Automotive Legends.' !!}

{{ $contents['hero_description'] ?? 'From high-tech computer diagnostics to complete engine restoration, we provide expert care for modern performance cars and vintage classics.' }}

Our Elite Services

Expert mechanical solutions tailored to your vehicle's specific needs using state-of-the-art diagnostic equipment.

@foreach($featuredServices as $service)

{{ $service->title }}

{{ $service->description }}

Read More
@endforeach

Featured Classics

@foreach($featuredCars as $car)
{{ $car->image_alt ?? ($car->make . ' ' . $car->model) }}

{{ $car->make }} {{ $car->model }}

{{ $car->year }} | {{ $car->type }}

{{ $car->description }}

View Details
@endforeach
@if(isset($latestCars) && $latestCars->count() > 0)

Newly Listed

@foreach($latestCars as $car)
{{ $car->image_alt ?? ($car->make . ' ' . $car->model) }}
Just Listed

{{ $car->make }} {{ $car->model }}

${{ number_format($car->price) }} View Car →
@endforeach
@endif
@endsection