<?php
define('ABEMS_ACCESS', true);
require_once __DIR__ . '/config/config.php';

$page_title       = 'Services | Non-Emergency Medical Transport Houston · A Believers EMS';
$page_description = 'Stretcher, wheelchair, BLS, facility transfers and wait-return service across Houston, TX. Medicare and Medicaid accepted. Standing schedules for dialysis. Call (281) 587-8700.';
$page_keywords    = 'non-emergency medical transport Houston, stretcher transport, wheelchair transport Houston, BLS ambulance, dialysis transport Houston, hospital discharge transport, facility transfer ambulance, Medicaid transport Houston';
$page_og_image    = SITE_URL . '/assets/img/services/bls-transport.jpg';
$page_breadcrumb  = [['Home', 'index.php'], ['Services', null]];
$page_faqs = [
    ['q' => 'How is non-emergency BLS transport different from a 911 ambulance?', 'a' => 'BLS (Basic Life Support) is for medically stable patients who need professional transport with basic monitoring — dialysis, lab visits, hospital discharge, etc. 911 ambulances handle life-threatening emergencies. A Believers EMS provides BLS-level non-emergency transport.'],
    ['q' => 'Do you offer recurring dialysis transport schedules?', 'a' => 'Yes. A Believers EMS runs standing schedules for dialysis patients (typically 3 times per week) with the same crew and the same arrival window for predictability.'],
    ['q' => 'Can you handle hospital discharge home?', 'a' => 'Yes. We coordinate directly with discharge planners and case managers for hospital-to-home, hospital-to-rehab, and facility-to-home transport across the Greater Houston metro.'],
    ['q' => 'Do you accept Medicaid and Medicare?', 'a' => 'Yes. A Believers EMS LLC is a Medicare and Texas Medicaid (#' . CRED_TX_MEDICAID . ') enrolled provider, and we work with most major private insurance plans.'],
];

layout('head', compact('page_title', 'page_description', 'page_keywords', 'page_og_image', 'page_breadcrumb', 'page_faqs'));
layout('header');
?>
<main id="main">
    <header class="page-header">
        <div class="page-header-bg">
            <img src="<?= e(img('hero/hero-paramedic-action.jpg')) ?>" alt="Non-emergency medical transport Houston" data-parallax="6" data-parallax-trigger>
        </div>
        <div class="container">
            <nav class="breadcrumb" aria-label="Breadcrumb">
                <a href="<?= e(SITE_URL) ?>/">Home</a>
                <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 18l6-6-6-6"/></svg>
                <span>Services</span>
            </nav>
            <h1 class="js-reveal">Non-emergency transport, <em class="display">family-handled.</em></h1>
            <p class="js-reveal-fade">
                Stretcher, wheelchair, BLS and facility transfers across the Greater Houston metro.
                Medicare, Medicaid and private insurance. Same crew. Same care. Two decades of it.
            </p>
        </div>
    </header>

    <?php page_section('services/emergency.php'); ?>
    <?php page_section('services/bls.php'); ?>
    <?php page_section('services/transfers.php'); ?>
    <?php page_section('services/special-needs.php'); ?>
    <?php page_section('services/long-distance.php'); ?>
    <?php module('sections/service-area.php'); ?>
    <?php module('sections/faq.php'); ?>
    <?php module('sections/final-cta.php'); ?>
</main>
<?php
layout('footer');
layout('scripts');
