@php
$title = $data['title'] ?? "";
$subtitle = $data['subtitle'] ?? "";
$buttonText = $data['button_text'] ?? "";
$buttonUrl = $data['button_url'] ?? '#';
$buttonIcon = $data['button_icon'] ?? 'whatsapp';
$bgColorStart = $data['bg_color_start'] ?? '#1A365D';
$rounded = $data['rounded_corners'] ?? true;
$fullWidth = $data['full_width'] ?? true;
$marginTop = $data['margin_top'] ?? true;
$iconClass = match($buttonIcon) {
'whatsapp' => 'fab fa-whatsapp',
'phone' => 'fas fa-phone',
'arrow' => 'fas fa-arrow-left',
'calendar' => 'fas fa-calendar-check',
default => 'fab fa-whatsapp',
};
@endphp
{{-- High-Fidelity Background Effect --}}
{{ $title }}
{{ $subtitle }}