/* ==========================================================================
   1. VARIABLES & THÈMES (COULEURS ET TYPO)
   ========================================================================== */
:root {
  /* Mode Clair */
  --bg-color: #f4f1ea;
  --text-color: #666666;
  --link-color: #555555;
  --border-color: rgba(0, 0, 0, 0.1);
  --highlight: #f8b700;
  
  /* Typographie Système */
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Rythme Visuel */
  --lh-body: 1.75;      /* Interlignage lecture */
  --lh-titles: 1.25;    /* Interlignage titres */
  --max-width: 680px;   /* Largeur zone d'écriture */
}

/**media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #1a1a1a;
    --text-color: #eeeeee;
    --link-color: #aaaaaa;
    --border-color: rgba(255, 255, 255, 0.1);
  }
}**/
/* ==========================================================================
   HEADER AVEC LOGO ET SLOGAN CENTRÉS
   ========================================================================== */

.site-header {
  display: flex;
  justify-content: space-between; /* Espace entre spacer, logo et menu */
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  padding-top: 2rem;
}

/* Permet de pousser le logo au milieu */
.header-spacer, .nav-container {
  flex: 1; 
}

.nav-container {
  display: flex;
  justify-content: flex-end; /* Pousse le hamburger à l'extrémité droite */
}

.brand-container {
  flex: 2; /* Donne plus d'espace au centre */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-logo {
  max-height: 60px; /* Ajuste selon la taille de ton logo */
  width: auto;
  margin-bottom: 0.5rem;
  display: block;
}

.site-slogan {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* On garde le reste du CSS pour le hamburger et l'overlay... */

.menu-checkbox { display: none; }

.hamburger {
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: 0.3s;
}
/* ==========================================================================
   2. STRUCTURE DE BASE
   ========================================================================== */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-system);
  line-height: var(--lh-body);
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow-x: hidden; /* Empêche le défilement horizontal dû au menu caché */
  -webkit-font-smoothing: antialiased;
}

main {
  width: 90%;
  max-width: var(--max-width);
  margin: 40px 0 100px 0;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   3. HEADER & MENU HAMBURGER (SANS JS)
   ========================================================================== */
.site-header {
  display: flex;
  justify-content: space-between; /* Titre à gauche, Menu à droite */
  align-items: center;
  width: 100%;
  margin-bottom: 3rem;
}

.site-title {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  color: var(--text-color);
  opacity: 0.6;
  font-size: 1rem;
}

/* Logique du menu caché */
.menu-checkbox {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Voile d'arrière-plan (Overlay) */
.menu-overlay-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

/* Panneau latéral du menu */
.nav-overlay {
  position: fixed;
  top: 0;
  right: -300px; /* Caché à droite */
  width: 280px;
  height: 100%;
  background-color: var(--bg-color);
  border-left: 1px solid var(--border-color);
  z-index: 1000;
  padding: 80px 40px;
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-sizing: border-box;
}

/* États activés (quand la checkbox est cochée) */
.menu-checkbox:checked ~ .nav-overlay { right: 0; }
.menu-checkbox:checked ~ .menu-overlay-screen { opacity: 1; visibility: visible; }

.menu-checkbox:checked ~ .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-checkbox:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.menu-checkbox:checked ~ .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-content a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-color);
  font-size: 1.2rem;
}

/* ==========================================================================
   SECTION HERO (ACCUEIL)
   ========================================================================== */

.home-hero {
  padding: 4rem 0 3.5rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

/* Titre principal avec mise en évidence */
.home-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.home-hero .highlight {
  color: var(--link-color);
  border-bottom: 4px solid var(--highlight);
}

/* Sous-titre descriptif */
.home-hero .subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 550px;
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

/* Conteneur des boutons de contact */
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* Espace entre les boutons cat-button */
}

/* Responsive : ajustement pour mobile */
@media (max-width: 650px) {
  .home-hero {
    padding: 3rem 0 2.5rem 0;
  }
  
  .home-hero h1 {
    font-size: 2.2rem;
  }
  
  .home-hero .subtitle {
    font-size: 1.1rem;
  }
}
/* ==========================================================================
   SECTION CTA EN TRIANGLE (INFO, PROJETS, JOBS)
   ========================================================================== */

/* Conteneur principal */
.home-cta-triangle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: -1.5rem 0 4rem 0; /* Remonte légèrement pour chevaucher le hero */
  position: relative;
  z-index: 10;
}

/* Lignes du triangle */
.cta-row-top {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-row-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

/* Style de base commun à tous les boutons principaux */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  color: white !important;
  text-decoration: none !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  border: none;
  cursor: pointer;
}

