<?php
// Generate dynamic sitemap.xml
header('Content-Type: application/xml; charset=utf-8');

$baseUrl = (isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http') . '://' . $_SERVER['HTTP_HOST'];

echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n";

// Home page
echo '  <url>' . "\n";
echo '    <loc>' . htmlspecialchars($baseUrl) . '</loc>' . "\n";
echo '    <lastmod>' . date('Y-m-d') . '</lastmod>' . "\n";
echo '    <changefreq>weekly</changefreq>' . "\n";
echo '    <priority>1.0</priority>' . "\n";
echo '  </url>' . "\n";

// Services
echo '  <url>' . "\n";
echo '    <loc>' . htmlspecialchars($baseUrl . '/#services') . '</loc>' . "\n";
echo '    <lastmod>' . date('Y-m-d') . '</lastmod>' . "\n";
echo '    <changefreq>monthly</changefreq>' . "\n";
echo '    <priority>0.8</priority>' . "\n";
echo '  </url>' . "\n";

// Testimonials
echo '  <url>' . "\n";
echo '    <loc>' . htmlspecialchars($baseUrl . '/#testimonials') . '</loc>' . "\n";
echo '    <lastmod>' . date('Y-m-d') . '</lastmod>' . "\n";
echo '    <changefreq>weekly</changefreq>' . "\n";
echo '    <priority>0.8</priority>' . "\n";
echo '  </url>' . "\n";

// Contact
echo '  <url>' . "\n";
echo '    <loc>' . htmlspecialchars($baseUrl . '/#contact') . '</loc>' . "\n";
echo '    <lastmod>' . date('Y-m-d') . '</lastmod>' . "\n";
echo '    <changefreq>monthly</changefreq>' . "\n";
echo '    <priority>0.9</priority>' . "\n";
echo '  </url>' . "\n";

echo '</urlset>' . "\n";
