<?php
header('Content-Type: application/xml; charset=utf-8');
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$base_url = $protocol . '://' . ($_SERVER['HTTP_HOST'] ?? 'pixleymedia.com');
$today = date('Y-m-d');

$urls = [
  ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'weekly'],
  ['loc' => '/pages/about.php', 'priority' => '0.8', 'changefreq' => 'monthly'],
  ['loc' => '/pages/services.php', 'priority' => '0.9', 'changefreq' => 'weekly'],
  ['loc' => '/pages/portfolio.php', 'priority' => '0.9', 'changefreq' => 'weekly'],
  ['loc' => '/pages/pricing.php', 'priority' => '0.8', 'changefreq' => 'monthly'],
  ['loc' => '/pages/blog.php', 'priority' => '0.8', 'changefreq' => 'daily'],
  ['loc' => '/pages/contact.php', 'priority' => '0.8', 'changefreq' => 'monthly'],
  ['loc' => '/pages/careers.php', 'priority' => '0.6', 'changefreq' => 'monthly'],
  ['loc' => '/pages/faq.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/pages/testimonials.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=food-photography', 'priority' => '0.8', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=product-photography', 'priority' => '0.8', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=lifestyle-photography', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=restaurant-photography', 'priority' => '0.8', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=real-estate-photography', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=advertising-videos', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=reels-creation', 'priority' => '0.8', 'changefreq' => 'monthly'],
  ['loc' => '/pages/service-details.php?slug=commercial-videos', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/pages/blog-details.php?slug=food-photography-tips', 'priority' => '0.6', 'changefreq' => 'monthly'],
  ['loc' => '/pages/blog-details.php?slug=d2c-product-photography', 'priority' => '0.6', 'changefreq' => 'monthly'],
  ['loc' => '/pages/blog-details.php?slug=instagram-reels-restaurant', 'priority' => '0.6', 'changefreq' => 'monthly'],
  ['loc' => '/pages/privacy-policy.php', 'priority' => '0.3', 'changefreq' => 'yearly'],
  ['loc' => '/pages/terms.php', 'priority' => '0.3', 'changefreq' => 'yearly'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach($urls as $url): ?>
  <url>
    <loc><?php echo htmlspecialchars($base_url . $url['loc']); ?></loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq><?php echo $url['changefreq']; ?></changefreq>
    <priority><?php echo $url['priority']; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
