/* ========== Reset léger & base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Conteneur global */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 16px;
}

/* ========== Header : logo + menu ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

/* Header : logo + menu alignés sur la même ligne */
.header-inner,
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}


/* Logo (image + texte EUREKA / Intérim Mayotte) */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 55px;
  width: auto;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #0f5fff;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
}

/* Navigation principale */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  position: relative;
  color: #374151;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #0f5fff;
}

.main-nav a[aria-current="page"] {
  color: #0f5fff;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background-color: #0f5fff;
}

/* Toggle menu burger (checkbox + bouton) */
.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none; /* visible seulement en mobile */
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  gap: 4px;

}

.nav-toggle-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #111827;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ========== Section Hero ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 5rem;
  color: #ffffff;
  overflow: hidden;   /* 🔴 très important */
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ou contain, peu importe ici */
}



/* Contenu hero */
.hero-content {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.hero-text {
  max-width: 640px;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #dccf00;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Image/colonne de droite éventuellement masquée */
.hero-illustration {
  display: none; /* tu n’en as pas besoin si l’image est en arrière-plan */
}

/* Boutons Hero – style premium */
.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

/* Bouton principal : jaune EUREKA */
.hero-actions .btn-primary {
  background-color: #dccf00;
  color: #1e3a59;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus {
  background-color: #f1dc22;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

/* Bouton secondaire : blanc / bleu foncé */
.hero-actions .btn-secondary {
  background-color: #ffffff;
  color: #1e3a59;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus {
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

/* ========== Section Présentation rapide ========== */

/* --- TITRE DE SECTION (section-intro) --- */
.section-intro {
  margin-top: 3rem;   /* tu peux tester 2rem, 3rem, 4rem selon ton goût */
  
}


.section-intro h2,
.section-intro .section-intro-title {
  font-weight: 600;
  text-align: left;              
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;         /* important pour que le trait reste sous le titre */
}


.section-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;  /* ou ta valeur actuelle */
  gap: 2.5rem;
  align-items: center;               /* ⭐ centre les 2 colonnes verticalement */
}


.section-intro-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111827;
}

/* --- PETIT TITRE TYPE TAG (style section titre) --- */
.intro-tag {
  font-size: 2rem !important;
  font-weight: 700;
  text-transform: none;       /* optionnel : tu peux garder uppercase */
  letter-spacing: normal;     /* optionnel */
  color: #2563eb !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;
}

.intro-tag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #2563eb;
  border-radius: 3px;
}



.intro-lead {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.75rem;
}

.section-intro-text p {
  color: #4b5563;
}

/* Conteneur des 3 cartes */
.section-intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 0;
}

/* Carte générique */
.intro-card {
  position: relative;
  padding: 1.75rem 1.75rem 1.6rem;
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Effet moderne au survol */
.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.18);
  border-color: rgba(37, 99, 235, 0.4);
}

/* Petit highlight en haut de la carte */
.intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid rgba(37, 99, 235, 0.8);
  opacity: 0.9;
  pointer-events: none;
}

/* Titres des cartes */
.intro-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  color: #0f172a;
}

.intro-card li,
.intro-card p {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}


