/* ========================================
   AXECONSULTING RH - Theme Ultra Premium
   ========================================

   EXPLICATION POUR DEBUTANT :
   Ce fichier CSS donne le STYLE au site.
   Si le HTML est le squelette (les os),
   le CSS est la peau, les vetements, le maquillage.

   Il definit :
   - Les COULEURS (bleu profond, orange, blanc...)
   - Les TAILLES (des textes, des boutons...)
   - Les POSITIONS (centrer, aligner a gauche...)
   - Les ANIMATIONS (apparitions, survols...)

   STRUCTURE DU FICHIER :
   1. Variables (les couleurs qu'on reutilise partout)
   2. Reset (on remet tout a zero pour partir d'une base propre)
   3. Composants generaux (boutons, conteneurs)
   4. Header (barre de navigation)
   5. Hero (section d'accueil)
   6. Piliers (les 3 forces du cabinet)
   7. A propos (qui sommes-nous)
   8. Services (les cartes de services)
   9. Statistiques (les chiffres cles)
   10. Contact (formulaire)
   11. Footer (pied de page)
   12. Animations
   13. Responsive (adaptation telephone/tablette)
======================================== */


/* ===========================================
   1. VARIABLES CSS
   ===========================================
   Les variables commencent par "--".
   On les definit UNE FOIS ici, puis on les
   reutilise dans tout le fichier.

   Pourquoi ? Si on veut changer une couleur,
   on la change a UN SEUL endroit et ca se met
   a jour PARTOUT automatiquement !

   Exemple : var(--blue-deep) = #0E2A47
=========================================== */
:root {
  /* Couleurs principales */
  --blue-deep: #0E2A47;       /* Bleu profond = couleur principale */
  --blue-darker: #091c33;     /* Version encore plus sombre */
  --blue-darkest: #060f1e;    /* Presque noir-bleu pour le footer */
  --orange: #F47A20;          /* Orange premium = couleur d'accent */
  --orange-hover: #e06910;    /* Orange un peu plus fonce au survol */
  --white: #ffffff;            /* Blanc pur */
  --off-white: #f8f9fb;       /* Gris TRES clair pour les fonds */
  --gray-light: #f1f3f6;      /* Gris clair */
  --gray: #e2e6ec;            /* Gris moyen pour les bordures */

  /* Couleurs du texte */
  --text-dark: #1a1a2e;       /* Texte principal (presque noir) */
  --text-body: #4a5568;       /* Texte courant (gris fonce) */
  --text-light: #718096;      /* Texte secondaire (gris) */
  --text-white: rgba(255, 255, 255, 0.9);
  --text-white-muted: rgba(255, 255, 255, 0.5);

  /* WhatsApp */
  --green-wa: #25d366;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(14, 42, 71, 0.06);
  --shadow: 0 4px 20px rgba(14, 42, 71, 0.08);
  --shadow-lg: 0 12px 40px rgba(14, 42, 71, 0.12);
  --shadow-card: 0 2px 16px rgba(14, 42, 71, 0.06);

  /* Arrondis des coins */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transition = la vitesse des animations de survol */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===========================================
   2. RESET
   ===========================================
   On remet tout a zero.
   Chaque navigateur (Chrome, Safari, Firefox)
   a ses propres reglages par defaut.
   Le reset les uniformise pour que le site
   soit IDENTIQUE partout.
=========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* ^ box-sizing: border-box = les paddings et bordures
     sont INCLUS dans la largeur. Tres pratique ! */
}

html {
  scroll-behavior: smooth;
  /* ^ Quand on clique sur un lien #section,
     la page GLISSE doucement au lieu de sauter */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /* ^ "Inter" est la police principale.
     Si elle ne charge pas, le navigateur utilise
     la police systeme de l'ordinateur */
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  /* ^ Cache le debordement horizontal (pas de scroll gauche-droite) */
  -webkit-font-smoothing: antialiased;
  /* ^ Rend le texte plus lisse sur Mac */
  line-height: 1.6;
}

