// Or load as standalone popup via JS $csFile = __DIR__ . '/limo-booking-plugin/data/company_settings.json'; $cs = file_exists($csFile) ? (json_decode(file_get_contents($csFile), true) ?? []) : []; $googleKey = $cs['google_api_key'] ?? ''; $psFile = __DIR__ . '/limo-booking-plugin/data/pricing_settings.json'; $ps = file_exists($psFile) ? (json_decode(file_get_contents($psFile), true) ?? []) : []; $vFile = __DIR__ . '/limo-booking-plugin/data/vehicles.json'; $vehicles = file_exists($vFile) ? (json_decode(file_get_contents($vFile), true) ?? []) : []; $activeVehicles = array_values(array_filter($vehicles, fn($v) => !array_key_exists('active', $v) || !empty($v['active']))); ?>