/* Couleurs de fond légèrement différentes par type de carte */
.intro-card--candidats {
  background: linear-gradient(145deg, #eff6ff, #ffffff);
}

.intro-card--entreprises {
  background: linear-gradient(145deg, #ecfeff, #ffffff);
}

.intro-card--valeur {
  background: linear-gradient(145deg, #fefce8, #ffffff);
}


/* On enlève les puces natives dans les listes internes */
.intro-card ul {
    list-style: none;   /* 🔥 enlève les puces natives */
    margin: 0;
    padding-left: 0;
}

.intro-card {
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

/* ===============================
   CARTES AVEC COULEURS PREMIUM
   =============================== */

/* Carte Candidats — BLEU PREMIUM */
.intro-card--candidats {
    background: linear-gradient(135deg, #e8f0ff, #d4e4ff);
    border: 1px solid #b4c9ff;
    box-shadow: 0 10px 25px rgba(15, 95, 255, 0.08);
}

.intro-card--candidats h3 {
    color: #0f5fff;
}

/* Carte Entreprises — JAUNE PREMIUM */
.intro-card--entreprises {
    background: linear-gradient(135deg, #fff7c2, #ffe889);
    border: 1px solid #f4d94d;
    box-shadow: 0 10px 25px rgba(220, 207, 0, .10);
}

.intro-card--entreprises h3 {
    color: #9c8600;
}

/* Carte Valeur Ajoutée — TURQUOISE PREMIUM */
.intro-card--valeur {
    background: linear-gradient(135deg, #d5f5f9, #bdebef);
    border: 1px solid #8ddce3;
    box-shadow: 0 10px 25px rgba(0, 168, 181, 0.10);
}

.intro-card--valeur h3 {
    color: #007c88;
}

/* Style commun aux cartes pour professionnalisme */
.intro-card {
    border-radius: 1rem;
    padding: 1.4rem 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Effet hover subtil mais classe */
.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* Puces */
/* Style propre pour chaque ligne */
.intro-card li {
    position: relative;
    padding-left: 1.1rem;   /* espace pour la puce custom */
    margin-bottom: 0.35rem;
}

/* Puce custom, propre et stable */
.intro-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.25rem;          /* centre verticalement la puce */
    font-size: 1rem;
    color: #1e3a59;
}

/* Section Secteurs */
.section-secteurs {
  margin-top: 2rem;
  text-align: center;
}

/* --- TITRE SECTEURS D’ACTIVITÉ --- */
.section-secteurs .secteurs-title {
  font-size: 2rem !important;       /* remet la bonne taille */
  font-weight: 700;
  text-align: center;
  color: #2563eb !important;        /* bleu Eureka */
  margin-bottom: 1.8rem !important; /* remet un bel espace sous le titre */
  position: relative;
}

/* Trait centré sous le titre */
.section-secteurs .secteurs-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #2563eb;
  border-radius: 3px;
}




.secteurs-subtitle {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #475569;
}

/* Grille responsive */
.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

/* Carte générique */
.secteur-card {
  position: relative;
  border-radius: 1.2rem;
  padding: 1.9rem 1.4rem 1.7rem;
  color: #0f172a;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Conteneur de l’icône : pastille ronde blanche */
.secteur-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem; /* emoji ou svg */
  margin-bottom: 0.9rem;
}

/* Titre */
.secteur-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* Effet hover */
.secteur-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.28);
}


/* ----- Section Secteurs : Styles généraux ----- */

.secteur-card--btp {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.55);
  color: #f9fafb;
}

.secteur-card--admin {
  background: linear-gradient(135deg, #ea580c, #fdba74);
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.55);
  color: #111827;
}

.secteur-card--transport {
  background: linear-gradient(135deg, #16a34a, #86efac);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.55);
  color: #022c22;
}

.secteur-card--commerce {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  box-shadow: 0 18px 40px rgba(225, 29, 72, 0.55);
  color: #fdf2f8;
}

.secteur-card--nettoyage {
  background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.55);
  color: #0f172a;
}

.secteur-card--securite {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}

.secteur-card--restauration {
  background: linear-gradient(135deg, #f59e0b, #facc15);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.55);
  color: #291507;
}

.secteur-card--social {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  box-shadow: 0 18px 40px rgba(99, 102, 241, 0.55);
  color: #eef2ff;
}

.secteur-card--agri {
  background: linear-gradient(135deg, #15803d, #4ade80);
  box-shadow: 0 18px 40px rgba(21, 128, 61, 0.55);
  color: #ecfdf3;
}

/* Pastille icône sur fond coloré */
.secteur-card--btp .secteur-icon,
.secteur-card--admin .secteur-icon,
.secteur-card--transport .secteur-icon,
.secteur-card--commerce .secteur-icon,
.secteur-card--nettoyage .secteur-icon,
.secteur-card--securite .secteur-icon,
.secteur-card--restauration .secteur-icon,
.secteur-card--social .secteur-icon,
.secteur-card--agri .secteur-icon {
  background: rgba(255, 255, 255, 0.96);
}

/***** Couleur de fonds de la section secteur ********/
.section-secteurs {
    background: #eaf3ff;   /* bleu très clair */
}

.section-secteurs h2 {
  color: #0f172a;
}

.section-secteurs .secteurs-subtitle {
  color: #475569;
}



/* ----- Section Offres d'emploi récentes ----- */

.section-offres {
  padding: 4rem 1rem;
  max-width: 1120px;
  margin: 3rem auto 0;
}

.offres-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #2563eb;
  position: relative;
}

/* Trait centré */
.offres-title::after {
  content: "";
  position: absolute;
  left: 50%;                /* positionnement au centre */
  transform: translateX(-50%); /* recalcule pour centrer parfaitement */
  bottom: -10px;            /* espace sous le titre */
  width: 60px;
  height: 3px;
  background: #2563eb;
  border-radius: 3px;
}



.offres-subtitle {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 0.98rem;
  color: #475569;
}

/* Grille des cartes */

.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Carte offre */

.offre-card {
  background: #ffffff;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.offre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
  border-color: rgba(37, 99, 235, 0.5);
}

/* Image en haut de la carte */

.offre-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;      /* garde le même ratio pour toutes les cartes */
  overflow: hidden;
}

.offre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenu en bas */

.offre-body {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.offre-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.offre-meta {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
}

.offre-desc {
  margin: 0.2rem 0 0.3rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Lien "Voir l’offre" */

.offre-link {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.offre-link:hover {
  text-decoration: underline;
}

/* Lien "Voir toutes nos offres" */

.offres-actions {
  margin-top: 2rem;
  text-align: center;
}

.offres-all-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
}

.offres-all-link::after {
  content: " →";
}


.offre-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden; /* indispensable pour cacher l’image quand elle zoom */
}

.offre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease; /* animation fluide */
}

/* Effet zoom au survol */
.offre-card:hover .offre-image img {
  transform: scale(1.08); /* zoom de 8% propre et luxueux */
}

/* ----- Section Pourquoi + Équipe + Processus ----- */

/* --- TITRE DE SECTION : Pourquoi EUREKA --- */
.why-col h2 {
  font-size: 2rem !important;
  font-weight: 700;
  text-align: left;
  color: #2563eb !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;
}

.why-col h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #2563eb;
  border-radius: 3px;
}


/* SECTION PLEINE LARGEUR */
.section-why-process {
  background: #eaf3ff;
  padding: 1rem 0;     /* réduit et harmonisé */
  margin-top: 2.5rem;    /* espace raisonnable depuis la section précédente */
}

/* CONTENU CENTRÉ */
.why-process-inner {
  max-width: 1120px;       /* le contenu reste centré */
  margin: 0 auto;          /* centrer horizontalement */
  padding: 0 1rem;         /* petite marge interne à gauche/droite */

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: flex-start;
}


/* Colonne 1 : Pourquoi EUREKA - EQUIPE - PROCESSUS DE RECRUTEMENT*/

.why-col h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #0f172a;
}

.why-intro {
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  color: #475569;
}

.why-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.why-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #1f2937;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0edff;
  color: #1d4ed8;
}