/* Polices pour les titres */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  /* ^ Police elegante avec empattements pour les grands titres */
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

/* Quand on selectionne du texte */
::selection {
  background: var(--orange);
  color: white;
}

/* Barre de defilement personnalisee */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--blue-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* Images : toujours en bloc et jamais plus larges que leur parent */
img {
  display: block;
  max-width: 100%;
}

/* Liens : pas de soulignement par defaut */
a {
  text-decoration: none;
  color: inherit;
}


/* ===========================================
   3. COMPOSANTS GENERAUX
   ===========================================
   Conteneur, boutons, labels de section
   = les pieces reutilisables partout
=========================================== */

/* -- Conteneur principal --
   Centre le contenu et limite sa largeur a 1200px.
   "margin: 0 auto" = centre horizontalement */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Boutons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

/* Bouton orange (principal) - gradient attractif */
.btn-primary {
  background: linear-gradient(135deg, #F47A20, #e06910);
  color: white;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e06910, #c85a0a);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 122, 32, 0.4);
}
.btn-primary svg {
  transition: transform 0.3s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Bouton outline blanc (bord blanc, fond transparent) */
.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Bouton WhatsApp vert - gradient vibrant */
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.btn-wa:hover {
  background: linear-gradient(135deg, #1ebe57, #0e7a6e);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Bouton pleine largeur */
.btn-full {
  width: 100%;
  justify-content: center;
}

/* -- Labels de section (petits titres au-dessus des H2) -- */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.label-line {
  width: 32px;
  height: 2px;
  background: var(--orange);
  display: block;
}

/* -- En-tetes de section -- */
.section-head {
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  /* ^ clamp() = taille responsive :
     minimum 28px, ideal 3.5% de la largeur ecran, maximum 42px */
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-head p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}


/* ===========================================
   4. HEADER (Barre de navigation)
   ===========================================
   La barre fixe en haut du site.
   "position: sticky" + "top: 0" = reste collee en haut
   quand on fait defiler la page.
=========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* ^ z-index eleve = TOUJOURS au-dessus des autres elements */
  background: var(--blue-deep);
  transition: var(--transition);
}

/* Quand on scrolle, le header devient plus compact */
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Disposition interne du header : logo a gauche, nav a droite */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

/* -- Logo -- */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  background: white;
  padding: 4px;
}

.logo-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
  letter-spacing: 2px;
}

/* Le "RH" en orange dans le nom */
.logo-name span {
  color: var(--orange);
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-white-muted);
  margin-top: 2px;
}

/* -- Navigation -- */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: white;
}

/* Petite barre sous le lien actif/survole */
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s;
}
.nav a:hover::after,
.nav a.active::after {
  width: 50%;
}

/* Bouton Contact dans la nav */
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  border-radius: 6px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* -- Bouton toggle langue FR/EN -- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  transition: var(--transition);
  margin-left: 8px;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-toggle .lang-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 2px;
  font-weight: 400;
}

.lang-toggle .lang-active {
  color: var(--orange);
}

/* Quand le header est scrollé, adapter les couleurs du toggle */
.header.scrolled .lang-toggle {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(14, 42, 71, 0.06);
}

/* -- Système bilingue : visibilité FR/EN -- */
body.lang-fr .en {
  display: none !important;
}

body.lang-en .fr {
  display: none !important;
}

/* Par défaut (pas de classe JS), on montre le français */
body:not(.lang-fr):not(.lang-en) .en {
  display: none !important;
}

/* -- Bouton hamburger (menu mobile) --
   Cache par defaut, visible seulement sur petit ecran */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

