// data.jsx — locations, fleet, FAQ
const LOCATIONS = [
  { id: "kingstown", name: "Kingstown Office", sub: "Main office", detail: "Bay Street, Kingstown", hours: "Mon–Sat 7:00–19:00 · Sun 8:00–14:00" },
  { id: "aia", name: "Argyle International Airport", sub: "AIA — arrivals hall", detail: "Argyle International Airport", hours: "Daily 6:00–23:30" },
  { id: "la-vue", name: "La Vue Hotel", sub: "Hotel pickup", detail: "Cane Garden, Kingstown", hours: "By appointment" },
  { id: "ferry", name: "Ferry Terminal", sub: "Kingstown port", detail: "Cruise/ferry terminal, Bay St", hours: "Daily 6:30–18:00" },
  { id: "myahs", name: "Myah's Suite", sub: "Hotel pickup", detail: "Calliaqua", hours: "By appointment" },
  { id: "sandals", name: "Sandals Resort", sub: "Resort pickup", detail: "Buccament Bay", hours: "By appointment" },
  { id: "blue-lagoon", name: "Blue Lagoon Hotel & Marina", sub: "Marina pickup", detail: "Blue Lagoon, Calliaqua", hours: "By appointment" },
  { id: "holiday-inn", name: "Holiday Inn", sub: "Hotel pickup", detail: "Arnos Vale", hours: "By appointment" },
  { id: "sunset", name: "Sun Set Shores", sub: "Hotel pickup", detail: "Villa Beach", hours: "By appointment" },
  { id: "haddon", name: "Haddon Hotel", sub: "Hotel pickup", detail: "McKies Hill, Kingstown", hours: "By appointment" },
  { id: "abnb", name: "ABnB", sub: "Custom address", detail: "Your Airbnb address", hours: "By appointment" },
  { id: "beachcombers", name: "Beachcombers", sub: "Hotel pickup", detail: "Villa Beach", hours: "By appointment" },
  { id: "saphire", name: "Saphire Apartment", sub: "Apartment pickup", detail: "Kingstown", hours: "By appointment" },
  { id: "royal-bliss", name: "Royal Bliss Apt", sub: "Apartment pickup", detail: "Arnos Vale", hours: "By appointment" },
  { id: "greek-cottage", name: "The Greek Cottage – ABnB", sub: "Custom pickup", detail: "Kingstown Hill", hours: "By appointment" },
  { id: "alexandrina", name: "Hotel Alexandrina", sub: "Hotel pickup", detail: "Kingstown", hours: "By appointment" },
  { id: "grenadine-house", name: "Grenadine House", sub: "Hotel pickup", detail: "Kingstown", hours: "By appointment" },
];

// 24h in 30-minute increments
const TIME_SLOTS = (() => {
  const out = [];
  for (let h = 0; h < 24; h++) {
    for (let m = 0; m < 60; m += 30) {
      const hh = String(h).padStart(2, "0");
      const mm = String(m).padStart(2, "0");
      out.push(`${hh}:${mm}`);
    }
  }
  return out;
})();

