'use client' import Link from "next/link"; import { useState } from 'react'; export default function Faq() { const [active1, setActive1] = useState(1); const [active2, setActive2] = useState(6); const [active3, setActive3] = useState(11); const handleToggle1 = (key) => setActive1(active1 === key ? null : key); const handleToggle2 = (key) => setActive2(active2 === key ? null : key); const handleToggle3 = (key) => setActive3(active3 === key ? null : key); const faqData = [ { question: "What is physiotherapy?", answer: "Physiotherapy is a healthcare profession focused on restoring movement, reducing pain, and improving physical function. At our Etobicoke physiotherapy clinic, we use evidence-based treatments to address musculoskeletal injuries, chronic pain, and mobility limitations." }, { question: "Do I need a doctor’s referral?", answer: "In most cases, no referral is required to visit a physiotherapy clinic in Etobicoke. However, some insurance plans may require a doctor’s note for reimbursement. Contact your insurance provider to confirm." }, { question: "What conditions do you treat?", answer: ( <>

We treat a wide range of conditions, including:

Our rehabilitation clinic in Etobicoke provides personalized treatment for both acute and chronic conditions.

) }, { question: "What happens during my first appointment?", answer: ( <>

Your first visit includes:

Our goal is to provide clarity and confidence from the start.

) }, { question: "How long does each session last?", answer: "Initial assessments typically last 45–60 minutes. Follow-up sessions usually last 30–45 minutes, depending on your treatment plan." }, { question: "How many sessions will I need?", answer: ( <>

The number of sessions varies depending on:

Some patients improve within a few visits, while others require structured long-term rehabilitation.

) }, { question: "Does physiotherapy hurt?", answer: "Physiotherapy should not cause excessive pain. Some mild soreness may occur after exercises, but your therapist will adjust intensity to your comfort level." }, { question: "Is physiotherapy covered by insurance?", answer: ( <>

Most extended health insurance plans cover physiotherapy services. Our Etobicoke physiotherapy clinic offers assistance with:

Contact us to verify your coverage.

) }, { question: "Do you treat motor vehicle accident injuries?", answer: "Yes. We specialize in accident rehabilitation in Etobicoke, including whiplash, soft tissue injuries, and post-collision mobility issues." }, { question: "Can physiotherapy prevent surgery?", answer: "In some cases, yes. Targeted strengthening, mobility correction, and pain management may reduce the need for surgical intervention. However, each case is unique." }, { question: "Do you offer massage therapy?", answer: "Yes. We provide therapeutic massage as part of comprehensive rehabilitation programs." }, { question: "What should I wear?", answer: "Wear comfortable clothing that allows movement and access to the affected area. For lower-body injuries, shorts are recommended." }, { question: "Do you treat athletes?", answer: "Yes. We offer sports physiotherapy programs to help athletes recover and improve performance." }, { question: "Is parking available?", answer: "Yes. Our Etobicoke physiotherapy clinic offers convenient parking and public transit access." }, { question: "When should I see a physiotherapist?", answer: ( <>

You should consider visiting if you experience:

Early intervention leads to faster recovery.

) } ]; return ( <> {/* FAQ Intro Section */}
Frequently Asked Questions

Frequently Asked Questions – Physiotherapy in Etobicoke

Below are answers to common questions about physiotherapy and rehabilitation services at Rapharehab, one of the best physiotherapy clinics in Etobicoke.

{/* Section 1: Image | FAQ 1-5 */}
{/* Image Column */}
COVID-19 Safety Updates
{/* FAQ Column */}
    {faqData.slice(0, 5).map((faq, index) => (
  • handleToggle1(index + 1)} >

    {faq.question}

    {faq.answer}
  • ))}
{/* Section 2: FAQ 6-10 | FAQ 11-15 */}
    {faqData.slice(5, 10).map((faq, index) => (
  • handleToggle2(index + 6)} >

    {faq.question}

    {faq.answer}
  • ))}
    {faqData.slice(10, 15).map((faq, index) => (
  • handleToggle3(index + 11)} >

    {faq.question}

    {faq.answer}
  • ))}
{/* Still Have Questions CTA */}

Still Have Questions?

If your question is not listed here, contact Rapharehab directly. Our team is happy to provide personalized guidance.

As one of the best physiotherapy clinics in Etobicoke, we are committed to providing transparent, professional, and patient-centered care.

Contact Us Directly
Still Have Questions
); }