<?php
$standalone = false;
if (!defined('ABEMS_ACCESS')) {
    require_once __DIR__ . '/../../config/config.php';
    $standalone = abems_standalone_begin([
        'config_path' => __DIR__ . '/../../config/config.php',
        'title'       => 'Our History | A Believers EMS',
        'description' => 'Fourteen years of A Believers EMS from a Houston garage to a trusted private ambulance service.',
        'header_img'  => 'about/about-history.jpg',
        'heading'     => 'Our <em class="display">History</em>',
        'intro'       => 'A timeline of the moments that shaped A Believers EMS from a single ambulance to today.',
        'breadcrumb'  => [
            ['About', 'about.php'],
            ['History', null]
        ],
    ]);
}
$milestones = [
    ['year' => '2006',     'title' => 'NPI enumerated',           'body' => 'Rodney Baker registers A Believers EMS LLC with CMS — National Provider Identifier #' . CRED_NPI . ' issued October 24, 2006. The Texas DSHS ambulance license #' . CRED_TX_LICENSE . ' follows.'],
    ['year' => '2008',     'title' => 'First transports',          'body' => 'Operations begin in earnest from the Bammel North Houston headquarters. Texas Medicaid enrollment confirmed (#' . CRED_TX_MEDICAID . '). The first Houston families and skilled nursing facilities become repeat clients.'],
    ['year' => '2010s',    'title' => 'Family business takes shape', 'body' => 'Rodney\'s son Rod joins the operation. The two run dispatch, billing and the rigs as a true family business — the model the company has kept ever since.'],
    ['year' => 'Recent',   'title' => 'Recognition',               'body' => 'Featured on MyBestHouston\'s "20 Best Private Ambulance Services in Houston" list. 5-star aggregate rating across Yelp and YellowPages from patients, families and discharge teams.'],
    ['year' => '2026',     'title' => 'Permit renewed',            'body' => 'Houston Health Department ambulance provider permit reaffirmed through March 2026. Still Black-owned, still family-run, still answering the phone ourselves.'],
    ['year' => date('Y'),  'title' => 'Today',                     'body' => 'Two decades into the work, A Believers EMS is the Houston transport service patients ask for by name. We move dialysis patients, lab visits, hospital discharges and inter-facility transfers every week across the Greater Houston metro.'],
];
?>
<section class="section bg-cream">
    <div class="container">
        <div class="section-head js-reveal">
            <span class="eyebrow">Our History</span>
            <h2>Fourteen years. <em class="display">One mission.</em></h2>
            <p class="lead" style="margin-inline:auto;">
                A timeline of the moments that shaped us — from one ambulance in a Houston garage
                to one of Texas's most trusted private EMS providers.
            </p>
        </div>

        <div class="js-stagger" style="max-width:880px;margin:0 auto;display:grid;gap:var(--s-4);">
            <?php foreach ($milestones as $m): ?>
                <div style="display:grid;grid-template-columns:120px 1fr;gap:var(--s-8);padding:var(--s-6) var(--s-6);background:var(--c-white);border:1px solid var(--line);border-radius:var(--radius-lg);">
                    <span style="font-family:var(--ff-display);font-size:var(--fs-3xl);color:var(--accent);line-height:1;"><?= e($m['year']) ?></span>
                    <div>
                        <h5 style="margin-bottom:var(--s-2);font-family:var(--ff-display);font-size:var(--fs-xl);"><?= e($m['title']) ?></h5>
                        <p class="text-soft" style="margin:0;"><?= e($m['body']) ?></p>
                    </div>
                </div>
            <?php endforeach; ?>
        </div>
    </div>
</section>
<?php abems_standalone_end($standalone); ?>