.btn-main:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn-main i, .btn-main svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

/* --- BOUTON JOBS (Sommet du triangle) --- */
.btn-jobs {
  background-color: #f8b700; /* Orange logo / Action */
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

.btn-jobs:hover {
  background-color: #d35400;
  box-shadow: 0 15px 25px rgba(230, 126, 34, 0.3);
}

/* --- BOUTON INFO (Base gauche) --- */
.btn-info {
  background-color: #2ca4dd; /* Bleu foncé logo / Institutionnel */
}

.btn-info:hover {
  background-color: #1a252f;
  box-shadow: 0 12px 25px rgba(44, 62, 80, 0.25);
}

/* --- BOUTON PROJETS (Base droite) --- */
.btn-projets {
  background-color: #00a46f; /* Vert logo / Services */
}

.btn-projets:hover {
  background-color: #1e8449;
  box-shadow: 0 12px 25px rgba(39, 174, 96, 0.25);
}

/* ==========================================================================
   RESPONSIVE (MOBILE)
   ========================================================================== */

@media (max-width: 650px) {
  .home-cta-triangle {
    margin: 1rem 0 3rem 0; /* On annule le chevauchement sur mobile */
    gap: 12px;
  }

  .cta-row-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-main {
    width: 100%;       /* Prend toute la largeur disponible */
    max-width: 320px;  /* Garde une taille lisible */
    min-width: auto;
    padding: 12px 20px;
  }
}
/* ==========================================================================
   4. CONTENU (TITRES & CATÉGORIES)
   ========================================================================== */
h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: var(--lh-titles);
}

p {
  margin-bottom: 1.6rem;
}

/* Grille des catégories */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-button {
  display: inline-flex; /* Aligne l'icône et le texte sur une ligne */
  align-items: center;  /* Centre verticalement l'icône et le texte */
  padding: 6px 14px;
  text-decoration: none !important;
  color: var(--text-color) !important;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
  background: transparent;
}
.cat-button:hover {
  border-color: var(--text-color);
  background: rgba(128, 128, 128, 0.05);
}
/* Le Badge avec couleur dynamique injectée par le HTML */
.cat-badge {
  background-color: var(--color-cat);
  color: white;
  padding: 1px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 8px;
  font-weight: bold;
}

/* Style spécifique pour les icônes Phosphor dans le bouton */
.cat-button i {
  margin-right: 8px;    /* Espace entre l'icône et le texte */
  font-size: 1.1rem;    /* Taille légèrement plus grande que le texte */
  line-height: 1;       /* Évite de déformer la hauteur du bouton */
  color: inherit;       /* L'icône prend la couleur du texte */
}

/* ==========================================================================
   5. LAYOUT ARTICLE / SERVICE (POST-CONTAINER)
   ========================================================================== */
.post-container {
  padding: 2rem 0;
}

.post-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.service-title-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: 2.5rem;
  margin: 0;
  color: var(--c); /* Hérite du Front Matter */
}

.main-icon {
  width: 42px;
  height: 42px;
  stroke: var(--c);
  stroke-width: 2px;
}

/* --- LIENS DANS LE CONTENU (HÉRITAGE) --- */
.post-content a {
  color: var(--c); /* COULEUR DYNAMIQUE DU SERVICE */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.post-content a:hover {
  border-bottom: 1px solid var(--c);
  opacity: 0.8;
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  opacity: 0.5;
}
/* ==========================================================================
   FOOTER DE L'ARTICLE (SERVICES & PROJETS)
   ========================================================================== */

.service-footer {
  margin-top: 5rem;      /* Espace généreux après le contenu */
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
  clear: both;
}

.related-services {
  max-width: 800px;      /* Pour garder une lecture confortable */
}

/* Titre incitatif */
.footer-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  color: var(--text-color);
  letter-spacing: -0.01em;
}

/* Grille de navigation des suggestions */
.service-footer .category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Style des boutons spécifique au footer */
.service-footer .cat-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

/* Effet au survol utilisant la couleur du service (--c) */
.service-footer .cat-button:hover {
  border-color: var(--c);
  background-color: color-mix(in srgb, var(--c), transparent 94%);
  transform: translateY(-2px);
}

/* Icônes Lucide dans le footer */
.service-footer .cat-button i, 
.service-footer .cat-button svg {
  width: 18px;
  height: 18px;
  stroke: var(--c); /* L'icône porte la couleur thématique */
  stroke-width: 2px;
}

