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

$page_title       = 'Contact A Believers EMS | Schedule Transport · (281) 587-8700 · Houston';
$page_description = 'Schedule non-emergency medical transport in Houston. Call (281) 587-8700, email abelieversems@sbcglobal.net, or use the form. 13940 Bammel North Houston Rd. Family-run since 2006.';
$page_keywords    = 'A Believers EMS phone, schedule ambulance Houston, non-emergency transport Houston phone, Bammel North Houston ambulance, A Believers EMS address';
$page_og_image    = SITE_URL . '/assets/img/hero/hero-emergency-scene.jpg';
$page_breadcrumb  = [['Home', 'index.php'], ['Contact', 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('hero/hero-emergency-scene.jpg')) ?>" alt="Contact A Believers EMS 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>Contact</span>
            </nav>
            <h1 class="js-reveal">One call. <em class="display">The family on the line.</em></h1>
            <p class="js-reveal-fade">
                Call Rodney or Rod directly to schedule a transport, ask about Medicaid coverage,
                or coordinate a discharge. Email, fax and the form below all reach the same small team.
            </p>
        </div>
    </header>

    <section class="section">
        <div class="container">
            <div class="contact-grid">
                <div class="js-reveal">
                    <span class="eyebrow">Send us a message</span>
                    <h2 style="font-size:var(--fs-2xl);margin-bottom:var(--s-3);">We answer the phone ourselves.</h2>
                    <p class="text-soft" style="margin-bottom:var(--s-8);">
                        For 911-level emergencies please call 911 directly. For non-emergency medical
                        transport scheduling, quotes, or insurance questions, the form below reaches the
                        Bammel North Houston office, where Rodney or Rod will get back to you personally.
                    </p>
                    <?php module('forms/contact-form.php'); ?>
                </div>

                <div class="js-reveal" style="position:sticky;top:120px;">
                    <span class="eyebrow">Get in touch</span>
                    <h3 style="font-size:var(--fs-2xl);margin-bottom:var(--s-6);">Direct lines.</h3>
                    <?php page_section('contact/info.php'); ?>
                </div>
            </div>
        </div>
    </section>

    <section class="section-tight" style="padding-top:0;">
        <div class="container">
            <div class="js-reveal-fade">
                <?php page_section('contact/map.php'); ?>
            </div>
        </div>
    </section>

    <?php module('sections/final-cta.php'); ?>
</main>
<?php
layout('footer');
layout('scripts');
