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

$page_title       = 'Terms of Service · A Believers EMS Houston';
$page_description = 'Terms governing the use of A Believers EMS LLC website and transport services.';
$page_breadcrumb  = [['Home', 'index.php'], ['Terms of Service', null]];

layout('head', compact('page_title', 'page_description', 'page_breadcrumb'));
layout('header');
?>
<main id="main">
    <header class="page-header">
        <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>Terms</span>
            </nav>
            <h1 class="js-reveal">Terms of <em class="display">Service</em></h1>
            <p class="js-reveal-fade">The terms governing use of this website and our transport services.</p>
        </div>
    </header>

    <section class="section">
        <div class="container container-md">
            <p style="color:var(--fg-muted);font-size:var(--fs-sm);">Last updated: <?= date('F Y') ?></p>

            <h2>Non-emergency service</h2>
            <div class="answer-block">
                A Believers EMS LLC provides non-emergency medical transport only. For any life-threatening emergency, call 911 immediately. We are not a substitute for 911 dispatch.
            </div>

            <h2>Scheduling and confirmation</h2>
            <p>Transport requests are confirmed by phone after our team reviews the patient details, route and insurance. A confirmed time window is provided at booking. Same-day requests are accommodated when possible and prioritized by clinical need and route.</p>

            <h2>Cancellations</h2>
            <p>Same-day cancellations are accepted by phone. Recurring schedules (dialysis, ongoing treatment) can be paused or updated by calling the office. We do not bill for cancelled trips except where a long-distance route incurred booked time.</p>

            <h2>Billing and insurance</h2>
            <p>A Believers EMS LLC is enrolled with Medicare, Texas Medicaid and most major private insurance carriers. Self-pay rates are quoted in writing before transport. We never bill before service is performed.</p>

            <h2>Limitation of liability</h2>
            <p>Our crews follow Texas DSHS protocols and standard EMS practice. We carry full commercial and professional liability insurance. Claims related to transport are handled under Texas law.</p>

            <h2>Website use</h2>
            <p>This website is provided as-is for informational and scheduling purposes. We strive for accuracy but reserve the right to update content. The website is not medical advice.</p>

            <h2>Contact</h2>
            <p>Questions? Call <a href="tel:<?= e(CONTACT_PHONE_RAW) ?>"><?= e(CONTACT_PHONE) ?></a> or email <a href="mailto:<?= e(CONTACT_EMAIL) ?>"><?= e(CONTACT_EMAIL) ?></a>.</p>
        </div>
    </section>
    <?php module('sections/final-cta.php'); ?>
</main>
<?php
layout('footer');
layout('scripts');