/* Animation du hamburger quand le menu est ouvert :
   La barre du haut tourne de 45 degres
   La barre du milieu disparait
   La barre du bas tourne de -45 degres
   => Ca forme un X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ===========================================
   5. HERO SECTION
   ===========================================
   La grande section d'accueil avec l'image
   du Pont Alassane Ouattara en fond.

   On empile les couches avec "position: absolute"
   pour les mettre les unes sur les autres.
=========================================== */
.hero {
  position: relative;
  /* ^ "relative" permet de positionner les enfants
     "absolute" A L'INTERIEUR de cette section */
  min-height: 92vh;
  /* ^ Prend au minimum 92% de la hauteur de l'ecran */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}

/* Couche 1 : Image de fond */
.hero-bg {
  position: absolute;
  inset: 0;
  /* ^ "inset: 0" = top:0, right:0, bottom:0, left:0
     L'image remplit TOUT l'espace */
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ^ "cover" = l'image remplit tout en gardant ses proportions,
     meme si ca coupe un peu sur les bords */
}

/* Couche 2 : Voile sombre par-dessus l'image */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(14, 42, 71, 0.92) 0%,
    rgba(14, 42, 71, 0.75) 40%,
    rgba(14, 42, 71, 0.65) 60%,
    rgba(14, 42, 71, 0.85) 100%
  );
  /* ^ "linear-gradient" = un degrade qui va du coin haut-gauche
     vers le coin bas-droite.
     Les valeurs rgba() definissent la transparence :
     0.92 = presque opaque, 0.65 = semi-transparent */
}

/* Couche 3 : Le contenu textuel */
.hero-content {
  position: relative;
  z-index: 10;
  /* ^ z-index: 10 = au-dessus de l'image et du voile */
  max-width: 640px;
  padding: 100px 0 80px;
}

/* Tagline strategique sous la description */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-tag-line {
  width: 32px;
  height: 2px;
  background: var(--orange);
  display: block;
}

/* Titre principal du hero */
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 3px;
  animation: fadeUp 0.8s ease both;
}

/* Le "RH" en orange */
.hero h1 .highlight {
  color: var(--orange);
}

/* Sous-titre descriptif - accent doré */
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: white;
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: 600px;
  font-weight: 600;
  animation: fadeUp 0.8s ease 0.1s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Texte d'appui */
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
  animation: fadeUp 0.8s ease 0.2s both;
}

/* Conteneur des 2 boutons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
  margin-bottom: 0;
}

/* Mention Facebook sous les boutons */
.hero-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-white-muted);
  letter-spacing: 0.5px;
  animation: fadeUp 0.8s ease 0.5s both;
}


/* ===========================================
   6. SECTION PILIERS (Valeur Ajoutee)
   ===========================================
   3 colonnes qui montrent les 3 forces du cabinet.
   Fond gris tres clair pour differencier du hero.
=========================================== */
.pillars {
  padding: 80px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray);
}

.pillars-title {
  text-align: center;
  margin-bottom: 48px;
}

.pillars-title h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--blue-deep);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* ^ 3 colonnes de taille egale */
  gap: 40px;
}

.pillar {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray);
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(14, 42, 71, 0.15);
  border-color: transparent;
}

/* Icone dans un cercle - couleurs uniques par pilier */
.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

