/**
 * Single source of truth for company facts.
 *
 * Every figure here is published by Three Stars Hosiery Mills themselves
 * (threestarspk.com, their LinkedIn profile and their trade directory listings).
 * Nothing in this file is estimated. If the company corrects a number, change it
 * here once and it updates everywhere on the site.
 */

export const company = {
  legalName: "Three Stars Hosiery Mills (Pvt.) Ltd.",
  shortName: "Three Stars",
  groupName: "Three Star Group",
  founded: 1956,
  tagline: "Woven for the world since 1956",
  positioning:
    "Pakistan's oldest vertically integrated textile manufacturer",
  summary:
    "Founded in 1956, Three Star Group is a well known apparel manufacturer operating out of Multan and Lahore, Pakistan. Spinning, knitting, dyeing and stitching sit under one roof, so a bale of cotton becomes a finished garment without ever leaving the group.",
  groupScale:
    "One of the largest conglomerates in Pakistan with a total sales revenue exceeding hundred million dollars, with textile being the nucleus.",
  ethics:
    "Ethical and sustainable business practices, acknowledged by customers and the community at large.",
  website: "https://threestarspk.com",
  employees: "1,000+",
  employeeRange: "1,001 to 5,000",
} as const;

export const offices = [
  {
    id: "multan",
    label: "Multan works",
    role: "Knitwear, spinning and head production",
    address: "10-A Industrial Estate, Multan, Pakistan",
    postcode: "60000",
    phones: ["+92 61 6539229", "+92 61 6538493"],
    fax: "+92 61 6539366",
    coords: { lat: 30.1366425, lng: 71.3941132 },
    primary: true,
  },
  {
    id: "lahore",
    label: "Lahore unit",
    role: "Denim and woven products",
    address:
      "58-M Quaid-e-Azam Industrial Estate, Kot Lakhpat, Lahore, Punjab, Pakistan",
    postcode: "54770",
    phones: ["+92 61 6539229"],
    fax: null,
    coords: { lat: 31.451612, lng: 74.325192 },
    primary: false,
  },
] as const;

export const contact = {
  email: "marketing@threestarspk.com",
  phonePk: "+92 61 6539229",
  phoneUs: "+1 (510) 210-5226",
  hours: [
    { days: "Monday to Friday", time: "08:00 to 18:00" },
    { days: "Saturday", time: "09:00 to 12:00" },
    { days: "Sunday", time: "Closed" },
  ],
  mapUrl:
    "https://www.google.com/maps/search/?api=1&query=30.1366425,71.3941132",
} as const;

/** Export markets, used both as copy and as nodes on the 3D globe. */
export const markets = [
  { name: "United Kingdom", status: "active" },
  { name: "Europe", status: "active" },
  { name: "United States", status: "active" },
  { name: "South America", status: "seeking-agents" },
  { name: "Latin America", status: "seeking-agents" },
] as const;

/** Headline figures for the hero stat rail. */
export const heroStats = [
  { value: 1956, suffix: "", label: "Founded" },
  { value: 3, suffix: "", label: "Divisions" },
  { value: 156, suffix: "", label: "Knitting machines" },
  { value: 1000, suffix: "+", label: "People" },
] as const;
