File "facility-management.php"

Full path: /home/zvmcccat/public_html/adn/facility-management.php
File size: 3 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
require_once __DIR__ . '/includes/config.php';

$meta_title = 'Facility Management & Maintenance';
$meta_description = 'Long-term maintenance contracts and operations schedules — 12 to 25+ years with the same clients, keeping fire, power, HVAC and access systems audit-ready.';
$current_page = 'facility';
require __DIR__ . '/includes/header.php';

$page_h1 = 'Facility Management & Maintenance';
$page_lede = 'Maintenance contracts measured in decades, not months.';
require __DIR__ . '/includes/partials/page-hero.php';

$stats = alpha_load_data('stats.php');
?>

<img class="banner-photo-full" src="<?= alpha_asset('assets/img/solutions/electrical-power.jpg') ?>" alt="Electrical panel room maintained by Alpha Design">

<section class="pad facility-block">
    <div class="facility-layout" style="grid-template-columns: 1fr; max-width: 760px; text-align:center;">
        <div>
            <div class="eyebrow" style="color:#EFC9BE;">Ongoing Today</div>
            <div class="facility-stats" style="grid-template-columns: repeat(2, 1fr); margin-top:20px;">
                <?php foreach ($stats['facility'] ?? [] as $stat): ?>
                    <div><strong><?= htmlspecialchars($stat['value'], ENT_QUOTES) ?></strong><span><?= htmlspecialchars($stat['label'], ENT_QUOTES) ?></span></div>
                <?php endforeach; ?>
            </div>
        </div>
    </div>
</section>

<section class="pad">
    <div class="facility-page-body">
        <div class="section-head left">
            <div class="eyebrow">How We Maintain</div>
            <h2>Scheduled operations, not reactive call-outs</h2>
            <div class="rule"></div>
        </div>
        <p>We prioritize regular maintenance to ensure optimal system performance. Our warehousing, transportation facilities and highly-skilled technical teams allow us to supply, install, test and operate our clients' systems seamlessly — then keep them running.</p>
        <p>Our longest-running maintenance relationships are proof of the model: since 1999, Alpha has maintained the <strong>Egyptian Stock Exchange's</strong> time-critical operations across HVAC, Fire-fighting and Alarm, Electrical Power, Access Control, CCTV and Cabling Infrastructure. Since 2005, we've held a long-term contractual agreement with the <strong>General Authority for Investment</strong> covering electromechanical, data cabling infrastructure and low-current systems maintenance across their main campus and branches.</p>
        <p>Typical scope of an Alpha maintenance contract:</p>
        <ul>
            <li>Fire-fighting, suppression, detection &amp; alarm systems</li>
            <li>HVAC systems</li>
            <li>Electrical power — UPS, generators, panels</li>
            <li>Access control &amp; CCTV</li>
            <li>Data &amp; cabling infrastructure</li>
        </ul>
        <div style="margin-top:32px;">
            <a class="btn btn-accent" href="contact.php">Discuss a Maintenance Contract</a>
        </div>
    </div>
</section>

<?php require __DIR__ . '/includes/footer.php'; ?>