<?php
require_once 'includes/functions.php';
initSession();
require_once 'config/config.php';
$seo = getSEO('contact');
?>
<!DOCTYPE html>
<html lang="en">

<head>
  <!-- Google Tag Manager -->
  <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  })(window,document,'script','dataLayer','GTM-N8NQFC4Z');</script>
  <!-- End Google Tag Manager -->
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><?php echo htmlspecialchars($seo['title']); ?></title>
  <meta name="description" content="<?php echo htmlspecialchars($seo['description']); ?>">
  <meta name="keywords" content="<?php echo htmlspecialchars($seo['keywords']); ?>">
  <link rel="canonical" href="https://gobotad.com/contact" />
  
  <!-- Open Graph / Facebook -->
  <meta property="og:type" content="website">
  <meta property="og:url" content="https://gobotad.com/contact">
  <meta property="og:title" content="<?php echo htmlspecialchars($seo['title']); ?>">
  <meta property="og:description" content="<?php echo htmlspecialchars($seo['description']); ?>">
  <meta property="og:image" content="https://gobotad.com/uploads/banners/69d16da394dd8_1775332771.png">

  <!-- Twitter -->
  <meta name="twitter:card" content="summary_large_image">
  <meta name="twitter:url" content="https://gobotad.com/contact">
  <meta name="twitter:title" content="<?php echo htmlspecialchars($seo['title']); ?>">
  <meta name="twitter:description" content="<?php echo htmlspecialchars($seo['description']); ?>">
  <meta name="twitter:image" content="https://gobotad.com/uploads/banners/69d16da394dd8_1775332771.png">

  <!-- Structured Data (JSON-LD) for LocalBusiness & ContactPage -->
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@graph": [
      {
        "@type": "ContactPage",
        "@id": "https://gobotad.com/contact.php#contact",
        "url": "https://gobotad.com/contact.php",
        "name": "Contact Us - GoBotad",
        "description": "Contact GoBotad customer care support team via phone number or email for order status, refunds or business partnership in Botad, Gujarat."
      },
      {
        "@type": "FoodEstablishment",
        "@id": "https://gobotad.com/#localbusiness",
        "name": "GoBotad Food Delivery Services",
        "image": "https://gobotad.com/logo.png",
        "telePhone": "+918200803627",
        "email": "gobotad@gmail.com",
        "priceRange": "₹₹",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "Main Market Area",
          "addressLocality": "Botad",
          "addressRegion": "Gujarat",
          "postalCode": "364710",
          "addressCountry": "IN"
        },
        "openingHoursSpecification": {
          "@type": "OpeningHoursSpecification",
          "dayOfWeek": [
            "Monday",
            "Tuesday",
            "Wednesday",
            "Thursday",
            "Friday",
            "Saturday",
            "Sunday"
          ],
          "opens": "10:00",
          "closes": "22:00"
        }
      }
    ]
  }
  </script>

  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  <style>
    :root { --primary: #f97316; --primary-dark: #ea580c; --dark: #0f172a; --gray: #64748b; --light-gray: #f8fafc; --border: #e2e8f0; }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
    body { background-color: var(--light-gray); color: #334155; line-height: 1.7; }
    header { background: white; padding: 20px 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
    .container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
    .header-content { display: flex; align-items: center; justify-content: space-between; }
    .logo { font-size: 1.5rem; font-weight: 900; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 10px; }
    .logo i { color: var(--primary); }
    .back-btn { padding: 8px 16px; background: var(--light-gray); color: var(--dark); border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
    .back-btn:hover { background: #e2e8f0; }
    .main-content { padding: 60px 0; }
    .page-title { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; text-align: center; }
    .last-updated { text-align: center; color: var(--gray); font-size: 0.95rem; margin-bottom: 40px; }
    .policy-card { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05); border: 1px solid var(--border); }
    .section-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 30px 0 15px; display: flex; align-items: center; gap: 12px; }
    .section-title i { color: var(--primary); font-size: 1.2rem; background: #fff7ed; padding: 10px; border-radius: 10px; }
    p { color: #475569; margin-bottom: 15px; font-size: 1.05rem; }
    ul { margin-bottom: 20px; padding-left: 20px; }
    li { margin-bottom: 10px; color: #475569; font-size: 1.05rem; position: relative; list-style-type: disc; }
    .footer { text-align: center; padding: 40px 0; color: var(--gray); font-size: 0.9rem; }
    @media (max-width: 768px) { .main-content { padding: 30px 0; } .policy-card { padding: 25px; } .page-title { font-size: 2rem; } }
  </style>
</head>
<body>
  <!-- Google Tag Manager (noscript) -->
  <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N8NQFC4Z"
  height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  <!-- End Google Tag Manager (noscript) -->
  <header>
    <div class="container header-content">
      <a href="/" class="logo"><i class="fas fa-utensils"></i> <?php echo htmlspecialchars(SITE_NAME); ?></a>
      <a href="/" class="back-btn"><i class="fas fa-arrow-left"></i> Back to Home</a>
    </div>
  </header>
  <main class="main-content container">
    <h1 class="page-title">Contact Us</h1>
    <div class="policy-card">
      <p style="font-size: 1.1rem; margin-bottom: 25px;">We are always here to help! Whether you have a question about your recent order, want to learn more about partnering with us, or simply wish to share your feedback, the GoBotad team is just a message or a phone call away. Our dedicated support staff works tirelessly to ensure your food delivery experience is absolutely flawless.</p>

      <h2 class="section-title"><i class="fas fa-building"></i> Corporate Information</h2>
      <p><strong>Business Name:</strong> GoBotad Food Delivery Services<br>
      We are proud to be a locally founded and operated business, deeply committed to serving the Botad community with the finest culinary options available in town.</p>

      <h2 class="section-title"><i class="fas fa-headset"></i> Customer Support</h2>
      <p>If you are facing immediate issues with a live order (e.g., delayed delivery, missing items, or cancellation requests), calling our support hotline is the fastest way to get a resolution.</p>
      <ul>
        <li><strong>Phone Support:</strong> <a href="tel:+918200803627" style="color: var(--primary); text-decoration: none; font-weight: 600;">+91-8200803627</a></li>
        <li><strong>Email Support:</strong> <a href="mailto:gobotad@gmail.com" style="color: var(--primary); text-decoration: none; font-weight: 600;">gobotad@gmail.com</a> (For general queries, refunds, and feedback, we aim to respond within 24 hours).</li>
      </ul>

      <h2 class="section-title"><i class="fas fa-location-dot"></i> Our Office Address</h2>
      <p><strong>Headquarters:</strong><br>
      GoBotad Operations Center,<br>
      Main Market Area,<br>
      Botad, Gujarat 364710,<br>
      India</p>
      <p><em>Note: This address is for corporate and administrative purposes. We do not process walk-in orders at this location.</em></p>

      <h2 class="section-title"><i class="fas fa-clock"></i> Operational Hours</h2>
      <p>Our app allows you to place orders and our customer support team is available during the following hours:</p>
      <ul>
        <li><strong>Monday to Sunday:</strong> 10:00 AM – 10:00 PM</li>
        <li><em>Special holiday hours may vary and will be updated on the app banner.</em></li>
      </ul>

      <h2 class="section-title"><i class="fas fa-handshake"></i> Partner With Us</h2>
      <p><strong>For Restaurants:</strong> Want to list your restaurant on GoBotad and reach thousands of hungry customers? Send an email with your restaurant details to our partnership team at gobotad@gmail.com.</p>
      <p><strong>For Riders:</strong> Looking for flexible earning opportunities? Join our delivery fleet today by downloading the GoBotad Rider App or visiting our office.</p>

      <div style="margin-top: 40px; padding: 25px; background: #fff7ed; border-radius: 12px; border: 1px dashed var(--primary); text-align: center;">
        <h3 style="color: var(--primary-dark); font-weight: 800; font-size: 1.3rem; margin-bottom: 10px;">Still have questions?</h3>
        <p style="color: #475569; font-size: 1.05rem;">Check out our <a href="terms.php" style="color: var(--primary); text-decoration: none; font-weight: 600;">Terms & Conditions</a> or our <a href="refunds.php" style="color: var(--primary); text-decoration: none; font-weight: 600;">Refund Policy</a> for more detailed information about our services.</p>
      </div>
    </div>
  </main>
  <footer class="footer">
    <div class="container">&copy; <?php echo date('Y'); ?> <?php echo htmlspecialchars(SITE_NAME); ?>. All rights reserved.</div>
  </footer>
</body>
</html>
