<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Book Appointment</title>
    <style>
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f7f6;
            margin: 0;
            padding: 0;
        }
        .hero {
            height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #0073aa;
            color: white;
            text-align: center;
        }
        .btn-cta {
            padding: 12px 24px;
            background-color: #ffb900;
            color: #333;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 15px;
            display: inline-block;
        }
        .container {
            max-width: 500px;
            margin: 50px auto;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .btn-submit {
            width: 100%;
            padding: 12px;
            background-color: #0073aa;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
        }
        .alert {
            padding: 10px;
            margin-bottom: 15px;
            border-radius: 4px;
            text-align: center;
        }
        .alert.success { background-color: #d4edda; color: #155724; }
        .alert.error { background-color: #f8d7da; color: #721c24; }
    </style>
</head>
<body>

    <!-- Hero / Call to Action Section -->
    <div class="hero">
        <h1>Welcome to Our Dental Clinic</h1>
        <p>Ready to get your perfect smile?</p>
        <a href="#appointment-form" class="btn-cta">Get Appointment</a>
    </div>

    <!-- Appointment Form Section -->
    <div class="container" id="appointment-form">
        <h2>Book Your Appointment</h2>

        
        <form action="appointment.php#appointment-form" method="POST">
            <div class="form-group">
                <label for="patient_name">Full Name *</label>
                <input type="text" id="patient_name" name="patient_name" required>
            </div>

            <div class="form-group">
                <label for="email">Email Address</label>
                <input type="email" id="email" name="email">
            </div>

            <div class="form-group">
                <label for="phone">Phone Number *</label>
                <input type="tel" id="phone" name="phone" required>
            </div>

            <div class="form-group">
                <label for="appointment_date">Preferred Date *</label>
                <input type="date" id="appointment_date" name="appointment_date" required>
            </div>

            <button type="submit" name="submit_booking" class="btn-submit">Submit and Book Slot</button>
        </form>
    </div>

</body>
</html><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://juansmile.juandigital.io/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://juansmile.juandigital.io/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://juansmile.juandigital.io/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://juansmile.juandigital.io/wp-sitemap-posts-elementskit_content-1.xml</loc></sitemap><sitemap><loc>https://juansmile.juandigital.io/wp-sitemap-posts-elementskit_template-1.xml</loc></sitemap><sitemap><loc>https://juansmile.juandigital.io/wp-sitemap-taxonomies-category-1.xml</loc></sitemap></sitemapindex>