/* Colonne 2 : Carte équipe */

.team-card {
  background: #ffffff;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  align-self: center;  /* ⭐ centre UNIQUEMENT la carte équipe */
}

.team-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

/* Zoom léger au survol de la carte équipe */
.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-body {
  padding: 1.3rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.team-body h2 {
  font-size: 1.3rem;
  margin: 0 0 0.2rem;
  color: #0f172a;
}

.team-body p {
  margin: 0;
  font-size: 0.93rem;
  color: #4b5563;
}

.team-highlight {
  margin-top: 0.3rem;
  font-weight: 600;
  color: #1d4ed8;
}

.team-body h2.team-title-colored {
  color: #2563eb;
  font-weight: 700;
}

.team-body .team-highlight-colored {
  color: #1d4ed8;
  font-weight: 700;
  margin-top: 0.3rem;
}



/* Colonne 3 : Processus */

.process-col h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #0f172a;
}

.process-intro {
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  color: #475569;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-steps li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1.1rem;
}

.process-steps li h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
  color: #0f172a;
}

.process-steps li p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Pastille numérotée */

.process-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

/* Chiffre dans la pastille via le titre */

.process-steps li:nth-child(1) h3::before,
.process-steps li:nth-child(2) h3::before,
.process-steps li:nth-child(3) h3::before {
  position: absolute;
  left: 0.45rem;
  top: 0.28rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f9fafb;
}

.process-steps li:nth-child(1) h3::before { content: "1"; }
.process-steps li:nth-child(2) h3::before { content: "2"; }
.process-steps li:nth-child(3) h3::before { content: "3"; }

/* --- TITRE DE LA COLONNE : Processus de recrutement --- */
.process-col h2 {
  font-size: 2rem !important;
  font-weight: 700;
  text-align: left;
  color: #2563eb !important;     /* bleu Eureka */
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;         /* permet au trait de rester sous le texte */
}

/* Trait moderne sous le titre */
.process-col h2::after {
  content: "";
  position: absolute;
  left: 0;                       /* aligné à gauche */
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #2563eb;           /* bleu Eureka */
  border-radius: 3px;
}


/*******CONTACT**********/
/* ===== Contact (formulaire + carte) ===== */
.contact .section-title {
  position: relative;
  color: #2563eb;
}

.contact .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #2563eb;
  border-radius: 3px;
}


