// ============================================================================
// MOVA RELOCATION — Système de traduction (i18n)
// ============================================================================

const LangContext = React.createContext({ lang: "FR", setLang: () => {} });

function LangProvider({ children }) {
  const [lang, setLangState] = React.useState(() => {
    try {
      return localStorage.getItem("mova-lang") || "FR";
    } catch (e) {
      return "FR";
    }
  });
  const setLang = React.useCallback((l) => {
    setLangState(l);
    try {
      localStorage.setItem("mova-lang", l);
    } catch (e) {}
  }, []);
  return (
    <LangContext.Provider value={{ lang, setLang }}>
      {children}
    </LangContext.Provider>
  );
}

function useLang() {
  return React.useContext(LangContext);
}

function useT() {
  const { lang } = React.useContext(LangContext);
  return React.useCallback(
    (key) => {
      const dict = TRANSLATIONS[lang] || TRANSLATIONS.FR;
      const val = dict[key];
      if (val === undefined) {
        // Fallback FR
        return TRANSLATIONS.FR[key] !== undefined ? TRANSLATIONS.FR[key] : key;
      }
      return val;
    },
    [lang]
  );
}

// ----------------------------------------------------------------------------
// DICTIONNAIRE — 5 langues
// ----------------------------------------------------------------------------
const TRANSLATIONS = {
  // ============================================================
  // FRANÇAIS (référence)
  // ============================================================
  FR: {
    "nav.services": "Services",
    "nav.process": "Process",
    "nav.destinations": "Destinations",
    "nav.contact": "Contact",

    "hero.tagline1": "Installez-vous.",
    "hero.tagline2": "On s'occupe du reste.",
    "hero.description":
      "Relocation premium pour sportifs professionnels, dirigeants et familles en mobilité. Du déménagement à l'installation complète du quotidien, partout en Europe.",
    "hero.cta": "Nous contacter",
    "hero.scroll": "DÉCOUVRIR",

    "conviction.eyebrow": "Notre conviction",
    "conviction.line1": "Notre seul objectif :",
    "conviction.line2": "que vous soyez",
    "conviction.line3": "libéré",
    "conviction.line4": "de toute contrainte.",

    "athletes.eyebrow": "Sportifs",
    "athletes.title": "Un joueur bien installé est un joueur concentré.",
    "athletes.body":
      "Les 2-3 premiers mois dans un nouveau club sont décisifs. MOVA libère votre esprit pour ce qui compte vraiment.",
    "athletes.pull":
      "Le club gère le contrat. L'agent gère la carrière. Le dirigeant gère ses projets. Mais qui s'occupe du déménagement jusqu'à votre installation ? C'est notre métier.",
    "athletes.detailCaption": "SALLE · PRÉPARATION",

    "dirigeants.eyebrow": "Dirigeants",
    "dirigeants.title":
      "Un dirigeant libéré de sa logistique prend de meilleures décisions.",
    "dirigeants.body":
      "Recherche d'appartement, coordination d'un déménagement, installation : ce n'est pas votre métier. C'est le nôtre.",
    "dirigeants.detailCaption": "VUE · URBAINE",

    "familles.eyebrow": "Familles",
    "familles.title":
      "Une famille libérée de toute contrainte s'intègre et s'adapte plus rapidement.",
    "familles.body":
      "École, médecin, quotidien — chaque repère trouve sa place avant même votre arrivée. Le nouveau lieu devient un chez-soi dès le premier jour.",
    "familles.detailCaption": "QUOTIDIEN",

    "services.eyebrow": "Notre savoir-faire",
    "services.title1": "Chaque détail.",
    "services.title2": "Chaque besoin.",
    "services.title3": "Chaque client.",
    "services.lead":
      "Un accompagnement complet, pensé pour ceux qui n'ont ni le temps ni l'envie de gérer les détails.",
    "services.tagline":
      "Et tout ce dont vous avez besoin, même ce que vous n'auriez pas pensé à demander.",

    "services.logement.title": "LOGEMENT",
    "services.logement.body":
      "Recherche, visite et mise en place de votre logement. Un espace prêt à vivre dès votre arrivée.",
    "services.demenagement.title": "DÉMÉNAGEMENT",
    "services.demenagement.body":
      "On orchestre votre déménagement avec précision, du départ à l'installation.",
    "services.scolarite.title": "SCOLARITÉ",
    "services.scolarite.body":
      "Accompagnement personnalisé pour la sélection et l'inscription dans les établissements les plus adaptés à vos enfants.",
    "services.vehicules.title": "VÉHICULES",
    "services.vehicules.body":
      "Services de convoyage personnalisé. Prise en charge complète des démarches administratives.",
    "services.quotidien.title": "QUOTIDIEN",
    "services.quotidien.body":
      "Un service clé en main qui anticipe les besoins du quotidien (transport, santé, sport…).",

    "process.eyebrow": "Process",
    "process.title1": "Comment ça",
    "process.title2": "fonctionne",
    "process.lead":
      "Six étapes pensées pour la sérénité. Du premier contact à l'accompagnement durable.",

    "process.step1.title": "PRISE DE CONTACT",
    "process.step1.body": "Un appel, un DM WhatsApp ou Instagram.",
    "process.step2.title": "ANALYSE DE VOS BESOINS",
    "process.step2.body":
      "On fait le point sur votre situation afin de répondre au mieux à vos attentes.",
    "process.step3.title": "TRANSMISSION D'UNE OFFRE PERSONNALISÉE",
    "process.step3.body":
      "On vous envoie un plan d'action sur mesure ainsi qu'un devis clair et transparent.",
    "process.step4.title": "ON S'OCCUPE DE TOUT",
    "process.step4.body": "On assure la coordination complète de votre projet.",
    "process.step5.title": "VOUS ARRIVEZ",
    "process.step5.body":
      "Tout est prêt. Vous n'avez plus qu'à vous installer en toute sérénité.",
    "process.step6.title": "UN LIEN QUI S'INSCRIT DANS LA DURÉE",
    "process.step6.body":
      "Une question, un imprévu, un besoin. Contactez-nous. On reste disponible, bien après votre installation.",

    "destinations.eyebrow": "Destinations",
    "destinations.title1": "Une présence",
    "destinations.title2": "à travers l'Europe.",
    "destinations.lead":
      "De Paris à Madrid, d'Édimbourg à Berlin — on accompagne nos clients partout en Europe.",

    "country.FR": "France",
    "country.UK": "Royaume-Uni",
    "country.ES": "Espagne",
    "country.DE": "Allemagne",
    "country.IT": "Italie",
    "country.CH": "Suisse",
    "country.BENELUX": "Benelux",
    "country.MC": "Monaco",

    "testimonials.eyebrow": "Ils nous ont fait confiance",
    "testimonials.t1.quote":
      "J'ai pu me concentrer sur le terrain dès le premier jour.",
    "testimonials.t1.attribution": "FOOTBALLEUR PROFESSIONNEL",
    "testimonials.t2.quote":
      "On nous a livré bien plus qu'un déménagement. Un quotidien prêt à vivre.",
    "testimonials.t2.attribution": "DIRIGEANT",
    "testimonials.t2.meta": "GROUPE COTÉ, 2026",
    "testimonials.t3.quote":
      "Une nouvelle ville, une nouvelle école, un nouveau quotidien. Tout a été mis en place.",
    "testimonials.t3.attribution": "FAMILLE",
    "testimonials.t3.meta": "INSTALLATION DEPUIS GENÈVE, 2026",

    "founder.eyebrow": "Le fondateur",
    "founder.p1":
      "Ancien étudiant-footballeur aux États-Unis, puis responsable d'une société de chauffeurs privés haut de gamme —",
    "founder.p1Italic":
      "un métier où répondre aux besoins des clients allait bien au-delà du simple transport.",
    "founder.p2":
      "L'idée de MOVA est née en accompagnant un ami footballeur professionnel dans ses déménagements à travers plusieurs pays européens.",
    "founder.p3":
      "Le logement, l'administratif, le convoyage des véhicules, les formalités pour les animaux de compagnie — personne ne s'en occupait vraiment.",
    "founder.p4": "Alors j'en ai fait mon métier.",
    "founder.signature": "— FONDATEUR · PARIS",

    "contact.eyebrow": "Contact",
    "contact.line1": "Logement, déménagement,",
    "contact.line2": "installation, quotidien —",
    "contact.line3": "un service clé en main,",
    "contact.line4": "discret et efficace.",
    "contact.cta": "Demander un accompagnement",
    "contact.email": "Email",
    "contact.instagram": "Instagram",
    "contact.whatsapp": "WhatsApp",

    "footer.infos": "Informations",
    "footer.langue": "Langue",
    "footer.suivre": "Suivre",
    "footer.mentions": "Mentions légales",
    "footer.privacy": "Politique de confidentialité",
    "footer.contact": "Contact",
    "footer.copyright": "© 2026 MOVA Relocation. Tous droits réservés.",
  },

  // ============================================================
  // ENGLISH
  // ============================================================
  EN: {
    "nav.services": "Services",
    "nav.process": "Process",
    "nav.destinations": "Destinations",
    "nav.contact": "Contact",

    "hero.tagline1": "Settle in.",
    "hero.tagline2": "We take care of the rest.",
    "hero.description":
      "Premium relocation for professional athletes, executives and mobile families. From moving day to a fully-installed daily life — everywhere in Europe.",
    "hero.cta": "Get in touch",
    "hero.scroll": "DISCOVER",

    "conviction.eyebrow": "Our conviction",
    "conviction.line1": "Our only objective:",
    "conviction.line2": "to free you",
    "conviction.line3": "completely",
    "conviction.line4": "from every constraint.",

    "athletes.eyebrow": "Athletes",
    "athletes.title": "A well-settled player is a focused player.",
    "athletes.body":
      "The first 2–3 months at a new club are decisive. MOVA frees your mind for what truly matters.",
    "athletes.pull":
      "The club handles the contract. The agent handles the career. The advisor handles the investments. But who handles the move — all the way to your installation? That's our job.",
    "athletes.detailCaption": "GYM · PREPARATION",

    "dirigeants.eyebrow": "Executives",
    "dirigeants.title":
      "An executive freed from logistics makes better decisions.",
    "dirigeants.body":
      "Finding an apartment, coordinating a move, settling in — it isn't your job. It's ours.",
    "dirigeants.detailCaption": "VIEW · URBAN",

    "familles.eyebrow": "Families",
    "familles.title":
      "A family freed from every constraint integrates faster.",
    "familles.body":
      "Schools, doctors, daily routines — every landmark is in place before you arrive. The new home feels like home from day one.",
    "familles.detailCaption": "DAILY LIFE",

    "services.eyebrow": "Our expertise",
    "services.title1": "Every detail.",
    "services.title2": "Every need.",
    "services.title3": "Every client.",
    "services.lead":
      "A complete service, designed for those who have neither the time nor the inclination to handle the details.",
    "services.tagline": "And everything you need — even what you wouldn't have thought to ask for.",

    "services.logement.title": "HOUSING",
    "services.logement.body":
      "Search, viewings and full setup of your home. A space ready to live in the day you arrive.",
    "services.demenagement.title": "MOVING",
    "services.demenagement.body":
      "We orchestrate your move with precision — from departure to installation.",
    "services.scolarite.title": "SCHOOLS",
    "services.scolarite.body":
      "Personal guidance for selecting and enrolling in the most suitable schools for your children.",
    "services.vehicules.title": "VEHICLES",
    "services.vehicules.body":
      "Personal vehicle transport. Full administrative handling from start to finish.",
    "services.quotidien.title": "DAILY LIFE",
    "services.quotidien.body":
      "A turnkey service that anticipates every daily need — transport, health, sport, and more.",

    "process.eyebrow": "Process",
    "process.title1": "How does it",
    "process.title2": "work",
    "process.lead":
      "Six steps designed for peace of mind. From first contact to a lasting partnership.",

    "process.step1.title": "GET IN TOUCH",
    "process.step1.body": "A call, a DM on WhatsApp or Instagram.",
    "process.step2.title": "ANALYSING YOUR NEEDS",
    "process.step2.body":
      "We review your situation in detail to meet your expectations precisely.",
    "process.step3.title": "TAILORED PROPOSAL",
    "process.step3.body":
      "We send you a bespoke action plan along with a clear, transparent quote.",
    "process.step4.title": "WE HANDLE EVERYTHING",
    "process.step4.body": "We coordinate every aspect of your project.",
    "process.step5.title": "YOU ARRIVE",
    "process.step5.body":
      "Everything is ready. All that's left is to settle in with complete peace of mind.",
    "process.step6.title": "A LASTING RELATIONSHIP",
    "process.step6.body":
      "A question, an unexpected situation, a new need. Reach out. We stay available, long after your installation.",

    "destinations.eyebrow": "Destinations",
    "destinations.title1": "A presence",
    "destinations.title2": "across Europe.",
    "destinations.lead":
      "From Paris to Madrid, from Edinburgh to Berlin — we support our clients everywhere in Europe.",

    "country.FR": "France",
    "country.UK": "United Kingdom",
    "country.ES": "Spain",
    "country.DE": "Germany",
    "country.IT": "Italy",
    "country.CH": "Switzerland",
    "country.BENELUX": "Benelux",
    "country.MC": "Monaco",

    "testimonials.eyebrow": "They trusted us",
    "testimonials.t1.quote":
      "I was able to focus on the pitch from day one.",
    "testimonials.t1.attribution": "PROFESSIONAL FOOTBALLER",
    "testimonials.t2.quote":
      "We were handed far more than a move. A daily life ready to live.",
    "testimonials.t2.attribution": "EXECUTIVE",
    "testimonials.t2.meta": "LISTED GROUP, 2026",
    "testimonials.t3.quote":
      "A new city, a new school, a new daily routine. Everything was in place.",
    "testimonials.t3.attribution": "FAMILY",
    "testimonials.t3.meta": "RELOCATION FROM GENEVA, 2026",

    "founder.eyebrow": "The founder",
    "founder.p1":
      "Former student-athlete in the United States, then head of a high-end private-driver company —",
    "founder.p1Italic":
      "a job where meeting clients' needs went far beyond simply driving.",
    "founder.p2":
      "MOVA started when I helped a professional footballer friend move between several European countries.",
    "founder.p3":
      "Housing, paperwork, vehicle transport, pet formalities — no one was truly handling it.",
    "founder.p4": "So I made it my profession.",
    "founder.signature": "— FOUNDER · PARIS",

    "contact.eyebrow": "Contact",
    "contact.line1": "Housing, moving,",
    "contact.line2": "installation, daily life —",
    "contact.line3": "a turnkey service,",
    "contact.line4": "discreet and effective.",
    "contact.cta": "Request a consultation",
    "contact.email": "Email",
    "contact.instagram": "Instagram",
    "contact.whatsapp": "WhatsApp",

    "footer.infos": "Information",
    "footer.langue": "Language",
    "footer.suivre": "Follow",
    "footer.mentions": "Legal notice",
    "footer.privacy": "Privacy policy",
    "footer.contact": "Contact",
    "footer.copyright": "© 2026 MOVA Relocation. All rights reserved.",
  },

  // ============================================================
  // ESPAÑOL
  // ============================================================
  ES: {
    "nav.services": "Servicios",
    "nav.process": "Proceso",
    "nav.destinations": "Destinos",
    "nav.contact": "Contacto",

    "hero.tagline1": "Instálese.",
    "hero.tagline2": "Nos encargamos del resto.",
    "hero.description":
      "Relocation premium para deportistas profesionales, directivos y familias en movilidad. De la mudanza a la instalación completa, en toda Europa.",
    "hero.cta": "Contáctenos",
    "hero.scroll": "DESCUBRIR",

    "conviction.eyebrow": "Nuestra convicción",
    "conviction.line1": "Nuestro único objetivo:",
    "conviction.line2": "que esté",
    "conviction.line3": "liberado",
    "conviction.line4": "de toda limitación.",

    "athletes.eyebrow": "Deportistas",
    "athletes.title": "Un jugador bien instalado es un jugador concentrado.",
    "athletes.body":
      "Los primeros 2-3 meses en un nuevo club son decisivos. MOVA libera su mente para lo que realmente importa.",
    "athletes.pull":
      "El club se ocupa del contrato. El agente, de la carrera. El asesor, de las inversiones. Pero ¿quién se ocupa de la mudanza hasta su instalación? Es nuestro oficio.",
    "athletes.detailCaption": "GIMNASIO · PREPARACIÓN",

    "dirigeants.eyebrow": "Directivos",
    "dirigeants.title":
      "Un directivo liberado de su logística toma mejores decisiones.",
    "dirigeants.body":
      "Buscar un apartamento, coordinar una mudanza, instalarse: no es su oficio. Es el nuestro.",
    "dirigeants.detailCaption": "VISTA · URBANA",

    "familles.eyebrow": "Familias",
    "familles.title":
      "Una familia liberada de toda limitación se integra más rápido.",
    "familles.body":
      "Colegio, médico, día a día — cada referencia encuentra su lugar antes incluso de su llegada. El nuevo lugar se convierte en hogar desde el primer día.",
    "familles.detailCaption": "VIDA COTIDIANA",

    "services.eyebrow": "Nuestro saber hacer",
    "services.title1": "Cada detalle.",
    "services.title2": "Cada necesidad.",
    "services.title3": "Cada cliente.",
    "services.lead":
      "Un acompañamiento completo, pensado para quienes no tienen el tiempo ni las ganas de ocuparse de los detalles.",
    "services.tagline": "Y todo lo que necesita, incluso aquello en lo que no habría pensado pedir.",

    "services.logement.title": "VIVIENDA",
    "services.logement.body":
      "Búsqueda, visitas y puesta en marcha de su vivienda. Un espacio listo para vivir desde el primer día.",
    "services.demenagement.title": "MUDANZA",
    "services.demenagement.body":
      "Orquestamos su mudanza con precisión, desde la salida hasta la instalación.",
    "services.scolarite.title": "COLEGIOS",
    "services.scolarite.body":
      "Acompañamiento personalizado para la selección y matriculación en los centros más adecuados para sus hijos.",
    "services.vehicules.title": "VEHÍCULOS",
    "services.vehicules.body":
      "Servicios de transporte personalizado. Gestión completa de los trámites administrativos.",
    "services.quotidien.title": "DÍA A DÍA",
    "services.quotidien.body":
      "Un servicio llave en mano que anticipa las necesidades cotidianas (transporte, salud, deporte…).",

    "process.eyebrow": "Proceso",
    "process.title1": "¿Cómo",
    "process.title2": "funciona",
    "process.lead":
      "Seis etapas pensadas para la serenidad. Del primer contacto al acompañamiento duradero.",

    "process.step1.title": "PRIMER CONTACTO",
    "process.step1.body": "Una llamada, un mensaje por WhatsApp o Instagram.",
    "process.step2.title": "ANÁLISIS DE SUS NECESIDADES",
    "process.step2.body":
      "Revisamos su situación para responder a sus expectativas con precisión.",
    "process.step3.title": "PROPUESTA PERSONALIZADA",
    "process.step3.body":
      "Le enviamos un plan de acción a medida y un presupuesto claro y transparente.",
    "process.step4.title": "NOS OCUPAMOS DE TODO",
    "process.step4.body": "Coordinamos cada aspecto de su proyecto.",
    "process.step5.title": "USTED LLEGA",
    "process.step5.body":
      "Todo está listo. Solo le queda instalarse con total tranquilidad.",
    "process.step6.title": "UNA RELACIÓN DURADERA",
    "process.step6.body":
      "Una pregunta, un imprevisto, una necesidad. Contáctenos. Seguimos disponibles, mucho después de su instalación.",

    "destinations.eyebrow": "Destinos",
    "destinations.title1": "Una presencia",
    "destinations.title2": "en toda Europa.",
    "destinations.lead":
      "De París a Madrid, de Edimburgo a Berlín — acompañamos a nuestros clientes en toda Europa.",

    "country.FR": "Francia",
    "country.UK": "Reino Unido",
    "country.ES": "España",
    "country.DE": "Alemania",
    "country.IT": "Italia",
    "country.CH": "Suiza",
    "country.BENELUX": "Benelux",
    "country.MC": "Mónaco",

    "testimonials.eyebrow": "Han confiado en nosotros",
    "testimonials.t1.quote":
      "Pude concentrarme en el campo desde el primer día.",
    "testimonials.t1.attribution": "FUTBOLISTA PROFESIONAL",
    "testimonials.t2.quote":
      "Nos entregaron mucho más que una mudanza. Una vida lista para vivir.",
    "testimonials.t2.attribution": "DIRECTIVO",
    "testimonials.t2.meta": "GRUPO COTIZADO, 2026",
    "testimonials.t3.quote":
      "Una nueva ciudad, un nuevo colegio, una nueva rutina. Todo estaba listo.",
    "testimonials.t3.attribution": "FAMILIA",
    "testimonials.t3.meta": "INSTALACIÓN DESDE GINEBRA, 2026",

    "founder.eyebrow": "El fundador",
    "founder.p1":
      "Antiguo estudiante-futbolista en Estados Unidos, después responsable de una empresa de chóferes privados de gama alta —",
    "founder.p1Italic":
      "un oficio donde responder a las necesidades de los clientes iba mucho más allá del simple transporte.",
    "founder.p2":
      "La idea de MOVA nació acompañando a un amigo futbolista profesional en sus mudanzas a través de varios países europeos.",
    "founder.p3":
      "La vivienda, los trámites, el transporte de los vehículos, las formalidades para las mascotas — nadie se ocupaba realmente de ello.",
    "founder.p4": "Así que hice de ello mi oficio.",
    "founder.signature": "— FUNDADOR · PARÍS",

    "contact.eyebrow": "Contacto",
    "contact.line1": "Vivienda, mudanza,",
    "contact.line2": "instalación, día a día —",
    "contact.line3": "un servicio llave en mano,",
    "contact.line4": "discreto y eficaz.",
    "contact.cta": "Solicitar un acompañamiento",
    "contact.email": "Email",
    "contact.instagram": "Instagram",
    "contact.whatsapp": "WhatsApp",

    "footer.infos": "Información",
    "footer.langue": "Idioma",
    "footer.suivre": "Seguir",
    "footer.mentions": "Aviso legal",
    "footer.privacy": "Política de privacidad",
    "footer.contact": "Contacto",
    "footer.copyright": "© 2026 MOVA Relocation. Todos los derechos reservados.",
  },

  // ============================================================
  // DEUTSCH
  // ============================================================
  DE: {
    "nav.services": "Leistungen",
    "nav.process": "Ablauf",
    "nav.destinations": "Destinationen",
    "nav.contact": "Kontakt",

    "hero.tagline1": "Ankommen.",
    "hero.tagline2": "Den Rest übernehmen wir.",
    "hero.description":
      "Premium-Relocation für Profisportler, Führungskräfte und mobile Familien. Vom Umzug bis zur vollständigen Einrichtung des Alltags — überall in Europa.",
    "hero.cta": "Kontakt aufnehmen",
    "hero.scroll": "ENTDECKEN",

    "conviction.eyebrow": "Unsere Überzeugung",
    "conviction.line1": "Unser einziges Ziel:",
    "conviction.line2": "dass Sie",
    "conviction.line3": "frei",
    "conviction.line4": "von jeder Last sind.",

    "athletes.eyebrow": "Sportler",
    "athletes.title": "Ein gut angekommener Spieler ist ein konzentrierter Spieler.",
    "athletes.body":
      "Die ersten 2–3 Monate in einem neuen Verein sind entscheidend. MOVA befreit den Kopf für das, was wirklich zählt.",
    "athletes.pull":
      "Der Verein regelt den Vertrag. Der Berater die Karriere. Der Manager die Geschäfte. Aber wer kümmert sich um den Umzug bis zur Einrichtung? Das ist unser Beruf.",
    "athletes.detailCaption": "TRAINING · VORBEREITUNG",

    "dirigeants.eyebrow": "Führungskräfte",
    "dirigeants.title":
      "Wer von der Logistik befreit ist, trifft bessere Entscheidungen.",
    "dirigeants.body":
      "Wohnungssuche, Umzugskoordination, Einrichtung: nicht Ihr Beruf — unserer.",
    "dirigeants.detailCaption": "BLICK · STADT",

    "familles.eyebrow": "Familien",
    "familles.title":
      "Eine entlastete Familie integriert sich schneller.",
    "familles.body":
      "Schule, Arzt, Alltag — jeder Anhaltspunkt steht bereit, bevor Sie eintreffen. Der neue Ort wird vom ersten Tag an zum Zuhause.",
    "familles.detailCaption": "ALLTAG",

    "services.eyebrow": "Unser Handwerk",
    "services.title1": "Jedes Detail.",
    "services.title2": "Jedes Bedürfnis.",
    "services.title3": "Jeder Klient.",
    "services.lead":
      "Eine umfassende Begleitung — für Menschen, die weder Zeit noch Lust haben, sich um Details zu kümmern.",
    "services.tagline": "Und alles, was Sie brauchen — auch das, woran Sie nicht gedacht hätten.",

    "services.logement.title": "WOHNEN",
    "services.logement.body":
      "Suche, Besichtigung und Einrichtung Ihrer Wohnung. Ein bewohnbarer Raum ab dem ersten Tag.",
    "services.demenagement.title": "UMZUG",
    "services.demenagement.body":
      "Wir orchestrieren Ihren Umzug präzise — von der Abreise bis zur Einrichtung.",
    "services.scolarite.title": "SCHULE",
    "services.scolarite.body":
      "Persönliche Begleitung bei der Auswahl und Anmeldung in den passendsten Schulen für Ihre Kinder.",
    "services.vehicules.title": "FAHRZEUGE",
    "services.vehicules.body":
      "Persönliche Fahrzeugüberstellung. Vollständige Übernahme aller Behördengänge.",
    "services.quotidien.title": "ALLTAG",
    "services.quotidien.body":
      "Ein Rundum-Service, der jeden Alltagsbedarf vorwegnimmt (Transport, Gesundheit, Sport…).",

    "process.eyebrow": "Ablauf",
    "process.title1": "Wie",
    "process.title2": "funktioniert es",
    "process.lead":
      "Sechs Etappen für absolute Gelassenheit. Vom ersten Kontakt zur dauerhaften Begleitung.",

    "process.step1.title": "ERSTKONTAKT",
    "process.step1.body": "Ein Anruf, eine WhatsApp- oder Instagram-Nachricht.",
    "process.step2.title": "BEDARFSANALYSE",
    "process.step2.body":
      "Wir klären Ihre Situation, um Ihren Erwartungen präzise zu entsprechen.",
    "process.step3.title": "MASSGESCHNEIDERTES ANGEBOT",
    "process.step3.body":
      "Wir senden Ihnen einen individuellen Plan sowie ein klares, transparentes Angebot.",
    "process.step4.title": "WIR ÜBERNEHMEN ALLES",
    "process.step4.body":
      "Wir koordinieren jeden Aspekt Ihres Projekts.",
    "process.step5.title": "SIE KOMMEN AN",
    "process.step5.body":
      "Alles ist bereit. Sie müssen sich nur noch einrichten — in völliger Gelassenheit.",
    "process.step6.title": "EINE BLEIBENDE BEZIEHUNG",
    "process.step6.body":
      "Eine Frage, ein Unvorhergesehenes, ein neuer Bedarf. Melden Sie sich. Wir bleiben erreichbar — lange nach Ihrer Einrichtung.",

    "destinations.eyebrow": "Destinationen",
    "destinations.title1": "Eine Präsenz",
    "destinations.title2": "in ganz Europa.",
    "destinations.lead":
      "Von Paris bis Madrid, von Edinburgh bis Berlin — wir begleiten unsere Klienten überall in Europa.",

    "country.FR": "Frankreich",
    "country.UK": "Vereinigtes Königreich",
    "country.ES": "Spanien",
    "country.DE": "Deutschland",
    "country.IT": "Italien",
    "country.CH": "Schweiz",
    "country.BENELUX": "Benelux",
    "country.MC": "Monaco",

    "testimonials.eyebrow": "Sie haben uns vertraut",
    "testimonials.t1.quote":
      "Ich konnte mich vom ersten Tag an aufs Spielfeld konzentrieren.",
    "testimonials.t1.attribution": "PROFIFUSSBALLER",
    "testimonials.t2.quote":
      "Wir haben weit mehr als einen Umzug erhalten. Einen Alltag, bereit zum Leben.",
    "testimonials.t2.attribution": "FÜHRUNGSKRAFT",
    "testimonials.t2.meta": "BÖRSENNOTIERTE GRUPPE, 2026",
    "testimonials.t3.quote":
      "Eine neue Stadt, eine neue Schule, ein neuer Alltag. Alles war bereit.",
    "testimonials.t3.attribution": "FAMILIE",
    "testimonials.t3.meta": "UMZUG AUS GENF, 2026",

    "founder.eyebrow": "Der Gründer",
    "founder.p1":
      "Ehemaliger Student-Fußballer in den USA, danach Geschäftsführer eines hochwertigen Chauffeurservice —",
    "founder.p1Italic":
      "ein Beruf, in dem das Eingehen auf die Bedürfnisse der Klienten weit über den reinen Transport hinausging.",
    "founder.p2":
      "Die Idee zu MOVA entstand, als ich einen befreundeten Profifußballer bei seinen Umzügen durch mehrere europäische Länder begleitete.",
    "founder.p3":
      "Wohnen, Verwaltung, Fahrzeugüberstellung, Formalitäten für Haustiere — niemand kümmerte sich wirklich darum.",
    "founder.p4": "Also habe ich es zu meinem Beruf gemacht.",
    "founder.signature": "— GRÜNDER · PARIS",

    "contact.eyebrow": "Kontakt",
    "contact.line1": "Wohnen, Umzug,",
    "contact.line2": "Einrichtung, Alltag —",
    "contact.line3": "ein Rundum-Service,",
    "contact.line4": "diskret und wirkungsvoll.",
    "contact.cta": "Beratung anfragen",
    "contact.email": "E-Mail",
    "contact.instagram": "Instagram",
    "contact.whatsapp": "WhatsApp",

    "footer.infos": "Information",
    "footer.langue": "Sprache",
    "footer.suivre": "Folgen",
    "footer.mentions": "Impressum",
    "footer.privacy": "Datenschutz",
    "footer.contact": "Kontakt",
    "footer.copyright": "© 2026 MOVA Relocation. Alle Rechte vorbehalten.",
  },

  // ============================================================
  // ITALIANO
  // ============================================================
  IT: {
    "nav.services": "Servizi",
    "nav.process": "Processo",
    "nav.destinations": "Destinazioni",
    "nav.contact": "Contatti",

    "hero.tagline1": "Sistematevi.",
    "hero.tagline2": "Al resto pensiamo noi.",
    "hero.description":
      "Relocation premium per sportivi professionisti, dirigenti e famiglie in mobilità. Dal trasloco all'installazione completa del quotidiano, in tutta Europa.",
    "hero.cta": "Contattaci",
    "hero.scroll": "SCOPRI",

    "conviction.eyebrow": "La nostra convinzione",
    "conviction.line1": "Il nostro unico obiettivo:",
    "conviction.line2": "che siate",
    "conviction.line3": "liberi",
    "conviction.line4": "da ogni vincolo.",

    "athletes.eyebrow": "Sportivi",
    "athletes.title": "Un giocatore ben sistemato è un giocatore concentrato.",
    "athletes.body":
      "I primi 2-3 mesi in un nuovo club sono decisivi. MOVA libera la mente per ciò che conta davvero.",
    "athletes.pull":
      "Il club si occupa del contratto. L'agente della carriera. Il consulente degli investimenti. Ma chi si occupa del trasloco fino alla vostra installazione? È il nostro mestiere.",
    "athletes.detailCaption": "PALESTRA · PREPARAZIONE",

    "dirigeants.eyebrow": "Dirigenti",
    "dirigeants.title":
      "Un dirigente liberato dalla logistica prende decisioni migliori.",
    "dirigeants.body":
      "Cercare un appartamento, coordinare un trasloco, sistemarsi: non è il vostro mestiere. È il nostro.",
    "dirigeants.detailCaption": "VISTA · URBANA",

    "familles.eyebrow": "Famiglie",
    "familles.title":
      "Una famiglia liberata da ogni vincolo si integra più rapidamente.",
    "familles.body":
      "Scuola, medico, quotidiano — ogni riferimento è al suo posto ancora prima del vostro arrivo. Il nuovo luogo diventa casa dal primo giorno.",
    "familles.detailCaption": "QUOTIDIANO",

    "services.eyebrow": "Il nostro saper fare",
    "services.title1": "Ogni dettaglio.",
    "services.title2": "Ogni esigenza.",
    "services.title3": "Ogni cliente.",
    "services.lead":
      "Un accompagnamento completo, pensato per chi non ha né il tempo né la voglia di occuparsi dei dettagli.",
    "services.tagline": "E tutto ciò di cui avete bisogno, anche ciò a cui non avreste pensato di chiedere.",

    "services.logement.title": "ABITAZIONE",
    "services.logement.body":
      "Ricerca, visite e allestimento della vostra abitazione. Uno spazio pronto da vivere dal primo giorno.",
    "services.demenagement.title": "TRASLOCO",
    "services.demenagement.body":
      "Orchestriamo il vostro trasloco con precisione, dalla partenza all'installazione.",
    "services.scolarite.title": "SCUOLA",
    "services.scolarite.body":
      "Accompagnamento personalizzato per la selezione e l'iscrizione nelle scuole più adatte ai vostri figli.",
    "services.vehicules.title": "VEICOLI",
    "services.vehicules.body":
      "Servizi di trasporto personalizzato. Gestione completa delle pratiche amministrative.",
    "services.quotidien.title": "QUOTIDIANO",
    "services.quotidien.body":
      "Un servizio chiavi in mano che anticipa le esigenze quotidiane (trasporto, salute, sport…).",

    "process.eyebrow": "Processo",
    "process.title1": "Come",
    "process.title2": "funziona",
    "process.lead":
      "Sei tappe pensate per la serenità. Dal primo contatto all'accompagnamento duraturo.",

    "process.step1.title": "PRIMO CONTATTO",
    "process.step1.body": "Una chiamata, un messaggio su WhatsApp o Instagram.",
    "process.step2.title": "ANALISI DELLE VOSTRE ESIGENZE",
    "process.step2.body":
      "Facciamo il punto sulla vostra situazione per rispondere al meglio alle vostre aspettative.",
    "process.step3.title": "PROPOSTA PERSONALIZZATA",
    "process.step3.body":
      "Vi inviamo un piano d'azione su misura e un preventivo chiaro e trasparente.",
    "process.step4.title": "CI OCCUPIAMO DI TUTTO",
    "process.step4.body":
      "Coordiniamo ogni aspetto del vostro progetto.",
    "process.step5.title": "VOI ARRIVATE",
    "process.step5.body":
      "Tutto è pronto. Non vi resta che sistemarvi in tutta serenità.",
    "process.step6.title": "UN LEGAME DURATURO",
    "process.step6.body":
      "Una domanda, un imprevisto, una necessità. Contattateci. Restiamo disponibili, ben oltre la vostra installazione.",

    "destinations.eyebrow": "Destinazioni",
    "destinations.title1": "Una presenza",
    "destinations.title2": "in tutta Europa.",
    "destinations.lead":
      "Da Parigi a Madrid, da Edimburgo a Berlino — accompagniamo i nostri clienti ovunque in Europa.",

    "country.FR": "Francia",
    "country.UK": "Regno Unito",
    "country.ES": "Spagna",
    "country.DE": "Germania",
    "country.IT": "Italia",
    "country.CH": "Svizzera",
    "country.BENELUX": "Benelux",
    "country.MC": "Monaco",

    "testimonials.eyebrow": "Si sono affidati a noi",
    "testimonials.t1.quote":
      "Ho potuto concentrarmi sul campo dal primo giorno.",
    "testimonials.t1.attribution": "CALCIATORE PROFESSIONISTA",
    "testimonials.t2.quote":
      "Ci hanno consegnato molto più di un trasloco. Un quotidiano pronto da vivere.",
    "testimonials.t2.attribution": "DIRIGENTE",
    "testimonials.t2.meta": "GRUPPO QUOTATO, 2026",
    "testimonials.t3.quote":
      "Una nuova città, una nuova scuola, un nuovo quotidiano. Tutto era al suo posto.",
    "testimonials.t3.attribution": "FAMIGLIA",
    "testimonials.t3.meta": "TRASLOCO DA GINEVRA, 2026",

    "founder.eyebrow": "Il fondatore",
    "founder.p1":
      "Ex studente-calciatore negli Stati Uniti, poi responsabile di una società di autisti privati di alta gamma —",
    "founder.p1Italic":
      "un mestiere in cui rispondere alle esigenze dei clienti andava ben oltre il semplice trasporto.",
    "founder.p2":
      "L'idea di MOVA è nata accompagnando un amico calciatore professionista nei suoi traslochi tra più paesi europei.",
    "founder.p3":
      "L'alloggio, le pratiche, il trasporto dei veicoli, le formalità per gli animali domestici — nessuno se ne occupava davvero.",
    "founder.p4": "Allora ne ho fatto il mio mestiere.",
    "founder.signature": "— FONDATORE · PARIGI",

    "contact.eyebrow": "Contatti",
    "contact.line1": "Abitazione, trasloco,",
    "contact.line2": "installazione, quotidiano —",
    "contact.line3": "un servizio chiavi in mano,",
    "contact.line4": "discreto ed efficace.",
    "contact.cta": "Richiedere un accompagnamento",
    "contact.email": "Email",
    "contact.instagram": "Instagram",
    "contact.whatsapp": "WhatsApp",

    "footer.infos": "Informazioni",
    "footer.langue": "Lingua",
    "footer.suivre": "Seguire",
    "footer.mentions": "Note legali",
    "footer.privacy": "Privacy policy",
    "footer.contact": "Contatti",
    "footer.copyright": "© 2026 MOVA Relocation. Tutti i diritti riservati.",
  },
};

Object.assign(window, { LangContext, LangProvider, useLang, useT, TRANSLATIONS });