/* Pilier 1 : Globe - Orange */
.pillar:nth-child(1) .pillar-icon {
  background: rgba(244, 122, 32, 0.1);
  border: 2px solid rgba(244, 122, 32, 0.3);
}
.pillar:nth-child(1) .pillar-icon svg { stroke: #F47A20; }
.pillar:nth-child(1):hover .pillar-icon {
  background: #F47A20;
  border-color: #F47A20;
  box-shadow: 0 8px 24px rgba(244, 122, 32, 0.3);
}

/* Pilier 2 : Layers - Bleu */
.pillar:nth-child(2) .pillar-icon {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
}
.pillar:nth-child(2) .pillar-icon svg { stroke: #3B82F6; }
.pillar:nth-child(2):hover .pillar-icon {
  background: #3B82F6;
  border-color: #3B82F6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Pilier 3 : Target - Vert */
.pillar:nth-child(3) .pillar-icon {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
}
.pillar:nth-child(3) .pillar-icon svg { stroke: #10B981; }
.pillar:nth-child(3):hover .pillar-icon {
  background: #10B981;
  border-color: #10B981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.pillar-icon svg {
  width: 30px;
  height: 30px;
  transition: var(--transition);
}

.pillar:hover .pillar-icon svg {
  stroke: white;
}

.pillar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}


/* ===========================================
   7. SECTION "QUI SOMMES-NOUS"
   ===========================================
   Photo a gauche + texte structure a droite.
   On utilise CSS Grid pour la disposition.
=========================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  /* ^ Colonne photo = 400px fixe, colonne texte = le reste */
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}

/* -- Photo de la fondatrice -- */
.about-photo-wrapper {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  /* ^ Ratio 3:4 = portrait. L'image sera toujours en format portrait */
}

/* Petit accent decoratif derriere la photo */
.about-photo-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--orange);
  border-radius: var(--radius-xl);
  z-index: -1;
  /* ^ z-index: -1 = DERRIERE la photo */
}

/* Nom sous la photo */
.about-photo-name {
  text-align: center;
  margin-top: 24px;
}

.about-photo-name strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.about-photo-name span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-deep);
}

/* -- Texte de presentation -- */
.about-text-col h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--blue-deep);
  margin-bottom: 28px;
}

.about-paragraphs p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Paragraphe en surbrillance (la conviction fondatrice) */
.about-highlight {
  background: var(--off-white);
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 500;
  color: var(--blue-deep) !important;
}

/* Paragraphe final (l'ambition) */
.about-vision {
  font-style: italic;
  color: var(--blue-deep) !important;
  font-weight: 500;
  padding-top: 8px;
  border-top: 1px solid var(--gray);
}


/* ===========================================
   8. SECTION SERVICES (Mini-nav vers les 3 services)
   ===========================================
   3 cartes cliquables sur fond gris clair,
   qui menent vers les sections detaillees.
=========================================== */
.services-nav {
  padding: 80px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray);
}

.srv-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.srv-nav-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  border: 1px solid var(--gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* Barre orange animee en haut */
.srv-nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.srv-nav-card:hover::before {
  transform: scaleX(1);
}

.srv-nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(14, 42, 71, 0.15);
  border-color: transparent;
}

