Spaces:
Runtime error
Runtime error
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Contact Us | DentalArt</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| body { | |
| background-color: #000; | |
| color: #fff; | |
| overflow-x: hidden; | |
| } | |
| .parallax-bg { | |
| background-attachment: fixed; | |
| background-position: center; | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .glow-effect { | |
| position: absolute; | |
| width: 200px; | |
| height: 200px; | |
| border-radius: 50%; | |
| filter: blur(60px); | |
| opacity: 0.3; | |
| z-index: 0; | |
| } | |
| .glow-teal { | |
| background: #38b2ac; | |
| } | |
| .glow-blue { | |
| background: #3b82f6; | |
| } | |
| .glow-purple { | |
| background: #8b5cf6; | |
| } | |
| .nav-link { | |
| position: relative; | |
| } | |
| .nav-link::after { | |
| content: ''; | |
| position: absolute; | |
| width: 0; | |
| height: 2px; | |
| bottom: -2px; | |
| left: 0; | |
| background: #38b2ac; | |
| transition: width 0.3s ease; | |
| } | |
| .nav-link:hover::after { | |
| width: 100%; | |
| } | |
| .contact-hero { | |
| background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255,255,255,0.1); | |
| } | |
| .contact-card { | |
| transition: all 0.3s ease; | |
| border: 1px solid rgba(255,255,255,0.1); | |
| } | |
| .contact-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); | |
| border-color: transparent; | |
| } | |
| .form-input { | |
| background-color: rgba(255,255,255,0.05); | |
| border: 1px solid rgba(255,255,255,0.1); | |
| transition: all 0.3s ease; | |
| } | |
| .form-input:focus { | |
| outline: none; | |
| border-color: #38b2ac; | |
| box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.2); | |
| } | |
| .map-container { | |
| position: relative; | |
| overflow: hidden; | |
| border-radius: 12px; | |
| box-shadow: 0 10px 25px rgba(0,0,0,0.5); | |
| } | |
| .map-container iframe { | |
| width: 100%; | |
| height: 100%; | |
| min-height: 400px; | |
| border: none; | |
| } | |
| @media (max-width: 768px) { | |
| .parallax-bg { | |
| background-attachment: scroll; | |
| } | |
| .contact-hero { | |
| padding-top: 120px; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Floating Glow Effects --> | |
| <div class="glow-effect glow-teal" style="top: 10%; left: 10%;"></div> | |
| <div class="glow-effect glow-blue" style="top: 60%; right: 5%;"></div> | |
| <div class="glow-effect glow-purple" style="bottom: 10%; left: 20%;"></div> | |
| <!-- Header --> | |
| <header class="py-6 px-4 fixed w-full z-50 bg-black bg-opacity-80 backdrop-filter backdrop-blur-sm"> | |
| <div class="container mx-auto flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-tooth text-3xl text-teal-400 mr-3"></i> | |
| <h1 class="text-2xl font-bold bg-gradient-to-r from-teal-400 to-blue-500 bg-clip-text text-transparent">DentalArt</h1> | |
| </div> | |
| <button id="menu-toggle" class="md:hidden text-white"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| <nav id="main-nav" class="hidden md:flex space-x-8"> | |
| <a href="#" class="nav-link text-white">Home</a> | |
| <a href="#" class="nav-link text-white">Gallery</a> | |
| <a href="#" class="nav-link text-white">Treatments</a> | |
| <a href="#" class="nav-link text-white text-teal-400 font-semibold">Contact</a> | |
| </nav> | |
| </div> | |
| </header> | |
| <!-- Mobile Menu --> | |
| <div id="mobile-menu" class="fixed inset-0 bg-black bg-opacity-90 z-40 hidden flex-col items-center justify-center space-y-8"> | |
| <button id="close-menu" class="absolute top-6 right-6 text-white text-2xl"> | |
| <i class="fas fa-times"></i> | |
| </button> | |
| <a href="#" class="text-white text-2xl">Home</a> | |
| <a href="#" class="text-white text-2xl">Gallery</a> | |
| <a href="#" class="text-white text-2xl">Treatments</a> | |
| <a href="#" class="text-white text-2xl text-teal-400 font-semibold">Contact</a> | |
| </div> | |
| <!-- Contact Hero Section --> | |
| <section class="contact-hero min-h-[60vh] flex items-center pt-20 relative overflow-hidden parallax-bg" style="background-image: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"> | |
| <div class="container mx-auto px-4 py-16 relative z-10"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Contact Our Dental Experts</h1> | |
| <p class="text-xl text-gray-300 mb-8">We're here to answer your questions and help you achieve your perfect smile. Schedule a consultation today.</p> | |
| <div class="flex flex-wrap justify-center gap-4"> | |
| <a href="#contact-form" class="bg-teal-500 text-white font-bold px-8 py-3 rounded-lg hover:bg-teal-600 transition duration-300"> | |
| <i class="fas fa-envelope mr-2"></i> Send Message | |
| </a> | |
| <a href="tel:5551234567" class="bg-white text-gray-800 font-bold px-8 py-3 rounded-lg hover:bg-gray-100 transition duration-300"> | |
| <i class="fas fa-phone mr-2"></i> Call Now | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Info Section --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto"> | |
| <!-- Location Card --> | |
| <div class="contact-card bg-gray-900 rounded-xl p-8 text-center"> | |
| <div class="w-16 h-16 bg-teal-500 rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-map-marker-alt text-white text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Our Location</h3> | |
| <p class="text-gray-400 mb-4">123 Smile Avenue<br>Beverly Hills, CA 90210</p> | |
| <a href="#map" class="text-teal-400 hover:text-teal-300 font-medium">View on Map <i class="fas fa-arrow-right ml-1"></i></a> | |
| </div> | |
| <!-- Hours Card --> | |
| <div class="contact-card bg-gray-900 rounded-xl p-8 text-center"> | |
| <div class="w-16 h-16 bg-blue-500 rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-clock text-white text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Working Hours</h3> | |
| <div class="space-y-2 text-gray-400 mb-4"> | |
| <p class="flex justify-between"><span>Monday - Friday</span> <span>8:00 AM - 6:00 PM</span></p> | |
| <p class="flex justify-between"><span>Saturday</span> <span>9:00 AM - 3:00 PM</span></p> | |
| <p class="flex justify-between"><span>Sunday</span> <span>Closed</span></p> | |
| </div> | |
| <a href="#contact-form" class="text-blue-400 hover:text-blue-300 font-medium">Book Appointment <i class="fas fa-arrow-right ml-1"></i></a> | |
| </div> | |
| <!-- Contact Card --> | |
| <div class="contact-card bg-gray-900 rounded-xl p-8 text-center"> | |
| <div class="w-16 h-16 bg-purple-500 rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-envelope text-white text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Contact Info</h3> | |
| <div class="space-y-2 text-gray-400 mb-4"> | |
| <p><i class="fas fa-phone-alt mr-2 text-purple-400"></i> (555) 123-4567</p> | |
| <p><i class="fas fa-envelope mr-2 text-purple-400"></i> hello@dentalart.com</p> | |
| <p><i class="fas fa-comment-alt mr-2 text-purple-400"></i> Live Chat Available</p> | |
| </div> | |
| <a href="mailto:hello@dentalart.com" class="text-purple-400 hover:text-purple-300 font-medium">Email Us <i class="fas fa-arrow-right ml-1"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Map Section --> | |
| <section id="map" class="py-10 bg-gray-900"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-6xl mx-auto"> | |
| <h2 class="text-3xl font-bold mb-8 text-center">Find Our Dental Clinic</h2> | |
| <div class="map-container"> | |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3304.453356395495!2d-118.400837924136!3d34.07373357314439!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80c2bc85f0f266b3%3A0x6c10d01c2e6a5a4!2sBeverly%20Hills%2C%20CA%2090210%2C%20USA!5e0!3m2!1sen!2s!4v1689876543210!5m2!1sen!2s" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Form Section --> | |
| <section id="contact-form" class="py-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="bg-gray-900 rounded-xl p-8 md:p-12"> | |
| <h2 class="text-3xl font-bold mb-2">Send Us a Message</h2> | |
| <p class="text-gray-400 mb-8">Fill out the form below and our team will get back to you within 24 hours.</p> | |
| <form class="space-y-6"> | |
| <div class="grid md:grid-cols-2 gap-6"> | |
| <div> | |
| <label for="name" class="block text-gray-300 mb-2">Full Name</label> | |
| <input type="text" id="name" class="form-input w-full px-4 py-3 rounded-lg" placeholder="John Smith" required> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-gray-300 mb-2">Email Address</label> | |
| <input type="email" id="email" class="form-input w-full px-4 py-3 rounded-lg" placeholder="john@example.com" required> | |
| </div> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-6"> | |
| <div> | |
| <label for="phone" class="block text-gray-300 mb-2">Phone Number</label> | |
| <input type="tel" id="phone" class="form-input w-full px-4 py-3 rounded-lg" placeholder="(555) 123-4567"> | |
| </div> | |
| <div> | |
| <label for="service" class="block text-gray-300 mb-2">Service Interested In</label> | |
| <select id="service" class="form-input w-full px-4 py-3 rounded-lg"> | |
| <option value="">Select a service</option> | |
| <option value="veneers">Porcelain Veneers</option> | |
| <option value="implants">Dental Implants</option> | |
| <option value="whitening">Teeth Whitening</option> | |
| <option value="invisalign">Invisalign</option> | |
| <option value="cosmetic">Cosmetic Dentistry</option> | |
| <option value="other">Other</option> | |
| </select> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-gray-300 mb-2">Your Message</label> | |
| <textarea id="message" rows="5" class="form-input w-full px-4 py-3 rounded-lg" placeholder="Tell us about your dental needs..."></textarea> | |
| </div> | |
| <div class="flex items-center"> | |
| <input type="checkbox" id="consent" class="rounded text-teal-500 focus:ring-teal-400" required> | |
| <label for="consent" class="ml-2 text-gray-300">I consent to DentalArt contacting me about my inquiry.</label> | |
| </div> | |
| <button type="submit" class="w-full bg-teal-500 text-white font-bold px-6 py-4 rounded-lg hover:bg-teal-600 transition duration-300"> | |
| Send Message <i class="fas fa-paper-plane ml-2"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ Section --> | |
| <section class="py-20 bg-gray-900"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto"> | |
| <h2 class="text-3xl font-bold mb-12 text-center">Frequently Asked Questions</h2> | |
| <div class="space-y-4"> | |
| <!-- FAQ Item 1 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden"> | |
| <button class="faq-toggle w-full text-left px-6 py-4 flex justify-between items-center"> | |
| <span class="font-medium">How soon can I get an appointment?</span> | |
| <i class="fas fa-chevron-down text-teal-400 transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">We typically have availability within 1-2 weeks for new patient consultations. For emergency cases, we offer same-day appointments when possible.</p> | |
| </div> | |
| </div> | |
| <!-- FAQ Item 2 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden"> | |
| <button class="faq-toggle w-full text-left px-6 py-4 flex justify-between items-center"> | |
| <span class="font-medium">Do you accept dental insurance?</span> | |
| <i class="fas fa-chevron-down text-teal-400 transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">Yes, we accept most major dental insurance plans. Our team will work with your provider to maximize your benefits. We also offer flexible financing options for treatments not covered by insurance.</p> | |
| </div> | |
| </div> | |
| <!-- FAQ Item 3 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden"> | |
| <button class="faq-toggle w-full text-left px-6 py-4 flex justify-between items-center"> | |
| <span class="font-medium">What safety measures do you have in place?</span> | |
| <i class="fas fa-chevron-down text-teal-400 transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">Your safety is our top priority. We follow strict sterilization protocols, use advanced air purification systems, and maintain the highest standards of infection control in compliance with ADA and CDC guidelines.</p> | |
| </div> | |
| </div> | |
| <!-- FAQ Item 4 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden"> | |
| <button class="faq-toggle w-full text-left px-6 py-4 flex justify-between items-center"> | |
| <span class="font-medium">How much does a consultation cost?</span> | |
| <i class="fas fa-chevron-down text-teal-400 transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">New patient consultations are $95, which includes a comprehensive exam and digital X-rays. This fee may be covered by your insurance, and we'll verify your benefits before your visit.</p> | |
| </div> | |
| </div> | |
| <!-- FAQ Item 5 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden"> | |
| <button class="faq-toggle w-full text-left px-6 py-4 flex justify-between items-center"> | |
| <span class="font-medium">What payment options do you offer?</span> | |
| <i class="fas fa-chevron-down text-teal-400 transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">We accept all major credit cards, cash, checks, and offer interest-free payment plans through third-party financing companies like CareCredit. We also offer a 5% discount for upfront payments in full.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 bg-gradient-to-r from-teal-700 to-blue-700"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready for Your Smile Transformation?</h2> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto">Book a consultation with our cosmetic dentistry specialists to discuss your smile goals.</p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <a href="#contact-form" class="bg-white text-teal-700 font-bold px-8 py-4 rounded-lg hover:bg-gray-100 transition duration-300">Book Consultation</a> | |
| <a href="tel:5551234567" class="bg-transparent border-2 border-white text-white font-bold px-8 py-4 rounded-lg hover:bg-white hover:bg-opacity-10 transition duration-300">Call Us: (555) 123-4567</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-black py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <i class="fas fa-tooth text-3xl text-teal-400 mr-3"></i> | |
| <h3 class="text-2xl font-bold bg-gradient-to-r from-teal-400 to-blue-500 bg-clip-text text-transparent">DentalArt</h3> | |
| </div> | |
| <p class="text-gray-400 mb-4">Premium cosmetic dentistry for your most confident smile.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-white font-bold mb-4">Quick Links</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Home</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">About Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Services</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Smile Gallery</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400 text-teal-400 font-semibold">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-white font-bold mb-4">Services</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Porcelain Veneers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Dental Implants</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Teeth Whitening</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Invisalign</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-teal-400">Cosmetic Bonding</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-white font-bold mb-4">Contact</h4> | |
| <ul class="space-y-2"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-map-marker-alt text-teal-400 mt-1 mr-3"></i> | |
| <span class="text-gray-400">123 Smile Avenue, Beverly Hills, CA 90210</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-phone-alt text-teal-400 mr-3"></i> | |
| <span class="text-gray-400">(555) 123-4567</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-envelope text-teal-400 mr-3"></i> | |
| <span class="text-gray-400">hello@dentalart.com</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="pt-8 border-t border-gray-800 text-center text-gray-500"> | |
| <p>© 2023 DentalArt. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| const menuToggle = document.getElementById('menu-toggle'); | |
| const closeMenu = document.getElementById('close-menu'); | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| menuToggle.addEventListener('click', () => { | |
| mobileMenu.classList.remove('hidden'); | |
| mobileMenu.classList.add('flex'); | |
| }); | |
| closeMenu.addEventListener('click', () => { | |
| mobileMenu.classList.add('hidden'); | |
| mobileMenu.classList.remove('flex'); | |
| }); | |
| // FAQ accordion functionality | |
| const faqToggles = document.querySelectorAll('.faq-toggle'); | |
| faqToggles.forEach(toggle => { | |
| toggle.addEventListener('click', () => { | |
| const content = toggle.nextElementSibling; | |
| const icon = toggle.querySelector('i'); | |
| // Toggle content visibility | |
| content.classList.toggle('hidden'); | |
| // Rotate icon | |
| icon.classList.toggle('rotate-180'); | |
| // Close other open FAQs | |
| faqToggles.forEach(otherToggle => { | |
| if (otherToggle !== toggle) { | |
| otherToggle.nextElementSibling.classList.add('hidden'); | |
| otherToggle.querySelector('i').classList.remove('rotate-180'); | |
| } | |
| }); | |
| }); | |
| }); | |
| // Form submission | |
| const contactForm = document.querySelector('form'); | |
| if (contactForm) { | |
| contactForm.addEventListener('submit', (e) => { | |
| e.preventDefault(); | |
| // Here you would typically send the form data to your server | |
| // For this example, we'll just show an alert | |
| alert('Thank you for your message! We will contact you shortly.'); | |
| contactForm.reset(); | |
| }); | |
| } | |
| </script> | |
| </body> | |
| </html> |