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

$page_title       = 'Service Stories | A Believers EMS Houston — Real Transport, Real Families';
$page_description = 'Anonymized stories of the work A Believers EMS does every week — recurring dialysis transport, stretcher visits to lab, and dignified hospital discharge home. Houston, since 2006.';
$page_keywords    = 'A Believers EMS stories, ambulance transport stories Houston, dialysis transport stories, hospital discharge transport Houston, real ambulance reviews';
$page_og_image    = SITE_URL . '/assets/img/case-studies/case-1.jpg';
$page_breadcrumb  = [['Home', 'index.php'], ['Service Stories', null]];

layout('head', compact('page_title', 'page_description', 'page_keywords', 'page_og_image', 'page_breadcrumb'));
layout('header');
?>
<main id="main">
    <header class="page-header">
        <div class="page-header-bg">
            <img src="<?= e(img('case-studies/case-1.jpg')) ?>" alt="A Believers EMS service stories" 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>Service Stories</span>
            </nav>
            <h1 class="js-reveal">Service <em class="display">Stories</em></h1>
            <p class="js-reveal-fade">
                The work that fills our week. These three stories are paraphrased from verified
                customer reviews of A Believers EMS LLC and anonymized for privacy. They are the
                kind of trip we run dozens of times each week, every week, since 2006.
            </p>
        </div>
    </header>

    <section class="section">
        <div class="container">
            <div class="case-grid">
                <a href="pages/case-studies/case-1.php" class="case-card js-reveal">
                    <div class="case-card-media">
                        <img src="<?= e(img('case-studies/case-1.jpg')) ?>" alt="A mother's lab visits — A Believers EMS Houston">
                    </div>
                    <div class="case-card-body">
                        <span class="case-card-tag">Recurring · Stretcher</span>
                        <h3>A daughter, a mother, and a regular Tuesday.</h3>
                        <p>Stretcher-bound lab visits, standing schedule, the same crew every week. The work that fills our calendar.</p>
                        <span class="case-card-foot">
                            Read service story
                            <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M5 12h14M13 5l7 7-7 7"/></svg>
                        </span>
                    </div>
                </a>

                <a href="pages/case-studies/case-2.php" class="case-card js-reveal">
                    <div class="case-card-media">
                        <img src="<?= e(img('case-studies/case-2.jpg')) ?>" alt="Dialysis transport schedule — A Believers EMS Houston">
                    </div>
                    <div class="case-card-body">
                        <span class="case-card-tag">Dialysis · Standing Schedule</span>
                        <h3>Three times a week. Two years. One family.</h3>
                        <p>The discipline of recurring dialysis transport — the same crew, the same arrival window, for as long as it takes.</p>
                        <span class="case-card-foot">
                            Read service story
                            <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M5 12h14M13 5l7 7-7 7"/></svg>
                        </span>
                    </div>
                </a>

                <a href="pages/case-studies/case-3.php" class="case-card js-reveal">
                    <div class="case-card-media">
                        <img src="<?= e(img('case-studies/case-3.jpg')) ?>" alt="Hospital discharge home — A Believers EMS Houston">
                    </div>
                    <div class="case-card-body">
                        <span class="case-card-tag">Hospital Discharge</span>
                        <h3>The discharge home that gave a grandmother her dignity back.</h3>
                        <p>Short ride, long meaning. The moment a family feels most alone — and the moment we are built for.</p>
                        <span class="case-card-foot">
                            Read service story
                            <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M5 12h14M13 5l7 7-7 7"/></svg>
                        </span>
                    </div>
                </a>
            </div>
        </div>
    </section>

    <?php page_section('case-studies/case-1.php'); ?>
    <?php page_section('case-studies/case-2.php'); ?>
    <?php page_section('case-studies/case-3.php'); ?>
    <?php module('sections/final-cta.php'); ?>
</main>
<?php
layout('footer');
layout('scripts');
