/* global React */
const { useState: useStateHome, useEffect: useEffectHome } = React;

/* Service catalog (shared) */
const SERVICES = [
  { icon: 'heart', title: 'Counselling & Psychotherapy', body: 'One on one support for anxiety, depression, trauma, and life transitions in a private, respectful setting.' },
  { icon: 'rings', title: 'Couples & Marriage Counselling', body: 'Tools and space for couples navigating connection, conflict, and the work of staying close.' },
  { icon: 'family', title: 'Family Counselling', body: 'Support for families moving through change, conflict, or generational distance with care.' },
  { icon: 'child', title: 'Child & Youth Therapy', body: 'Gentle, age-appropriate therapy for children, teens, and young adults finding their footing.' },
  { icon: 'moon', title: 'Support for Muslim Families', body: 'Care that honours faith, family, and cultural context without compromising on professionalism.' },
  { icon: 'shield', title: 'Child Welfare Support', body: 'Steady guidance for families involved with child welfare, with advocacy and clarity.' },
  { icon: 'bloom', title: 'Premarital Counselling', body: 'A thoughtful foundation for couples preparing for marriage, with honest, structured conversation.' },
  { icon: 'scale', title: 'Separation Agreements', body: 'Compassionate mediation and structured support through separation and family transition.' },
  { icon: 'podium', title: 'Institutional Consultation', body: 'Strategic consultation and training for organizations, schools, and community bodies.' },
  { icon: 'spark', title: 'Therapeutic Workshops', body: 'Psychoeducational workshops for families, youth, and communities seeking depth and skills.' }
];

const APPROACHES = [
  'Anxiety', 'Depression', 'Trauma', 'Low self-esteem', 'Self-harming behaviours',
  'Bullying', 'Parenting concerns', 'Parent-teen conflict', 'Migration & cultural challenges',
  'Domestic & family conflict', 'Religious & spiritual disagreements'
];

const TEAM = [
  {
    name: 'Dr. Bibi Baksh',
    creds: 'BA, MSW, PhD',
    spec: 'Child welfare, Muslim families, newcomer support',
    bio: 'A social worker, researcher, educator, and community leader with decades of service. Dr. Baksh brings deep experience supporting Muslim families, newcomers, refugees, and adolescents through complex transitions.',
    img: 'teamA'
  },
  {
    name: 'Amilah Baksh',
    creds: 'MSW, RSW',
    spec: 'Children, adolescents, young adults, families',
    bio: 'Registered Social Worker integrating CBT, DBT, ACT, narrative therapy, and anti-oppressive practice. Amilah works with young people and families through a spiritually aware, evidence-informed lens.',
    img: 'teamB'
  },
  {
    name: 'Faisal Baksh',
    creds: 'Community Leader & Mediator',
    spec: 'Family mediation, marriage, mentorship',
    bio: 'An experienced community leader and mediator offering family mediation, marriage and premarital support, separation guidance, and faith-informed family direction with warmth and discretion.',
    img: 'teamC'
  }
];

const TESTIMONIALS = [
  { quote: 'A space that felt safe from the very first conversation. The care was unhurried and genuinely tailored to our family.', name: 'Family client', loc: 'Toronto' },
  { quote: 'Faith and culture were understood without explanation. That alone changed what was possible in our sessions.', name: 'Couple in counselling', loc: 'Mississauga' },
  { quote: 'Our daughter found her voice again. The work was patient, thoughtful, and never rushed.', name: 'Parent', loc: 'Markham' }
];

const FAQS = [
  { q: 'Are services confidential?', a: 'Yes. All sessions are private and held within professional confidentiality standards. Information is shared only with your written consent or where required by law.' },
  { q: 'Do you offer virtual sessions?', a: 'Yes. Virtual appointments are available across Ontario and can be arranged at your convenience, alongside in-person options.' },
  { q: 'Do you work with individuals, couples, families, and youth?', a: 'Yes. Shifa Services supports individuals, couples, families, children, adolescents, and young adults across a wide range of concerns.' },
  { q: 'Do you provide support for Muslim families?', a: 'Yes. We offer professional, spiritually aware care for Muslim individuals, couples, and families who value faith-informed support.' },
  { q: 'Can the initial consultation happen by phone?', a: 'Yes. Initial consultations may be held by phone or video, whichever feels most comfortable for you.' },
  { q: 'Do you offer evening or weekend appointments?', a: 'Limited evening and weekend appointments are available. Please indicate your preference when booking.' },
  { q: 'Are services covered by employee assistance programs?', a: 'Many extended health plans and employee assistance programs cover registered social work services. We can provide receipts for reimbursement.' },
  { q: 'What is the cancellation policy?', a: 'We ask for at least 24 hours notice for cancellations to avoid a missed session fee. Same-day rescheduling is accommodated where possible.' },
  { q: 'Do you provide workshops or organizational training?', a: 'Yes. We offer psychoeducational workshops, institutional training, and consultation for schools, organizations, and community bodies.' }
];

const TRUST_INDICATORS = [
  { icon: 'lock', label: 'Confidential Support' },
  { icon: 'globe', label: 'Culturally Sensitive Care' },
  { icon: 'family', label: 'Individual, Couple & Family' },
  { icon: 'clock', label: 'Virtual & Flexible' }
];

Object.assign(window, { SERVICES, APPROACHES, TEAM, TESTIMONIALS, FAQS, TRUST_INDICATORS });
