getCustomPaddingStyle()) style="{{ $this->getCustomPaddingStyle() }}" @endif> {{-- Decorative Background Elements --}}
{{-- Section Header --}}
{{ $section['badge'] }}

{{ $section['title'] }}

{{ $section['subtitle'] }}

{{-- Services Grid --}}
@foreach ($items as $index => $item)
{{-- Card Glow Effect --}}
{{-- Card Content --}}
{{-- Icon --}}
{{-- Content --}}

{{ $item['title'] ?? '' }}

{{ $item['description'] ?? '' }}

{{-- Price Tag --}} @if (!empty($item['price']))
{{ $item['price'] }}
@endif {{-- Features --}} @if (!empty($item['features']))
    @foreach ($item['features'] as $feature)
  • {{-- Support both string format and object format from CMS --}} {{ is_array($feature) ? $feature['text'] ?? '' : $feature }}
  • @endforeach
@endif {{-- Action Button --}} @if (!empty($item['button_text']) && !empty($item['button_url'])) {{ $item['button_text'] }} @endif
@endforeach