"use client" import Navbar from "@/components/navbar" import Footer from "@/components/footer" import PageReveal from "@/components/page-reveal" import { Button } from "@/components/ui/button" import { Card } from "@/components/ui/card" import { ArrowLeft, CheckCircle2, Calendar, Users, Bus, Briefcase, Heart, Phone, Sparkles, Shield, Clock, MapPin } from "lucide-react" import Link from "next/link" import Image from "next/image" import { useLanguage } from "@/lib/language-context" export default function OtherTransportPage() { const { t } = useLanguage() const serviceIcons = [ , , , ] const serviceImages = [ "/images/service-cards/ford-transit.jpg", "/images/service-cards/merci-eskuvo.png", "/images/service-cards/ford-tourneo.jpg", "/images/service-cards/opel-vivaro.jpg" ] return ( {/* Atmosphere */} {/* Hero */} {t.otherTransportPage.back} {t.otherTransportPage.title} {t.otherTransportPage.titleAccent} {t.otherTransportPage.heroDescription} {/* Left column */} {/* Main Introduction Card */} {t.otherTransportPage.badge} {t.otherTransportPage.titlePart1} {t.otherTransportPage.titleAccentPart} {t.otherTransportPage.mainContent} {/* Service Grid - Ensuring relative position for fill images */} {t.otherTransportPage.services.map((service: any, idx: number) => ( {serviceIcons[idx]} {service.title} {service.desc} ))} {/* Right column */} {/* Capacity Card */} {t.otherTransportPage.capacityTitle} {t.otherTransportPage.capacityDesc} {t.otherTransportPage.capacityList.map((item: string, idx: number) => ( {item} ))} {/* Contact Card */} {t.otherTransportPage.contactSubtitle} {t.otherTransportPage.cta} {t.otherTransportPage.cta} {t.otherTransportPage.phoneAlt} Hotline 24/7 {t.common.phone} {/* Quality Badge */} {t.otherTransportPage.qualityTitle} {t.otherTransportPage.qualityDesc} ) }
{t.otherTransportPage.heroDescription}
{t.otherTransportPage.mainContent}
{service.desc}
{t.otherTransportPage.capacityDesc}
{t.otherTransportPage.contactSubtitle}
Hotline 24/7
{t.common.phone}
{t.otherTransportPage.qualityDesc}