@extends('layouts.app') @php use App\Helpers\SeoHelper; $locale = app()->getLocale(); // Helper function to generate localized routes (English has no prefix) $localizedRoute = function($routeName, $params = []) use ($locale) { return SeoHelper::localizedRoute($routeName, $params, $locale); }; @endphp @section('title', $service['name'] . ' - ' . __('messages.meta.brand_short')) @section('description', $service['description']) @section('content')
{{ $service['category'] }}

{{ $service['name'] }}

{{ $service['tagline'] }}

{{ $service['description'] }}

@if($enhancedContent) @if(!empty($enhancedContent['benefits']))

{{ __('messages.industry_service.why_choose', ['service' => $service['name']]) }}

{{ __('messages.industry_service.tailored_solutions') }}

@foreach($enhancedContent['benefits'] as $benefit)

{{ $benefit['title'] }}

{{ $benefit['description'] }}

@endforeach
@endif @if(!empty($enhancedContent['features']))

{{ __('messages.service_industry.whats_included') }}

{{ __('messages.industry_service.everything_need') }}

@foreach($enhancedContent['features'] as $feature)

{{ $feature['name'] }}

{{ $feature['description'] }}

@endforeach
@endif @if(!empty($enhancedContent['process'])) @php $industryProcessIcons = [ '', '', '', '', '', ]; @endphp

{{ __('messages.services.our_process') }}

{{ __('messages.industry_service.proven_approach', ['category' => $service['category']]) }}

@foreach($enhancedContent['process'] as $i => $step)

{{ $step['title'] }}

{{ $step['description'] }}

@endforeach
@endif @if(!empty($enhancedContent['pricing']))

{{ __('messages.service_industry.pricing_title') }}

{{ __('messages.service_industry.pricing_subtitle') }}

@foreach($enhancedContent['pricing'] as $package)
@if($package['popular'])
{{ __('messages.service_industry.most_popular') }}
@endif

{{ $package['name'] }}

{{ $package['description'] }}

{{ $package['price'] }} @if(isset($package['period'])) /{{ $package['period'] }} @endif
    @foreach($package['features'] as $feature)
  • {{ $feature }}
  • @endforeach
{{ __('messages.cta.get_started') }}
@endforeach
@endif @if(!empty($enhancedContent['faq']))

{{ __('messages.faq.title') }}

{{ __('messages.industry_service.common_questions', ['service' => $service['name']]) }}

@foreach($enhancedContent['faq'] as $faq)
{{ $faq['question'] }}
{{ $faq['answer'] }}
@endforeach
@endif @else

{{ __('messages.industry_service.specialized_solutions') }}

{{ $service['description'] }} {{ __('messages.industry_service.understand_challenges') }}

@endif @if(isset($projects) && count($projects) > 0)

{{ __('messages.industry_service.recent_projects') }}

{{ __('messages.industry_service.see_created') }}

@endif @if(isset($testimonials) && count($testimonials) > 0)

{{ __('messages.testimonials.title') }}

@foreach($testimonials as $testimonial)
@for($i = 0; $i < 5; $i++) @endfor

"{{ $testimonial['quote'] ?? $testimonial['text'] ?? '' }}"

{{ $testimonial['author'] ?? $testimonial['name'] ?? '' }}

{{ $testimonial['role'] ?? $testimonial['position'] ?? '' }}

@if(isset($testimonial['company']))

{{ $testimonial['company'] }}

@endif
@endforeach
@endif

{{ __('messages.industry_service.cross_sell_website_title') }}

{{ __('messages.industry_service.cross_sell_website') }}

{{ __('messages.cta.ready_transform') }}

{{ __('messages.industry_service.discuss_goals', ['service' => $service['name']]) }}

@include('components.explore-site-section', ['hideServicesSlider' => true]) @endsection