/* Hayes Global Mobility — UI kit: Visa Services page */ (function () { const NS = window.HayesGlobalMobilityDesignSystem_489ece; const { SectionHeading, Button, Card, Badge } = NS; const I = (n, s = 22) => ; const wrap = { maxWidth: 'var(--container-max)', margin: '0 auto', padding: '0 40px' }; function VisaServices({ onNavigate }) { const types = [ ['briefcase', 'Work Visa', 'For employment abroad', ['Skilled worker & sponsorship routes', 'Entrepreneur & start-up visas', 'Permit renewals & extensions']], ['graduation-cap', 'Student Visa', 'Study overseas', ['University & exchange programs', 'Tuition & financial documentation', 'Post-study work pathways']], ['building-2', 'Business / Investor Visa', 'Entrepreneur & investor visas', ['Investor & innovator visas', 'Multiple-entry business travel', 'Corporate relocation support']], ['plane', 'Tourist Visa', 'Travel & tourism', ['Short-stay & visitor visas', 'Itinerary & documentation support', 'Multiple-entry travel options']], ['users', 'Family / Dependent Visa', 'Join your loved ones', ['Spouse & partner visas', 'Dependent child applications', 'Family reunification support']], ['home', 'Permanent Residency', 'Settle abroad', ['Long-term settlement routes', 'Points-based & sponsored PR', 'Citizenship pathway guidance']], ['plane-takeoff', 'Transit Visa', 'Quick stopover visas', ['Airport & port transit visas', 'Fast turnaround processing', 'Connecting-flight compliance']], ['heart', 'Humanitarian Visa', 'Refugee & asylum', ['Refugee & asylum support', 'Humanitarian protection routes', 'Compassionate & emergency cases']], ]; const steps = [ ['Assess', 'We review your profile and recommend the right visa route.'], ['Prepare', 'Our specialists compile and check every document for compliance.'], ['Submit', 'We file your application and manage all correspondence.'], ['Arrive', 'Approval, travel guidance, and on-the-ground onboarding.'], ]; return (
{React.createElement(window.HayesPageHeader, { eyebrow: 'Visa Services', title: 'Fast, Reliable Visa Assistance', sub: 'Securing the right visa is the first step toward your global journey. We ensure compliance, accuracy, and speed — so you can focus on your future.', })}
{types.map(([ic, t, sub, items]) => (
{I(ic, 24)}

{t}

{sub}
    {items.map(p => (
  • {p}
  • ))}
))}
{steps.map(([t, d], i) => (
{i + 1}

{t}

{d}

))}
{React.createElement(window.HayesCTABand, { title: 'Apply today and move forward with confidence.', sub: 'Our visa experts are ready to guide your application end to end.', ctaLabel: 'Apply Today', onCta: () => onNavigate('Apply') })}
); } window.HayesVisa = VisaServices; })();