<?php
/** Hizmet listesi sayfası */

declare(strict_types=1);

require_once __DIR__ . '/includes/functions.php';
require_once __DIR__ . '/includes/icons.php';

$hizmetler = aktif_hizmetler();

$seo = [
    'title' => 'Çilingir Hizmetlerimiz | Menderes Çilingir — Menderes, İzmir',
    'desc'  => 'Menderes\'te kapı açma, kilit değiştirme, oto çilingir, kasa açma, çelik kapı tamiri ve anahtar kopyalama. 7/24 servis, telefonda net fiyat: 0530 234 29 21',
    'schema' => [schema_breadcrumb([['Ana Sayfa', ''], ['Hizmetler', 'hizmetler']])],
];
$aktif = 'hizmetler';

require __DIR__ . '/includes/header.php';
?>

<section class="sayfa-baslik">
    <div class="kapsayici">
        <nav class="breadcrumb" aria-label="Sayfa yolu"><a href="/">Ana Sayfa</a> <span>/</span> Hizmetler</nav>
        <h1>Çilingir Hizmetlerimiz</h1>
        <p>Menderes ve tüm mahallelerinde, kilidi olan her şey için tek numara.</p>
    </div>
</section>

<section class="bolum">
    <div class="kapsayici">
        <div class="hizmet-grid hizmet-grid-detay">
            <?php foreach ($hizmetler as $h): ?>
            <article class="hizmet-kart-genis">
                <?php if ($h['image']): ?>
                <a href="/hizmet/<?= e($h['slug']) ?>" class="hg-gorsel">
                    <?php responsive_img($h['image'], e($h['title']) . ' — Menderes çilingir', '(max-width: 768px) 100vw, 33vw', ['width' => 600, 'height' => 400, 'loading' => 'lazy']); ?>
                </a>
                <?php endif; ?>
                <div class="hg-icerik">
                    <span class="hizmet-ikon"><?= ikon($h['icon']) ?></span>
                    <h2><a href="/hizmet/<?= e($h['slug']) ?>"><?= e($h['title']) ?></a></h2>
                    <p><?= e($h['short_desc']) ?></p>
                    <a href="/hizmet/<?= e($h['slug']) ?>" class="kart-ok">İncele <?= ikon('sag-ok', 'ikon ikon-s') ?></a>
                </div>
            </article>
            <?php endforeach; ?>
        </div>
        <div class="orta-cta">
            <p>Aradığınız hizmet listede yok mu? Arayın, soralım — kilidi olan her işe bakarız.</p>
            <a href="tel:<?= e(telefon_link(setting('phone'))) ?>" class="btn btn-acil"><?= ikon('telefon') ?> Hemen Ara</a>
        </div>
    </div>
</section>

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