const FLEET = [
  {
    id: "toyota-noah",
    cat: "7-seater Minivan",
    name: "Toyota Noah",
    or: "",
    seats: 7,
    bags: 5,
    transmission: "Automatic",
    doors: 5,
    ac: true,
    mpg: "Good",
    drive: "FWD",
    pricePerDay: 345,
    badge: "Group favourite",
    badgeColor: "yellow",
    features: ["7 seats", "Air conditioning (rear)", "Sliding doors", "Bluetooth", "USB charging", "Tinted windows"],
    description: "Roomy minivan for groups, dive crews, and family beach trips — fits seven plus gear comfortably.",
    sortHint: "van",
    seatsCat: 7,
  },
  {
    id: "suzuki-sx4-2012",
    cat: "Compact Crossover",
    name: "2012 Suzuki SX4",
    or: "",
    seats: 5,
    bags: 3,
    transmission: "Automatic",
    doors: 5,
    ac: true,
    mpg: "Great",
    drive: "FWD",
    pricePerDay: 175,
    features: ["Air conditioning", "Bluetooth", "USB charging", "Roof rails"],
    description: "Compact crossover with raised stance — handles island roads and city parking equally well.",
    sortHint: "compact",
    seatsCat: 5,
  },
  {
    id: "toyota-vitz-2017",
    cat: "Economy Hatchback",
    name: "2017 Toyota Vitz",
    or: "",
    seats: 5,
    bags: 2,
    transmission: "Automatic",
    doors: 5,
    ac: true,
    mpg: "Excellent",
    drive: "FWD",
    pricePerDay: 155,
    badge: "Best value",
    badgeColor: "yellow",
    features: ["Air conditioning", "Bluetooth", "USB charging", "Reverse camera"],
    description: "Easy on fuel, easy to park — perfect for two travellers exploring Kingstown and the south coast.",
    sortHint: "economy",
    seatsCat: 4,
  },
  {
    id: "suzuki-escudo-2016",
    cat: "Mid-size SUV",
    name: "2016 Suzuki Escudo Land Breeze",
    or: "",
    seats: 5,
    bags: 4,
    transmission: "Automatic",
    doors: 5,
    ac: true,
    mpg: "Good",
    drive: "4WD",
    pricePerDay: 295,
    badge: "Island favourite",
    badgeColor: "coral",
    features: ["4-wheel drive", "Air conditioning", "Bluetooth", "Reverse camera", "Roof rails"],
    description: "Real 4WD SUV — reach Vermont Nature Trail, Owia Salt Pond, and steep windward villages with confidence.",
    sortHint: "suv",
    seatsCat: 5,
  },
  {
    id: "toyota-corolla-axio-2017",
    cat: "Compact Sedan",
    name: "2017 Toyota Corolla Axio",
    or: "",
    seats: 5,
    bags: 3,
    transmission: "Automatic",
    doors: 4,
    ac: true,
    mpg: "Great",
    drive: "FWD",
    pricePerDay: 195,
    features: ["Air conditioning", "Bluetooth", "Cruise control", "USB charging"],
    description: "Comfortable, reliable sedan for couples and small families touring the island.",
    sortHint: "compact",
    seatsCat: 5,
  },
  {
    id: "suzuki-vitara-2017",
    cat: "Compact 4x4",
    name: "2017 Suzuki Vitara",
    or: "",
    seats: 5,
    bags: 3,
    transmission: "Automatic",
    doors: 5,
    ac: true,
    mpg: "Great",
    drive: "AWD",
    pricePerDay: 265,
    features: ["All-wheel drive", "Air conditioning", "Apple CarPlay", "Reverse camera", "Cruise control"],
    description: "Modern compact 4x4 — comfortable on highway and capable on the windward coast.",
    sortHint: "suv",
    seatsCat: 5,
  },
];

const FAQ = [
  {
    q: "Do I need an international driver's permit?",
    a: "Visitors need a temporary local driving permit (XCD $100, ~USD $40) which we'll issue at pickup against your home country's valid driver's licence — takes about five minutes.",
  },
  {
    q: "Which side of the road do you drive on?",
    a: "Driving is on the left in St. Vincent and the Grenadines. Roads are paved but narrow and winding; we recommend a compact 4x4 if you plan to explore the windward side or visit Vermont Nature Trail.",
  },
  {
    q: "Can I pick up at AIA and drop off in Kingstown?",
    a: "Yes — one-way rentals between any of our three locations are free of charge. Just toggle 'Return to a different location' in the booking widget.",
  },
  {
    q: "Is insurance included in the daily rate?",
    a: "Basic third-party insurance and CDW with a XCD $2,500 deductible are included. Full zero-deductible cover is available as an add-on for XCD $35/day.",
  },
  {
    q: "Do you deliver to villas or yacht marinas?",
    a: "Free delivery within 10 km of any branch. Beyond that — including Bequia ferry connections at the Kingstown port — we charge XCD $50 flat.",
  },
  {
    q: "What's the minimum rental age?",
    a: "Drivers must be 25 or older with at least two years of driving experience. A young-driver fee of XCD $25/day applies for ages 21–24.",
  },
];

window.LOCATIONS = LOCATIONS;
window.TIME_SLOTS = TIME_SLOTS;
window.FLEET = FLEET;
window.FAQ = FAQ;
