/** Choose us + accordion — crm-html/index.html choose-us-sec. */

export interface ChooseUsIntro {
  subTitle: string;
  title: string;
}

export interface ChooseUsAccordionItem {
  id: string;
  icon: string;
  iconAlt: string;
  title: string;
  body: string;
  defaultOpen: boolean;
}

export interface ChooseAsideColumn {
  description: string;
  ctaLabel: string;
  ctaHref: string;
  imageLight: string;
  imageDark: string;
  imageLightAlt: string;
  imageDarkAlt: string;
}

export interface HomeChooseUsContent {
  intro: ChooseUsIntro;
  accordion: ChooseUsAccordionItem[];
  aside: ChooseAsideColumn;
}

export const homeChooseUsContent: HomeChooseUsContent = {
  intro: {
    subTitle: "Why Choose Us",
    title: "Leading with Purpose, Chosen by Many",
  },
  accordion: [
    {
      id: "choose-1",
      icon: "/assets/images/icon/choose1-1.svg",
      iconAlt: "AI Features Icon",
      title: "AI-Powered Features",
      body: "AI-driven tools automate repetitive tasks, provide smart suggestions, and offer predictive insights",
      defaultOpen: true,
    },
    {
      id: "choose-2",
      icon: "/assets/images/icon/choose1-2.svg",
      iconAlt: "Performance Icon",
      title: "Lightning-Fast Performance",
      body: "Delivering seamless speed and instant responsiveness for a smooth, reliable digital experience.",
      defaultOpen: false,
    },
    {
      id: "choose-3",
      icon: "/assets/images/icon/choose1-3.svg",
      iconAlt: "Mobile and Desktop Icon",
      title: "Mobile & Desktop Friendly",
      body: "Optimized for every device, ensuring seamless access, smooth navigation, and consistent user experience.",
      defaultOpen: false,
    },
    {
      id: "choose-4",
      icon: "/assets/images/icon/choose1-4.svg",
      iconAlt: "Global Accessibility Icon",
      title: "Global Accessibility",
      body: "Designed for everyone, everywhere, providing equal access and seamless digital experiences worldwide.",
      defaultOpen: false,
    },
    {
      id: "choose-5",
      icon: "/assets/images/icon/choose1-5.svg",
      iconAlt: "Collaboration Icon",
      title: "Real-Time Collaboration",
      body: "Work together instantly, share ideas seamlessly, and boost productivity with real-time connected teamwork.",
      defaultOpen: false,
    },
  ],
  aside: {
    description:
      "We deliver a complete experience tailored to your needs. powerful combination cutting-edge technology",
    ctaLabel: "Get Started With Us",
    ctaHref: "/contact",
    imageLight: "/assets/images/event/choose1-1.png",
    imageDark: "/assets/images/event/choose1-1-dark.png",
    imageLightAlt: "Choose Us Illustration Light",
    imageDarkAlt: "Choose Us Illustration Dark",
  },
};