/* ==========================================================================
   RESPONSIVE (MOBILE)
   ========================================================================== */

@media (max-width: 650px) {
  .service-footer {
    margin-top: 3.5rem;
    padding-top: 2rem;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }

  /* Sur mobile, on permet un léger scroll si les boutons sont trop nombreux */
  .service-footer .category-nav {
    gap: 8px;
  }
  
  .service-footer .cat-button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
/* ==========================================================================
   PAGE CATÉGORIE : TITRE ET COMPTEUR
   ========================================================================== */
.category-view .back-link {
  display: inline-block;
  color: var(--c) !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.category-count {
  display: block; font-size: 0.85rem; color: var(--text-color);
  opacity: 0.5; text-transform: uppercase; margin-top: 5px;
}

   .category-header {
  margin-bottom: 3.5rem;
}

.category-title {
  color: var(--c) !important;
  display: flex;
  flex-direction: column; /* Le compteur s'affiche sous le titre */
  gap: 8px;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.category-count {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-color);
  opacity: 0.5; /* Plus discret que le nom de la catégorie */
}
/* Style spécifique pour le bouton contact via cat-button */
.cta-wrapper .cat-button {
    background: #ffffff;
    cursor: pointer;
}

.cta-wrapper .cat-button:hover {
    border-color: var(--c) !important;
    background-color: color-mix(in srgb, var(--c), transparent 96%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px color-mix(in srgb, var(--c), transparent 90%);
}

.cta-wrapper .cat-name {
    text-decoration: none !important;
}

/* --- Bouton Envoyer --- */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--c) 0%, #2c387e 100%);
    color: white !important;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: fit-content; /* Reste à gauche ou au centre selon tes goûts */
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(63, 81, 181, 0.25);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(63, 81, 181, 0.35);
}

/* --- Sidebar transformée en Pied de Formulaire --- */
.contact-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-card h3 {
    margin: 0 0 2rem 0;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center; /* Centré pour la mise en pile */
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* On met les infos sur deux colonnes sur PC pour ne pas que ce soit trop long */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #4a5568;
}

.contact-list li i {
    width: 20px;
    height: 20px;
    color: var(--c);
    flex-shrink: 0;
    stroke-width: 2.5px;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .contact-list {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }
    .btn-submit {
        width: 100%;
    }
    .contact-card {
        padding: 1.5rem;
    }
}
/* ==========================================================================
   BOUTON CONTACT (SUR BASE DE CAT-BUTTON)
   ========================================================================== */

/* Style de base hérité de .cat-button avec surcharges pour l'envoi */
.cat-button.btn-submit-contact {
    /* On force les dimensions pour un bouton d'envoi */
    padding: 14px 28px;
    cursor: pointer;
    font-size: 1rem;
    
    /* Couleur Indigo profond (priorité sur le style par défaut) */
    background: #3f51b5 !important;
    border: none !important;
    color: #ffffff !important;
    
    /* Ombre pour le relief */
    box-shadow: 0 4px 12px rgba(63, 81, 181, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    margin-top: 1rem;
    width: fit-content;
}

/* État au survol */
.cat-button.btn-submit-contact:hover {
    background: #2c387e !important; /* Indigo plus sombre au hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(63, 81, 181, 0.3);
}

/* Gestion de l'icône Lucide à l'intérieur */
.cat-button.btn-submit-contact i, 
.cat-button.btn-submit-contact svg {
    stroke: #ffffff !important; /* Force l'icône en blanc */
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Suppression de l'effet de bordure habituel des cat-buttons */
.cat-button.btn-submit-contact::after {
    display: none;
}

/* Alignement sur mobile */
@media (max-width: 600px) {
    .cat-button.btn-submit-contact {
        width: 100%;
        display: flex;
    }
}
/* ==========================================================================
   BANDEAU LOGOS (JUSTE AVANT LE FOOTER)
   ========================================================================== */

.partners-bandeau {
  width: 100%;
  padding: 3rem 0;
  background-color: #fcfcfc; /* Un gris extrêmement léger pour différencier du blanc */
  border-top: 1px solid var(--border-color);
  margin-top: 4rem; /* Espace après le contenu de la page */
}

.partners-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.partners-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94a3b8; /* Gris ardoise clair */
  text-align: center;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px; /* Bel espace entre chaque logo */
  max-width: 900px;
  margin: 0 auto;
}

.partners-logos img {
  height: 32px;      /* Hauteur fixe imposée */
  width: auto;       /* Proportionnalité gardée */
  max-width: 140px;  /* Sécurité largeur */
  
  /* Sobriété : grisés par défaut, couleurs au survol */
  /*filter: grayscale(1) opacity(0.5);
  transition: all 0.4s ease;*/
}

.partners-bandeau:hover .partners-logos img {
  filter: grayscale(0) opacity(0.8);
}

/* --- RESPONSIVE --- */
@media (max-width: 650px) {
  .partners-bandeau {
    padding: 2rem 0;
    margin-top: 2rem;
  }
  
  .partners-logos {
    gap: 25px;
  }
  
  .partners-logos img {
    height: 26px; /* Plus discret sur smartphone */
  }
}
/* ==========================================================================
   LISTE DES JOBS INTÉGRALE (STYLE CATEGORY-NAV)
   ========================================================================== */

.job-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    align-items: start; /* Les cartes ne s'étirent pas toutes à la même hauteur si non souhaité */
}

/* Style du lien conteneur */
.job-nav .cat-button {
    display: block;
    background: #ffffff;
    border: 2px solid color-mix(in srgb, var(--c), transparent 85%);
    border-radius: 16px; /* Bordures arrondies précises */
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important; /* Strictement aucun soulignage */
    color: inherit;
}

.job-nav .cat-button:hover {
    border-color: var(--c);
    background-color: color-mix(in srgb, var(--c), transparent 98%);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(230, 124, 34, 0.1);
}

/* En-tête */
.job-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0; /* Ligne de séparation discrète */
}

