��<!DOCTYPE html> <html lang="en-GB"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Get in touch with Ansa Therapies to book your online therapy session. Our 100% virtual services make professional CBT therapy accessible from anywhere."> <title>Contact - Ansa Therapies</title> <link rel="stylesheet" href="custom-styles.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> </head> <body> <header class="header" id="header"> <div class="container"> <div class="header-content"> <a href="/" class="logo"> <img src="https://ansatherapies.com/wp-content/uploads/2022/05/cropped-Ansa-Therapies-1.png" alt="Ansa Therapies"> </a> <nav> <button class="menu-toggle" id="menuToggle" aria-label="Toggle menu"> <i class="fas fa-bars"></i> </button> <ul class="nav-menu" id="navMenu"> <li><a href="index.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html" class="active">Contact</a></li> </ul> </nav> <a href="contact.html" class="btn btn-primary">Book Now</a> </div> </div> </header> <section class="section"> <div class="container"> <h1>Contact Ansa Therapies</h1> <p class="text-center mb-4">Our therapy services are available 100% online. No matter where you are, we're here to support you.</p> <div class="row"> <div class="col-md-6"> <div class="contact-info"> <h2>Contact Information</h2> <div class="contact-detail"> <i class="fas fa-laptop"></i> <p><strong>Service Type:</strong><br>100% Online Therapy</p> </div> <div class="contact-detail"> <i class="fas fa-envelope"></i> <p><strong>Email:</strong><br>info@ansatherapies.com</p> </div> <div class="contact-detail"> <i class="fas fa-clock"></i> <p><strong>Hours:</strong><br>Monday - Friday: 9am - 6pm</p> </div> <div class="contact-detail"> <i class="fas fa-video"></i> <p><strong>Sessions:</strong><br>Conducted via Zoom or your preferred platform</p> </div> </div> </div> <div class="col-md-6"> <div class="contact-form"> <h2>Send a Message</h2> <form id="contactForm" action="https://formspree.io/f/mgvanpzz" method="POST"> <div class="form-group"> <label for="name">Name</label> <input type="text" id="name" name="name" required> </div> <div class="form-group"> <label for="email">Email</label> <input type="email" id="email" name="email" required> </div> <div class="form-group"> <label for="message">Message</label> <textarea id="message" name="message" rows="5" required></textarea> </div> <div class="form-group"> <button type="submit" class="btn btn-primary">Send Message</button> </div> <div id="formSuccess" class="form-success" style="display: none;"> Thank you for your message! We'll get back to you soon. </div> </form> </div> </div> </div> </div> </section> <section class="section bg-light"> <div class="container text-center"> <h2>How Online Therapy Works</h2> <div class="row mt-4"> <div class="col-md-4"> <div class="process-card"> <span class="process-number">1</span> <h3>Book Your Session</h3> <p>Complete the contact form to schedule your initial consultation</p> </div> </div> <div class="col-md-4"> <div class="process-card"> <span class="process-number">2</span> <h3>Receive Link</h3> <p>We'll send you a secure link to join your virtual therapy session</p> </div> </div> <div class="col-md-4"> <div class="process-card"> <span class="process-number">3</span> <h3>Connect Online</h3> <p>Join your session from the comfort of your home using any device</p> </div> </div> </div> </div> </section> <footer class="footer"> <div class="container"> <div class="row"> <div class="col-md-4"> <img src="https://ansatherapies.com/wp-content/uploads/2022/05/cropped-Ansa-Therapies-1.png" alt="Ansa Therapies" class="footer-logo"> </div> <div class="col-md-4"> <h4>Quick Links</h4> <ul class="footer-links"> <li><a href="index.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </div> <div class="col-md-4"> <h4>Contact</h4> <p>info@ansatherapies.com</p> </div> </div> <div class="footer-bottom"> <p>&copy; <script>document.write(new Date().getFullYear())</script> Ansa Therapies. All rights reserved.</p> </div> </div> </footer> <!-- JavaScript --> <script> document.addEventListener('DOMContentLoaded', function() { // Menu Toggle const menuToggle = document.getElementById('menuToggle'); const navMenu = document.getElementById('navMenu'); if (menuToggle && navMenu) { menuToggle.addEventListener('click', function() { navMenu.classList.toggle('active'); }); } // Header Scroll Effect const header = document.getElementById('header'); if (header) { window.addEventListener('scroll', function() { if (window.scrollY > 50) { header.classList.add('scrolled'); } else { header.classList.remove('scrolled'); } }); } // Form Submission const contactForm = document.getElementById('contactForm'); const formSuccess = document.getElementById('formSuccess'); if (contactForm) { contactForm.addEventListener('submit', function(e) { // Only run the simulation if not using Formspree (when action is not set) if (!contactForm.getAttribute('action').includes('formspree.io')) { e.preventDefault(); // Simulate form submission const formElements = contactForm.elements; for (let i = 0; i < formElements.length; i++) { if (formElements[i].type !== 'submit') { formElements[i].disabled = true; } } setTimeout(function() { formSuccess.style.display = 'block'; contactForm.querySelector('button[type="submit"]').disabled = true; }, 1000); } // When using Formspree, the form will submit normally }); } // Fade-in Animation const fadeElements = document.querySelectorAll('.section'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('visible'); } }); }, { threshold: 0.1 }); fadeElements.forEach(element => { element.classList.add('fade-in'); observer.observe(element); }); }); </script> <style> .contact-detail { display: flex; align-items: flex-start; margin-bottom: 1.5rem; } .contact-detail i { font-size: 1.5rem; color: #0066cc; margin-right: 1rem; min-width: 30px; text-align: center; } .form-success { padding: 15px; background-color: #d4edda; color: #155724; border-radius: 5px; margin-top: 1rem; text-align: center; } </style> </body> </html>