<?php
require_once __DIR__ . '/config.php';
$villes = include __DIR__ . '/data/villes.php';
$services = include __DIR__ . '/data/services.php';
$page_title = 'Toutes nos zones d\'intervention — SOS Toiture Belgique';
$page_description = 'Couvreur disponible dans tout le Brabant Wallon, Hainaut et Bruxelles. Trouvez votre ville.';
$canonical = canonical_url('/toutes-nos-villes.php');
include __DIR__ . '/header.php';
?>
<section style="background:var(--ardoise);color:#fff;padding:50px 20px 40px;border-bottom:4px solid var(--orange);text-align:center">
  <h1 style="font-size:2rem;font-weight:800;margin-bottom:8px">Zones d'intervention</h1>
  <p style="color:rgba(255,255,255,.75)">Couvreur disponible dans <?= count($villes) ?>+ villes en Belgique.</p>
</section>
<section class="section"><div class="container">
  <?php foreach ($services as $s): ?>
  <div style="margin-bottom:28px">
    <h2 style="font-size:1.1rem;font-weight:700;margin-bottom:12px;color:var(--ardoise)"><?= e($s['name']) ?> — par ville</h2>
    <div class="villes-grid">
      <?php foreach ($villes as $v): ?>
      <a href="/<?= e($s['slug']) ?>-<?= slugify($v) ?>" class="ville-pill">📍 <?= e($v) ?></a>
      <?php endforeach; ?>
    </div>
  </div>
  <?php endforeach; ?>
</div></section>
<?php include __DIR__ . '/footer.php'; ?>