.job-card-header i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: var(--c);
    stroke-width: 2.5px;
}

.job-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.job-nav .cat-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
}

/* Corps de l'annonce (Texte complet) */
.job-full-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    white-space: normal; /* Autorise le texte à prendre toute sa place */
}

/* Bouton CTA BlueSky */
.cta-jobs-link {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: #e67c22;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.cta-jobs-link:hover {
    background-color: #d36a1b;
    box-shadow: 0 5px 15px rgba(230, 124, 34, 0.3);
}

@media (max-width: 600px) {
    .job-nav { grid-template-columns: 1fr; }
}
/* ==========================================================================
   BOUTON CTA JOBS (SOUS LA GRILLE)
   ========================================================================== */

.jobs-section-wrapper {
    margin-bottom: 4rem;
}

.jobs-footer-action {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.cta-jobs-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: #e67c22;
    color: #ffffff !important; /* Force le blanc */
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px; /* Style pilule arrondi */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 124, 34, 0.2);
}

.cta-jobs-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 124, 34, 0.3);
    background-color: #d36a1b; /* Légèrement plus sombre au survol */
    opacity: 1 !important;
}

.cta-jobs-link i {
    width: 18px;
    height: 18px;
    stroke-width: 3px;
}

@media (max-width: 600px) {
    .cta-jobs-link {
        width: 100%;
        margin: 0 1.5rem;
        justify-content: center;
    }
}
//* --- Conteneur global --- */
.contact-full-wrapper {
    width: 100%;
    max-width: 800px; /* Optionnel : pour éviter que le formulaire soit trop large sur très grand écran */
    margin: 0 auto;
}

/* --- Formulaire Full Width --- */
.contact-form-section {
    width: 100%;
    margin-bottom: 3rem;
}

.sob-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input, 
.form-group textarea {
    width: 100%; /* Formulaire sur toute la largeur */
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.2s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--c);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c), transparent 90%);
}

/* --- Bouton Envoyer --- */
.btn-submit-contact {
    align-self: flex-start;
    padding: 14px 30px;
    background: #fff;
    border: 2px solid var(--c);
    border-radius: 16px; /* Bords arrondis 16px */
    cursor: pointer;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    background: var(--c);
    color: #fff !important;
    transform: translateY(-3px);
}

/* --- Infos de contact (Grille en bas) --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cat-button.no-link {
    cursor: default;
    border-color: var(--border-color);
    justify-content: flex-start;
}

.cat-button.no-link:hover {
    transform: none;
    background: #fff;
}


/* ==========================================================================
   GRILLE ET CARTES (RAPPEL)
   ========================================================================== */

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 650px) {
  .post-grid {
    grid-template-columns: 1fr 1fr;
  }

.post-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.post-card:hover {
  border-color: var(--c);
  transform: translateY(-4px);
  background: rgba(128, 128, 128, 0.02);
}

.post-card-title {
  margin: 0;
  font-size: 1.35rem;
  color: var(--c);
  font-weight: 600;
  line-height: 1.3;
}

.post-date {
  margin-top: 25px;
  font-size: 0.8rem;
  opacity: 0.4;
  color: var(--text-color);
}
