@extends('layouts.inner') @section('title', $service['title']) @section('description', $service['summary']) @section('content')
{{-- ============ 1. HERO — "The Cargo Journey" ============ --}}
All Services Service {{ $service['number'] }} / {{ str_pad($total, 2, '0', STR_PAD_LEFT) }}

{{ $service['title'] }}

{{ $service['summary'] }}

Get a Quote {{ $service['eyebrow'] }}
{{ $service['title'] }}
{{-- ============ 2. SERVICE OVERVIEW ============ --}}
A1 Movex Expertise

Built around your cargo,
not convention.

@foreach($service['paragraphs'] as $paragraph)

{{ $paragraph }}

@endforeach
{{-- ============ 3. CAPABILITIES ============ --}}
Our Capabilities

Every detail,
accounted for.

@foreach($service['capabilities'] as $index => $capability) {{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }} {{ $capability['title'] }} {{ $capability['desc'] }} @endforeach
{{-- ============ 4. HOW IT WORKS ============ --}} {{-- Same Shipment Journey sticky scroll-story as the homepage — identical markup/classes (data-driven from $process here instead of hardcoded), so the existing initHowItWorks() module (already wired globally in app.js) picks it up automatically. --}} @php $journeyImageAlts = [ 'Logistics consultant discussing shipment details with a client at a planning desk', 'Freight planner reviewing route options and a quotation on a logistics dashboard', 'Warehouse team loading cargo into a container during freight execution', 'Delivery truck arrived at destination with cargo ready for customer handover', ]; @endphp
Start a Shipment
    @foreach($process as $index => $step)
  1. {{ $step['label'] }}

    {{ $step['title'] }}

    {{ $step['desc'] }}

  2. @endforeach
Start your shipment
{{-- ============ 6. FAQ ============ --}}
Frequently Asked

Questions,
answered.

@foreach($service['faqs'] as $index => $faq) @php $faqId = $slug . '-faq-' . $index; @endphp

{{ $faq['a'] }}

@endforeach
{{-- ============ FINAL CTA ============ --}} {{-- Reuses the site-wide "Ready to Ship?" CTA rendered automatically by layouts/inner.blade.php --}}
@endsection