.contact {
  padding-block: 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* formulaire / carte */
  gap: 36px;
  align-items: start;
}
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ----- Bouton Envoyer (section Contact) ----- */
/* ----- Bouton Envoyer (style Hero arrondi) ----- */
.contact .btn-ghost {
  background-color: #1F435F;   /* bleu bannière */
  color: #ffffff;
  padding: 12px 32px;          /* légèrement plus large pour arrondi */
  border-radius: 40px;         /* <<< même style arrondi que le Hero */
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
  display: inline-block;
}

/* Hover */
.contact .btn-ghost:hover {
  background-color: #2a577a;  /* bleu clair */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 67, 95, 0.3);
}

/* Click */
.contact .btn-ghost:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(31, 67, 95, 0.2);
}


@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 320px;
  }
}

/* Formulaire */
.contact-intro {
  color: var(--muted);
  margin: 6px 0 18px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: grid;
  gap: 6px;
}
.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e7e1d9;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2563eb !important; /* ⇦ BLEU EUREKA */
  box-shadow: 0 0 0 3px rgba(90,56,42,.12);
}
.form-consent {
  margin-top: 4px;
}
.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; color: var(--text);
}
.checkbox input {
  margin-top: 4px;
}
.form-actions {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-top: 6px;
}
.form-note { color: var(--muted); font-size: .9rem; }

/* Anti-spam */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Réseaux sociaux (Contact et footer) */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  align-items: center;
}
.social-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  transition: color .3s ease, transform .3s ease;
}
.social-links li a:hover {
  color: var(--brand);
  transform: translateY(-2px);
}
.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}


/* STYLE TITRE Contact — même taille que les autres titres */
#titre-contact.section-title {
  font-size: 2rem !important;       /* même taille que les H2 des autres sections */
  font-weight: 700;
  color: #2563eb !important;        /* bleu Eureka / corporate */
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

/* Trait bleu sous le titre Contact */
#titre-contact.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;                      /* longueur du trait */
  height: 3px;
  background: #2563eb;              /* bleu Eureka */
  border-radius: 3px;
}

/* Responsive Contact */
@media (max-width: 560px){
  .contact { padding-block: 56px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Ancre confortable Contact */
#contact { scroll-margin-top: 90px; }

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.form-status.success {
  color: #1b7f3b; /* vert */
}

.form-status.error {
  color: #c0392b; /* rouge */
}


/* ----- Responsive ----- */

@media (max-width: 960px) {
  .why-process-inner {
    grid-template-columns: 1fr;
  }

  .section-why-process {
    padding: 3rem 1rem;
  }
}


/* ----- Responsive ----- */

@media (max-width: 900px) {
  .offres-grid {
    grid-template-columns: 1fr;
  }
}


/* ----- Responsive ----- */

@media (max-width: 900px) {
  .offres-process-inner {
    grid-template-columns: 1fr;
  }

  .section-offres-process {
    padding: 3rem 1rem;
  }
}


/* ===== Footer ===== */
.site-footer {
  background: #1F435F;   /* ← bleu exact de la bannière */
  color: #f5efe7;
  padding-top: 60px;
  padding-bottom: 20px;
  font-size: 0.95rem;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}
.footer-brand p {
  color: #ddd0c4;
  line-height: 1.6;
}
.footer-nav h3,
.footer-contact h3 {
  color: #f0cfa3;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav ul li,
.footer-contact ul li {
  margin: 6px 0;
}
.footer-nav a,
.footer-contact a {
  color: #f5efe7;
  text-decoration: none;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: #f0cfa3;
}

/* Réseaux dans le footer : texte clair */
.site-footer .social-links li a {
  color: #f0cfa3;
}
.site-footer .social-links li a:hover {
  color: #ffffff;
}

/* Ligne du bas */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #d8cfc4;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f0cfa3;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ========== Responsivité ========== */

/* Tablette & mobile : menu burger */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    z-index: 40;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 14px 16px;
  }

  .nav-toggle-btn {
    display: flex;
  }

  /* Animation burger */
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-toggle:checked ~ .main-nav {
    transform: translateY(0);
  }

  /* Hero en colonne unique */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-subtitle {
    max-width: 100%;
  }
}

/* Adaptation section présentation sur tablette */
@media (max-width: 992px) {
  .section-intro-grid {
    grid-template-columns: 1fr;
  }
  .section-intro-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Petites tablettes & mobiles */
@media (max-width: 640px) {
  .section-intro-highlights {
    grid-template-columns: 1fr;
  }
}

/* Affinages petits mobiles */
@media (max-width: 480px) {
  .brand-name {
    font-size: 1rem;
  }

  .header-inner {
    min-height: 58px;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-content {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .logo-img {
    height: 45px;
  }
}
