<?php
$standalone = false;
if (!defined('ABEMS_ACCESS')) {
    require_once __DIR__ . '/../../config/config.php';
    $standalone = abems_standalone_begin([
        'config_path' => __DIR__ . '/../../config/config.php',
        'title'       => 'Non-Emergency BLS Transport | A Believers EMS',
        'description' => 'Basic Life Support transport for scheduled medical appointments in Houston, TX.',
        'header_img'  => 'services/bls-transport.jpg',
        'heading'     => 'Non-Emergency <em class="display">BLS Transport</em>',
        'intro'       => 'Basic Life Support transport for medically stable patients who need professional monitoring during scheduled visits.',
        'breadcrumb'  => [
            ['Services', 'services.php'],
            ['BLS', null]
        ],
    ]);
}
?>
<section class="section bg-cream">
    <div class="container">
        <div class="about-split">
            <div class="js-image-reveal" style="aspect-ratio: 4/5; overflow:hidden; border-radius:var(--radius-lg); order:2;">
                <img src="<?= e(img('services/bls-transport.jpg')) ?>" alt="Non-emergency BLS transport" loading="lazy">
            </div>
            <div class="js-reveal" style="order:1;">
                <span class="eyebrow">Service · Scheduled</span>
                <h2>Non-Emergency BLS Transport</h2>
                <p class="lead">
                    The core of what we do. BLS-level transport for medically stable patients heading to dialysis,
                    oncology, lab visits, post-acute discharge or scheduled outpatient appointments — the trips
                    Houston families have trusted us with since 2006.
                </p>

                <ul class="feature-list">
                    <li>BLS-certified EMT crew on every transport</li>
                    <li>Stretcher-equipped vehicle with basic vitals monitoring</li>
                    <li>Round-trip and wait-and-return service available</li>
                    <li>Direct billing to Medicare, Texas Medicaid (#<?= e(CRED_TX_MEDICAID) ?>) and private insurance</li>
                    <li>Standing-schedule pricing for dialysis 3x/week and other recurring trips</li>
                    <li>One family member rides in the front seat at no charge</li>
                </ul>

                <div class="hero-actions mt-8">
                    <a href="<?= e(SITE_URL) ?>/contact.php" class="btn">Schedule a transport</a>
                    <a href="tel:<?= e(CONTACT_PHONE_RAW) ?>" class="btn btn-secondary">Call <?= e(CONTACT_PHONE) ?></a>
                </div>
            </div>
        </div>
    </div>
</section>
<?php abems_standalone_end($standalone); ?>