/* Couleurs individuelles par carte service */
.srv-nav-card:nth-child(1)::before { background: #F47A20; }
.srv-nav-card:nth-child(2)::before { background: #3B82F6; }
.srv-nav-card:nth-child(3)::before { background: #10B981; }

/* Icone dans un carre colore */
.srv-nav-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

/* Couleurs icônes individuelles */
.srv-nav-card:nth-child(1) .srv-nav-icon { background: rgba(244, 122, 32, 0.1); }
.srv-nav-card:nth-child(1) .srv-nav-icon svg { stroke: #F47A20; }
.srv-nav-card:nth-child(1):hover .srv-nav-icon { background: #F47A20; }

.srv-nav-card:nth-child(2) .srv-nav-icon { background: rgba(59, 130, 246, 0.1); }
.srv-nav-card:nth-child(2) .srv-nav-icon svg { stroke: #3B82F6; }
.srv-nav-card:nth-child(2):hover .srv-nav-icon { background: #3B82F6; }

.srv-nav-card:nth-child(3) .srv-nav-icon { background: rgba(16, 185, 129, 0.1); }
.srv-nav-card:nth-child(3) .srv-nav-icon svg { stroke: #10B981; }
.srv-nav-card:nth-child(3):hover .srv-nav-icon { background: #10B981; }

.srv-nav-icon svg {
  width: 30px;
  height: 30px;
  transition: var(--transition);
}

.srv-nav-card:hover .srv-nav-icon svg {
  stroke: white;
}

.srv-nav-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 12px;
  line-height: 1.4;
}

.srv-nav-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* Lien "Decouvrir" en bas de la carte - couleurs par service */
.srv-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.srv-nav-card:nth-child(1) .srv-nav-link { color: #F47A20; }
.srv-nav-card:nth-child(1) .srv-nav-link svg { stroke: #F47A20; }
.srv-nav-card:nth-child(2) .srv-nav-link { color: #3B82F6; }
.srv-nav-card:nth-child(2) .srv-nav-link svg { stroke: #3B82F6; }
.srv-nav-card:nth-child(3) .srv-nav-link { color: #10B981; }
.srv-nav-card:nth-child(3) .srv-nav-link svg { stroke: #10B981; }

.srv-nav-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.srv-nav-card:hover .srv-nav-link {
  filter: brightness(0.85);
}

.srv-nav-card:hover .srv-nav-link svg {
  transform: translateX(4px);
}


/* ===========================================
   8b. SECTIONS SERVICES DETAILLEES
   ===========================================
   Sections completes pour chaque service avec
   blocs, grilles, listes et CTAs.
=========================================== */
.service-detail {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
}

.service-detail-alt {
  background: var(--off-white);
}

/* Dernier service detail n'a pas de bordure basse */
.service-detail:last-of-type {
  border-bottom: none;
}

/* En-tete du service : icone + titre */
.sd-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.sd-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--blue-deep);
  line-height: 1.3;
}

.sd-icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: white;
}

/* Introduction */
.sd-intro {
  max-width: 800px;
  margin-bottom: 40px;
}

.sd-intro p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.sd-intro p strong {
  color: var(--blue-deep);
}

/* Blocs de contenu */
.sd-block {
  margin-bottom: 40px;
}

.sd-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.sd-block p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Bloc en surbrillance */
.sd-block-highlight {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 32px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.service-detail-alt .sd-block-highlight {
  background: var(--white);
}

/* Texte d'emphase */
.sd-emphasis {
  font-weight: 600;
  color: var(--blue-deep) !important;
  font-style: italic;
  margin-top: 16px;
  font-size: 16px !important;
}

/* Grille 2 colonnes */
.sd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

/* Cartes dans la grille */
.sd-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.service-detail-alt .sd-card {
  background: var(--white);
}

.sd-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sd-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sd-card h3 svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  min-width: 22px;
}

/* Listes dans les cartes */
.sd-list {
  list-style: none;
}

.sd-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-light);
}

.sd-list li:last-child {
  border-bottom: none;
}

.sd-list li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--orange);
  margin-top: 2px;
}

/* Liste avec puces (sans icones check) */
.sd-list-bullets li {
  padding-left: 16px;
  position: relative;
}

.sd-list-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* Liste inline (pour le bloc digital) */
.sd-list-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

/* Promesse / valeur ajoutee */
.sd-promise {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--orange);
}

.sd-promise h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sd-promise p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* CTA en bas de section */
.sd-cta {
  text-align: center;
  background: var(--blue-deep);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.sd-cta p {
  font-size: 17px;
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sd-cta .btn-primary {
  font-size: 15px;
  padding: 16px 36px;
}


/* ===========================================
   9. SECTION STATISTIQUES
   ===========================================
   Fond bleu profond avec grands chiffres blancs.
   Donne une impression de solidite et d'autorite.
=========================================== */
.stats {
  padding: 100px 0;
  background: var(--blue-deep);
}

.stats-head {
  margin-bottom: 56px;
}

.stats-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

/* Nombre grand format - couleurs vives par stat */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item:nth-child(1) .stat-number { color: #FF8C00; }
.stat-item:nth-child(2) .stat-number { color: #60A5FA; }
.stat-item:nth-child(3) .stat-number { color: #34D399; }
.stat-item:nth-child(4) .stat-number { color: #C084FC; }

/* Texte sous le nombre */
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Petite barre decorative coloree sous chaque stat */
.stat-item:nth-child(1) .stat-bar { background: #F47A20; }
.stat-item:nth-child(2) .stat-bar { background: #3B82F6; }
.stat-item:nth-child(3) .stat-bar { background: #10B981; }
.stat-item:nth-child(4) .stat-bar { background: #8B5CF6; }

.stat-bar {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}


/* ===========================================
   10. SECTION CONTACT
   ===========================================
   Formulaire a gauche + coordonnees a droite
=========================================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 0;
}

/* -- Formulaire -- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

/* Quand on clique dans un champ, la bordure change de couleur */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.1);
  background: var(--white);
}

/* Texte gris a l'interieur des champs vides */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  /* ^ L'utilisateur peut redimensionner verticalement seulement */
  min-height: 120px;
}

/* -- Carte des coordonnees -- Premium avec gradient */
.contact-info-card {
  background: linear-gradient(145deg, #0E2A47 0%, #132d4a 40%, #0a1f35 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(244, 122, 32, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-info-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* Couleurs VIVES avec glow pour chaque icône de contact */

/* Téléphone - Vert émeraude */
.contact-info-item:nth-child(1) .contact-info-icon {
  background: linear-gradient(135deg, #059669, #10B981);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}
.contact-info-item:nth-child(1) .contact-info-icon svg {
  stroke: white;
}

/* Email - Violet vibrant */
.contact-info-item:nth-child(2) .contact-info-icon {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
}
.contact-info-item:nth-child(2) .contact-info-icon svg {
  stroke: white;
}

/* Adresse - Orange vif */
.contact-info-item:nth-child(3) .contact-info-icon {
  background: linear-gradient(135deg, #FF8C00, #F47A20);
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.35);
}
.contact-info-item:nth-child(3) .contact-info-icon svg {
  stroke: white;
}

/* Facebook - Bleu électrique */
.contact-info-item:nth-child(4) .contact-info-icon {
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.contact-info-item:nth-child(4) .contact-info-icon svg {
  fill: white;
  stroke: none;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Labels colorés pour chaque coordonnée */
.contact-info-item:nth-child(1) strong { color: #34D399; }
.contact-info-item:nth-child(2) strong { color: #A78BFA; }
.contact-info-item:nth-child(3) strong { color: #FF8C00; }
.contact-info-item:nth-child(4) strong { color: #60A5FA; }

.contact-info-item a,
.contact-info-item span {
  font-size: 15px;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--orange);
  text-decoration: underline;
}

/* Bouton WhatsApp en bas de la carte */
.contact-info-card .btn-wa {
  margin-top: 32px;
}


/* ===========================================
   11. FOOTER (Pied de page)
   ===========================================
   Fond presque noir. Informations de base.
=========================================== */
.footer {
  background: var(--blue-darkest);
  padding: 56px 0 0;
  color: var(--text-white-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Logo du footer */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  padding: 3px;
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: white;
  letter-spacing: 2px;
}

.footer-logo-text span {
  color: var(--orange);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

/* Titres des colonnes du footer */
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Liens du footer */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

/* Coordonnees dans le footer */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: var(--transition);
}

/* Couleurs vives des icônes footer */
.footer-contact-item:nth-child(1) svg { stroke: #34D399; }
.footer-contact-item:nth-child(2) svg { stroke: #A78BFA; }
.footer-contact-item:nth-child(3) svg { stroke: #FF8C00; }
.footer-contact-item:nth-child(4) svg { fill: #60A5FA; stroke: none; }

.footer-contact-item:hover svg {
  transform: scale(1.2);
  filter: brightness(1.3);
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

/* Barre copyright */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 12px;
}


/* ===========================================
   12. BOUTON WHATSAPP FLOTTANT
   ===========================================
   Reste fixe en bas a droite de l'ecran.
   position: fixed = ne bouge pas quand on scrolle.
=========================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* Anneau pulsant autour du bouton */
.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2.5s ease infinite;
}

.wa-float svg {
  width: 26px;
  height: 26px;
}


/* ===========================================
   13. ANIMATIONS
   ===========================================
   Les animations font bouger les elements.

   @keyframes = on definit l'animation
   (d'ou elle part et ou elle arrive)

   .rv = "reveal" = animation d'apparition au scroll
   Les elements commencent invisibles et montent
   quand ils entrent dans la zone visible.
=========================================== */

/* Animation : monte depuis le bas en apparaissant */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation du bouton WhatsApp (flottement leger) */
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Classe "rv" = elements qui apparaissent au scroll */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Quand l'element est visible (classe "v" ajoutee par JS) */
.rv.v {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================================
   14. RESPONSIVE (Adaptation mobile/tablette)
   ===========================================
   "@media" = on change le style en fonction
   de la LARGEUR de l'ecran.

   Les "breakpoints" (points de rupture) :
   - 1024px = tablettes et petits ecrans
   - 768px  = telephones en paysage
   - 480px  = telephones en portrait
=========================================== */

/* ---- TABLETTE (1024px et moins) ---- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }

  .srv-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    /* ^ 1 seule colonne : formulaire au-dessus, coordonnees en-dessous */
  }

  .sd-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sd-list-inline {
    grid-template-columns: 1fr;
  }
}

/* ---- MOBILE PAYSAGE (768px et moins) ---- */
@media (max-width: 768px) {
  /* HEADER */
  .header .container {
    height: 64px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-name {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .logo-sub {
    display: none;
    /* ^ On cache le sous-titre du logo sur mobile */
  }

  /* NAV : Menu hamburger */
  .nav {
    display: none;
    /* ^ Cache la nav par defaut sur mobile */
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    /* ^ Quand ouverte, les liens sont empiles verticalement */
    position: fixed;
    inset: 0;
    background: var(--blue-deep);
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1001;
  }

  .nav.open a {
    font-size: 18px;
    padding: 16px 24px;
    color: white;
  }

  .hamburger {
    display: flex;
    /* ^ Affiche le hamburger sur mobile */
  }

  /* Lang toggle sur mobile : plus compact */
  .lang-toggle {
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 8px;
    font-size: 11px;
    margin-left: 0;
  }

  /* HERO */
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  /* SERVICES NAV */
  .services-nav {
    padding: 60px 0;
  }

  .srv-nav-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .srv-nav-card {
    padding: 32px 24px;
  }

  /* PILIERS */
  .pillars {
    padding: 60px 0;
  }

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

  /* ABOUT */
  .about {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-col {
    max-width: 300px;
    margin: 0 auto;
  }

  /* SERVICES DETAILLES */
  .service-detail {
    padding: 70px 0;
  }

  .sd-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .sd-card {
    padding: 24px;
  }

  .sd-block-highlight {
    padding: 24px;
  }

  .sd-cta {
    padding: 32px 24px;
  }

  .sd-list-inline {
    grid-template-columns: 1fr;
  }

  /* STATS */
  .stats {
    padding: 70px 0;
  }

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

  .stat-item {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: clamp(36px, 8vw, 48px);
  }

  /* CONTACT */
  .contact {
    padding: 70px 0;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* WA FLOAT */
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ---- PETIT MOBILE (480px et moins) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-tag {
    font-size: 10px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  .section-head h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .about-text-col h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .pillar {
    padding: 28px 20px;
  }

  .srv-nav-card {
    padding: 24px 16px;
  }

  .sd-card {
    padding: 20px;
  }

  .sd-cta {
    padding: 28px 20px;
  }

  .sd-cta p {
    font-size: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: clamp(32px, 10vw, 42px);
  }

  .contact-info-card {
    padding: 28px 20px;
  }
}
