<?xml version="1.0" encoding="UTF-8"?>
<?php
// Dinamik sitemap.xml oluşturucu - UK version
header('Content-Type: application/xml; charset=UTF-8');

// Ana site URL'leri (canhospitals.com'dan - ana dil İngilizce)
$main_urls = [
    '',           // Ana sayfa
    '/about',     // About Us
    '/services',  // Services
    '/contact',   // Contact
    '/blog',      // Blog
    '/treatments', // Treatments
    '/doctors',   // Doctors
];

echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<?php foreach ($main_urls as $url): ?>
    <url>
        <loc>https://canhospitals.uk<?php echo $url; ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority><?php echo ($url == '') ? '1.0' : '0.8'; ?></priority>
        
        <!-- Hreflang annotations -->
        <xhtml:link rel="alternate" hreflang="en-GB" href="https://canhospitals.uk<?php echo $url; ?>" />
        <xhtml:link rel="alternate" hreflang="en" href="https://canhospitals.uk<?php echo $url; ?>" />
        <xhtml:link rel="alternate" hreflang="de" href="https://canhospitals.de<?php echo $url; ?>" />
        <xhtml:link rel="alternate" hreflang="tr" href="https://canhospitals.com<?php echo $url; ?>" />
        <xhtml:link rel="alternate" hreflang="x-default" href="https://canhospitals.com<?php echo $url; ?>" />
    </url>
<?php endforeach; ?>
</urlset>