body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}

    /* === ÉCRAN DE CHARGEMENT === */
    .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.9s ease, visibility 0.9s ease;
    }

    .loading-screen.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .legal-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 35%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 65%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
      background-size: 
        400px 400px,
        400px 400px,
        60px 60px,
        60px 60px;
      animation: patternMove 15s linear infinite;
      opacity: 0.6;
    }

    @keyframes patternMove {
      0% {
        background-position: 
          0% 0%,
          100% 100%,
          0 0,
          0 0;
      }
      100% {
        background-position: 
          400px 400px,
          -400px -400px,
          60px 60px,
          60px 60px;
      }
    }

    .loading-content {
      text-align: center;
      z-index: 2;
      color: white;
    }

    .scales-loader {
      width: 80px;
      height: 80px;
      margin: 0 auto 30px;
      position: relative;
    }

    .scale-pan {
      width: 35px;
      height: 10px;
      background: #d4af37;
      position: absolute;
      border-radius: 2px;
      animation: scaleBalance 2s ease-in-out infinite;
    }

    .scale-pan.left {
      left: 0;
      top: 20px;
      transform-origin: right center;
      animation-delay: 0s;
    }

    .scale-pan.right {
      right: 0;
      top: 20px;
      transform-origin: left center;
      animation-delay: 1s;
    }

    .scale-base {
      width: 4px;
      height: 30px;
      background: #d4af37;
      position: absolute;
      left: 50%;
      top: 50px;
      transform: translateX(-50%);
    }

    @keyframes scaleBalance {
      0%, 100% {
        transform: rotate(0deg);
      }
      25% {
        transform: rotate(-15deg);
      }
      75% {
        transform: rotate(15deg);
      }
    }

    .loading-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #d4af37;
    }

    .loading-subtext {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    .progress-bar {
      width: 200px;
      height: 3px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      margin-top: 20px;
      overflow: hidden;
    }

    .progress {
      height: 100%;
      background: #d4af37;
      width: 0%;
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    /* === Variables CSS - Nouvelle Palette === */
    :root {
      --bleu-fonce: #1a365d;
      --bleu-moyen: #2d4a7c;
      --or: #d4af37;
      --or-hover: #b8941f;
      --blanc: #ffffff;
      --gris-clair: #f8f9fa;
      --gris-moyen: #e2e8f0;
      --texte: #2d3748;
      --texte-clair: #718096;
    }

    /* === Styles Globaux et Site === */
    body { 
      font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
      margin: 0; 
      background-color: var(--gris-clair); 
      scroll-behavior: smooth;
      line-height: 1.6;
      color: var(--texte);
      opacity: 0;
      animation: fadeInBody 1s ease 0.5s forwards;
    }

    @keyframes fadeInBody {
      to { opacity: 1; }
    }
    
    .container { 
      max-width: 1200px; 
      margin: 0 auto; 
      padding: 0 20px; 
    }
    
    /* Indicateur de scroll */
    .scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gris-moyen);
      z-index: 1001;
    }
    
    .scroll-progress {
      height: 100%;
      background: linear-gradient(90deg, var(--or), var(--bleu-moyen));
      width: 0%;
      transition: width 0.3s ease;
    }
    
    /* HEADER */
    .header {
      background-color: var(--bleu-fonce);
      color: var(--blanc);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
      flex-wrap: wrap;
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .header.scrolled {
      background: rgba(26, 54, 93, 0.98);
      backdrop-filter: blur(10px);
      padding: 10px 40px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      cursor: pointer;
    }

    .logo img {
      max-width: 60px;
      height: auto;
      object-fit: contain;
    }

    /* Header - Typographie élégante et professionnelle */
    .logo-text h1 {
      font-family: 'Playfair Display', 'Times New Roman', serif;
      font-size: 22px;
      font-weight: 700;
      margin: 0;
      letter-spacing: 0.5px;
      background: linear-gradient(135deg, var(--blanc) 0%, #e8f4f8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .logo-text p {
      font-family: 'Inter', 'Segoe UI', sans-serif;
      font-size: 12px;
      margin: 0;
      color: var(--gris-moyen);
      font-weight: 400;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }

    .navbar {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      position: relative;
    }

    .navbar a {
      color: var(--blanc);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      padding: 8px 12px;
      border-radius: 4px;
      white-space: nowrap;
      position: relative;
    }

    .navbar a:hover {
      color: var(--or);
      background-color: rgba(255, 255, 255, 0.1);
    }

    .navbar a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--or);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .navbar a:hover::after {
      width: 80%;
    }

    /* Styles pour les menus dépliants */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--bleu-fonce);
      min-width: 220px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 4px;
      overflow: hidden;
      margin-top: 5px;
    }

    .dropdown-content a {
      color: var(--blanc);
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s;
    }

    .dropdown-content a:hover {
      background-color: rgba(255,255,255,0.1);
      color: var(--or);
      padding-left: 20px;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown > a::after {
      content: ' ▼';
      font-size: 0.8em;
      margin-left: 5px;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--blanc);
      font-size: 24px;
      cursor: pointer;
      padding: 5px;
    }

    .mobile-nav {
      display: none;
      width: 100%;
      background-color: var(--bleu-fonce);
      padding: 10px 0;
    }

    .mobile-nav.active {
      display: block;
    }

    .mobile-nav a {
      display: block;
      color: var(--blanc);
      text-decoration: none;
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s;
    }

    .mobile-nav a:hover {
      background-color: rgba(255,255,255,0.1);
      color: var(--or);
      padding-left: 25px;
    }

    /* Styles pour les menus dépliants mobile */
    .mobile-dropdown {
      position: relative;
    }

    .mobile-dropdown-content {
      display: none;
      background-color: rgba(0,0,0,0.2);
      padding-left: 20px;
    }

    .mobile-dropdown-content a {
      padding-left: 40px;
      font-size: 0.9em;
    }

    .mobile-dropdown.active .mobile-dropdown-content {
      display: block;
    }

    .mobile-dropdown > a::after {
      content: ' ▼';
      font-size: 0.8em;
      margin-left: 5px;
    }
    
   /* HERO */
    .hero {
      background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu-moyen) 100%);
      color: var(--blanc);
      text-align: center;
      padding: 120px 20px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="white" d="M500,250c138,0,250,112,250,250S638,750,500,750S250,638,250,500S362,250,500,250z M500,50c248,0,450,202,450,450S748,950,500,950S50,748,50,500S252,50,500,50z"/></svg>');
      background-size: 200px;
      animation: float 20s infinite linear;
    }

    @keyframes float {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(-100px, -100px) rotate(360deg); }
    }

    /* CAROUSEL STYLES */
    .carousel-container {
      opacity: 0;
      transform: scale(0.95);
      transition: all 1s ease;
      margin-top: 40px;
    }
    
    .carousel-container.loaded {
      opacity: 1;
      transform: scale(1);
    }
    
    .hero-text {
      opacity: 0;
      transform: translateY(-20px);
      transition: all 1s ease;
      font-family: 'Playfair Display', 'Times New Roman', serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .hero-text.loaded {
      opacity: 1;
      transform: translateY(0);
    }
    
    .hero-subtitle {
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease 0.3s;
      font-size: 1.25rem;
      max-width: 600px;
      margin: 0 auto 30px;
      line-height: 1.6;
      color: var(--gris-moyen);
    }
    
    .hero-subtitle.loaded {
      opacity: 1;
      transform: translateY(0);
    }
    
    .hero-button {
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease 0.5s;
      margin-top: 40px;
    }
    
    .hero-button.loaded {
      opacity: 1;
      transform: translateY(0);
    }
    
    .carousel-slide {
      transition: transform 0.7s ease-in-out;
    }
    
    .carousel-dot.active {
      background-color: var(--or);
      transform: scale(1.1);
    }

    .carousel-images {
      height: 500px;
      margin-bottom: 30px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* CTA Buttons */
    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .cta-primary, .cta-secondary {
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 50px;
    }

    .cta-primary {
      background: var(--or);
      color: var(--bleu-fonce);
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .cta-primary:hover {
      background: var(--or-hover);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

    .cta-secondary {
      background: transparent;
      color: var(--blanc);
      border: 2px solid var(--blanc);
    }

    .cta-secondary:hover {
      background: var(--blanc);
      color: var(--bleu-fonce);
      transform: translateY(-3px);
    }

    /* ABOUT & SECTIONS */
    .about, .services, .team, .contact, .avantages, .temoignages, .actualites, .faq {
      padding: 100px 20px;
      text-align: center;
    }
    
    .about h2, .services h2, .team h2, .contact h2, .avantages h2, .temoignages h2, .actualites h2, .faq h2 {
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeInUp 1s forwards;
      margin-bottom: 50px;
      font-family: 'Cormorant Garamond', 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.8rem;
      color: var(--bleu-fonce);
      position: relative;
    }

    .about h2::after, .services h2::after, .team h2::after, .contact h2::after, .avantages h2::after, .temoignages h2::after, .actualites h2::after, .faq h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--or), var(--bleu-moyen));
      border-radius: 2px;
    }

    .about p {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
      font-size: 1.1rem;
      color: var(--texte-clair);
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* === NOUVELLE SECTION PARALLAXE AVANTAGES === */
    .avantages-parallax-container {
      position: relative;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }

    .avantages-parallax-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 150%;
      background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
      z-index: -1;
      transform: translateZ(0);
    }

    .avantages-parallax-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.92) 0%,
        rgba(248, 249, 250, 0.96) 100%
      );
      z-index: 0;
    }

    .avantages-parallax-content {
      position: relative;
      z-index: 1;
    }

    /* AVANTAGES SECTION */
    .avantages {
      background: transparent;
    }

    .avantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .avantage-card {
      background: var(--blanc);
      padding: 40px 30px;
      border-radius: 15px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border: 1px solid var(--gris-moyen);
    }
    
    .avantage-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
    
    .avantage-card h3 {
      color: var(--bleu-fonce);
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.4rem;
      margin: 20px 0 15px;
    }

    .avantage-card p {
      color: var(--texte-clair);
      line-height: 1.6;
    }

    .avantage-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .avantage-card:hover .avantage-icon {
      transform: scale(1.2) rotate(5deg);
    }

    /* === SECTION DOMAINES AVEC FOND GÉOMÉTRIQUE === */
    .services-overlay {
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      background-color: var(--gris-clair);
    }

    /* Titre amélioré pour la section domaines */
    .section-title {
      font-family: 'Cormorant Garamond', 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--bleu-fonce);
      margin-bottom: 20px;
      position: relative;
      text-align: center;
    }

    /* Fond géométrique SIMPLIFIÉ et FONCTIONNEL */
    .services-overlay::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 25% 25%, rgba(237, 246, 251, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(148, 175, 189, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(70, 82, 94, 0.1) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(46, 53, 60, 0.1) 50%, transparent 51%);
      background-size: 
        300px 300px,
        400px 400px,
        60px 60px,
        60px 60px;
      opacity: 0.15;
      z-index: 0;
      animation: patternMove 30s linear infinite;
    }

    /* Animation du pattern */
    @keyframes patternMove {
      0% {
        background-position: 
          0% 0%,
          0% 0%,
          0 0,
          0 0;
      }
      100% {
        background-position: 
          300px 300px,
          400px 400px,
          60px 60px,
          60px 60px;
      }
    }

    /* Overlay de lisibilité */
    .services-overlay::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.85) 0%,
        rgba(248, 249, 250, 0.95) 100%
      );
      z-index: 1;
    }

    /* Contenu au-dessus du fond */
    .services-overlay > * {
      position: relative;
      z-index: 2;
    }

    .services-overlay-container {
      display: flex;
      gap: 25px;
      overflow-x: auto;
      padding: 20px 10px;
      scrollbar-width: thin;
      scrollbar-color: var(--bleu-moyen) var(--gris-moyen);
    }

    .services-overlay-container::-webkit-scrollbar {
      height: 8px;
    }

    .services-overlay-container::-webkit-scrollbar-track {
      background: var(--gris-moyen);
      border-radius: 10px;
    }

    .services-overlay-container::-webkit-scrollbar-thumb {
      background: var(--bleu-moyen);
      border-radius: 10px;
    }

    /* CARTES UNIFORMISÉES - TOUTES LA MÊME TAILLE */
    .card-overlay {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  height: 320px; /* Hauteur réduite */
  min-width: 240px; /* LARGEUR RÉDUITE DE MOITIÉ (était 300px) */
  max-width: 240px; /* Largeur maximum fixe */
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--blanc) 0%, #f8fafc 100%);
  border: 1px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
}

    /* IMAGES UNIFORMISÉES - TOUTES LA MÊME TAILLE ET STYLE */
    .article-image {
      width: 100%;
      height: 180px; /* Hauteur fixe pour toutes les images */
      background: linear-gradient(135deg, var(--bleu-moyen), var(--bleu-fonce));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blanc);
      font-size: 3.5rem;
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: hidden;
      flex-shrink: 0; /* Empêche la réduction de taille */
    }

    /* Assurer que toutes les images de fond ont le même comportement */
    .article-image img.card-bg {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Uniformise l'affichage des images */
      object-position: center;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .card-overlay:hover .article-image {
      transform: scale(1.05);
      height: 170px;
    }

    .card-overlay:hover .article-image img.card-bg {
      transform: scale(1.1);
    }

   /* Ajustement du contenu */
.card-overlay .card-content {
  padding: 20px; /* Padding réduit */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.card-overlay .card-content h3 {
  color: var(--bleu-fonce);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem; /* Taille police réduite */
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
  min-height: 2.8em; /* Hauteur réduite */
  display: flex;
  align-items: center;
}

.card-overlay .card-content p {
  color: var(--texte-clair);
  line-height: 1.5;
  font-size: 0.85rem; /* Taille police réduite */
  margin: 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Lignes réduites (était 4) */
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 4.2em; /* Hauteur minimale réduite */
}
    /* Effet de brillance au survol */
    .card-overlay .shine {
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
      );
      transition: left 0.8s ease;
      z-index: 1;
    }

    .card-overlay:hover .shine {
      left: 100%;
    }

    /* Animation d'apparition en cascade pour les cartes */
    @keyframes cardSlideIn {
      0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .card-overlay {
      animation: cardSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .card-overlay:nth-child(1) { animation-delay: 0.1s; }
    .card-overlay:nth-child(2) { animation-delay: 0.2s; }
    .card-overlay:nth-child(3) { animation-delay: 0.3s; }
    .card-overlay:nth-child(4) { animation-delay: 0.4s; }
    .card-overlay:nth-child(5) { animation-delay: 0.5s; }
    .card-overlay:nth-child(6) { animation-delay: 0.6s; }
    .card-overlay:nth-child(7) { animation-delay: 0.7s; }
    .card-overlay:nth-child(8) { animation-delay: 0.8s; }

    /* TEAM - Section horizontale sur mobile */
    .team-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 20px 10px;
      scrollbar-width: thin;
      scrollbar-color: var(--bleu-moyen) var(--gris-moyen);
    }
    
    .team-grid::-webkit-scrollbar {
      height: 8px;
    }
    
    .team-grid::-webkit-scrollbar-track {
      background: var(--gris-moyen);
      border-radius: 10px;
    }
    
    .team-grid::-webkit-scrollbar-thumb {
      background: var(--bleu-moyen);
      border-radius: 10px;
    }
    
    .member-card {
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      min-width: 280px;
      flex-shrink: 0;
    }
    
    .member-card:hover {
      transform: scale(1.05);
    }

    .member-photo {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      border: 4px solid var(--bleu-moyen);
      margin: 0 auto 1.5rem;
      display: block;
      /* Empêche l'image de déborder */
      overflow: hidden;
      /* Assure que l'image garde ses proportions */
      max-width: 100%;
      max-height: 100%;
    }

    .member-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.25rem;
      color: var(--bleu-fonce);
      margin-bottom: 0.5rem;
    }

    .member-role {
      color: var(--texte-clair);
    }
/* TEMOIGNAGES SECTION */
    .temoignages {
       background: linear-gradient(135deg, var(--bleu-moyen) 0%, var(--bleu-fonce) 100%);
      color: var(--blanc);
    }

    .temoignages h2 {
      color: var(--blanc);
    }

    .temoignages h2::after {
      background: var(--or);
    }

    .temoignages-slider {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding: 30px 10px;
      scrollbar-width: none;
    }

    .temoignages-slider::-webkit-scrollbar {
      display: none;
    }

    .temoignage-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 40px 30px;
      border-radius: 15px;
      min-width: 350px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      transition: all 0.3s ease;
    }

    .temoignage-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }

    .temoignage-content {
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 25px;
      position: relative;
    }

    .temoignage-content::before {
      content: '"';
      font-size: 4rem;
      color: var(--or);
      position: absolute;
      top: -20px;
      left: -10px;
      opacity: 0.3;
    }

    .temoignage-auteur {
      text-align: left;
      border-left: 3px solid var(--or);
      padding-left: 15px;
    }

    .temoignage-auteur strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 5px;
    }

    .temoignage-auteur span {
      color: var(--gris-moyen);
      font-size: 0.9rem;
    }

    /* ACTUALITES SECTION */
    .actualites-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .article-card {
      background: var(--blanc);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .article-image-actu {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, var(--bleu-moyen), var(--bleu-fonce));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blanc);
      font-size: 3rem;
    }

    .article-content {
      padding: 30px;
    }

    .article-date {
      color: var(--or);
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .article-card h3 {
      color: var(--bleu-fonce);
      font-size: 1.3rem;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .article-card p {
      color: var(--texte-clair);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .lire-plus {
      color: var(--bleu-moyen);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .lire-plus:hover {
      color: var(--or);
      gap: 10px;
    }

    /* FAQ SECTION */
    .faq {
      background: var(--gris-clair);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--blanc);
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.06);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: var(--blanc);
      border: none;
      padding: 25px 30px;
      text-align: left;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--bleu-fonce);
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question:hover {
      background: var(--gris-clair);
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--or);
      transition: transform 0.3s ease;
    }

    .faq-question.active::after {
      transform: rotate(45deg);
    }

    .faq-reponse {
      padding: 0 30px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      color: var(--texte-clair);
      line-height: 1.6;
    }

    .faq-reponse.active {
      padding: 0 30px 25px;
      max-height: 200px;
    }

    /* CONTACT */
    .contact {
      background: var(--blanc);
    }

    .contact h2 {
      font-family: 'Cormorant Garamond', 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--bleu-fonce);
      position: relative;
      margin-bottom: 50px;
      text-align: center;
      letter-spacing: -0.5px;
    }

    .contact h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--or), var(--bleu-moyen));
      border-radius: 2px;
    }

    .contact-form-container {
      max-width: 800px;
      margin: 0 auto;
      background: var(--blanc);
      padding: 50px;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
      border: 1px solid var(--gris-moyen);
    }

    /* === MINI CARTE DE LOCALISATION === */
    .location-container {
      margin-top: 60px;
      padding: 40px 20px;
      background: var(--gris-clair);
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .location-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .location-info {
      text-align: center;
      max-width: 500px;
    }

    .location-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: var(--bleu-fonce);
      margin-bottom: 15px;
    }

    .location-info p {
      color: var(--texte-clair);
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .mini-map {
      width: 100%;
      max-width: 500px;
      height: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border: 3px solid var(--blanc);
    }

    /* Footer Moderne */
    .footer-nh { 
      background: linear-gradient(135deg, #0f1a30 0%, var(--bleu-fonce) 100%); 
      color: var(--gris-moyen); 
      padding: 80px 20px 30px; 
      position: relative;
      overflow: hidden;
    }

    .footer-nh::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="white" d="M50,20c16.6,0,30,13.4,30,30S66.6,80,50,80S20,66.6,20,50S33.4,20,50,20z M50,5c24.9,0,45,20.1,45,45S74.9,95,50,95S5,74.9,5,50S25.1,5,50,5z"/></svg>');
      background-size: 150px;
      animation: float 25s infinite linear;
    }
    
    .footer-wrapper { 
      display: flex; 
      justify-content: space-between; 
      flex-wrap: wrap; 
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    
    .footer-column { 
      flex: 1; 
      min-width: 220px; 
      margin: 20px; 
    }
    
    .footer-column h3 { 
      color: var(--blanc); 
      margin-bottom: 25px; 
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 15px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--or), var(--bleu-moyen));
      border-radius: 2px;
    }
    
    .footer-column ul { 
      list-style: none; 
      padding: 0; 
    }
    
    .footer-column li a { 
      color: var(--gris-moyen); 
      text-decoration: none; 
      line-height: 2.2; 
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .footer-column li a:hover { 
      color: var(--or); 
      transform: translateX(8px);
    }
    
    .footer-bottom { 
      text-align: center; 
      margin-top: 60px; 
      border-top: 1px solid rgba(255,255,255,0.1); 
      padding-top: 30px; 
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
      border-radius: 50%;
      color: var(--blanc);
      transition: all 0.3s ease;
      text-decoration: none;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
    }
    
    .social-icons a:hover {
      background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }

    /* === Assistant Flottant (Chatbot) === */
    #chatbot-toggle {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: linear-gradient(135deg, var(--or), var(--bleu-moyen));
      color: var(--blanc);
      border: none;
      border-radius: 50%;
      width: 65px;
      height: 65px;
      font-size: 28px;
      cursor: pointer;
      z-index: 10000;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      animation: floatBubble 3s ease-in-out infinite;
    }

    @keyframes floatBubble {
      0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
      }
      50% {
        transform: translateY(-10px) scale(1.05) rotate(5deg);
      }
    }
    
    #chatbot-toggle:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 12px 30px rgba(0,0,0,0.3);
      animation: none;
    }

    #chatbot-window {
      display: none;
      position: fixed;
      bottom: 100px;
      right: 25px;
      width: 380px;
      max-height: 80vh;
      background-color: var(--blanc);
      border-radius: 10px;
      overflow: hidden;
      z-index: 9999;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      font-family: 'Segoe UI', sans-serif;
      animation: fadeIn 0.3s ease-in-out;
      flex-direction: column;
      border: 1px solid var(--gris-moyen);
    }
    
    #chatbot-window.active {
      display: flex;
    }
    
    #chatbot-window-content {
        height: 100%;
        overflow-y: auto;
        padding: 25px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px) scale(0.9); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    
    #scrollToTop {
      position: fixed;
      bottom: 25px;
      left: 25px;
      background: var(--bleu-moyen);
      color: var(--blanc);
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      font-size: 20px;
      cursor: pointer;
      z-index: 1000;
      display: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    #scrollToTop:hover {
      background: var(--or);
      transform: scale(1.1);
    }

    /* === EFFET PARALLAXE PROFESSIONNEL === */
    .parallax-container {
      position: relative;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }

    .parallax-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 150%;
      background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
      z-index: -1;
      transform: translateZ(0);
    }

    .parallax-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.85) 0%,
        rgba(45, 74, 124, 0.75) 50%,
        rgba(212, 175, 55, 0.15) 100%
      );
      z-index: 0;
    }

    /* Ajustements pour les sections dans le parallaxe */
    .parallax-container .team,
    .parallax-container .temoignages {
      background: transparent !important;
      color: var(--blanc);
    }

    .parallax-container .team h2,
    .parallax-container .temoignages h2 {
      color: var(--blanc);
    }

    .parallax-container .team h2::after,
    .parallax-container .temoignages h2::after {
      background: var(--or);
    }

    /* Amélioration des cartes dans le parallaxe */
    .parallax-container .member-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 15px;
      padding: 25px;
      transition: all 0.4s ease;
    }

    .parallax-container .member-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .parallax-container .member-name {
      color: var(--blanc);
    }

    .parallax-container .member-role {
      color: var(--gris-moyen);
    }

    /* Témoignages dans le parallaxe */
    .parallax-container .temoignage-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .parallax-container .temoignage-card:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    /* Boutons pour les sections */
    .section-button {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 25px;
      background: var(--or);
      color: var(--bleu-fonce);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .section-button:hover {
      background: var(--or-hover);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

    /* Version responsive */
    @media (max-width: 1024px) {
      .carousel-images {
        height: 400px;
      }
      
      .services-overlay-container {
        justify-content: flex-start;
      }
      
      .team-grid {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 12px 20px;
      }

      .header.scrolled {
        padding: 8px 20px;
      }

      .navbar {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .carousel-images {
        height: 300px;
        margin-bottom: 25px;
      }
      
      .hero {
        padding: 100px 15px 60px;
      }
      
      .hero-text {
        font-size: 2.2rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }

      .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .about h2, .services h2, .team h2, .contact h2, .avantages h2, .temoignages h2, .actualites h2, .faq h2 {
        font-size: 2.2rem;
      }

      .footer-column {
        min-width: calc(50% - 40px);
      }
      
      .contact-form-container {
        padding: 30px 20px;
        margin: 0 10px;
      }
      
      /* Désactiver l'effet parallaxe sur mobile pour les performances */
      .parallax-background, .avantages-parallax-bg {
        background-attachment: scroll;
        height: 120%;
      }
      
      .parallax-container .member-card {
        padding: 20px;
      }

      /* Responsive pour les nouvelles typographies */
      .logo-text h1 {
        font-size: 18px;
        letter-spacing: 0.3px;
      }
      
      .logo-text p {
        font-size: 10px;
        letter-spacing: 1px;
      }
      
      .contact h2 {
        font-size: 2.2rem;
      }
      
      .about h2, .services h2, .team h2, .avantages h2, 
      .temoignages h2, .actualites h2, .faq h2 {
        font-size: 2rem;
      }
      
      .hero-text {
        font-size: 2.2rem;
      }

      .services-overlay::before {
        opacity: 0.06;
        animation: patternMove 25s linear infinite;
      }
      
      .services-overlay::after {
        background: linear-gradient(
          135deg,
          rgba(248, 249, 250, 0.94) 0%,
          rgba(248, 249, 250, 0.98) 100%
        );
      }

      .location-content {
        flex-direction: column;
      }
      
      .mini-map {
        height: 250px;
      }

      #chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 24px;
        display: flex; /* Toujours visible sur mobile */
      }

      #scrollToTop {
        display: block; /* Toujours visible sur mobile */
      }

      #chatbot-window {
        width: 320px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .parallax-background, .avantages-parallax-bg {
        height: 110%;
      }
      
      .parallax-overlay, .avantages-parallax-overlay {
        background: linear-gradient(
          135deg,
          rgba(26, 54, 93, 0.92) 0%,
          rgba(45, 74, 124, 0.85) 100%
        );
      }

      .logo-text h1 {
        font-size: 16px;
      }
      
      .logo-text p {
        font-size: 9px;
        letter-spacing: 0.8px;
      }
      
      .contact h2 {
        font-size: 1.8rem;
      }
      
      .about h2, .services h2, .team h2, .avantages h2, 
      .temoignages h2, .actualites h2, .faq h2 {
        font-size: 1.8rem;
      }
      
      .hero-text {
        font-size: 1.8rem;
      }

      .services-overlay::before {
        opacity: 0.04;
      }

      .mini-map {
        height: 200px;
      }

      #chatbot-window {
        width: 280px;
      }
    }/* === CORRECTIONS SPÉCIFIQUES POUR LES IMAGES === */



/* Images des cartes équipe - Correction spécifique */
.member-photo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Images du carousel - Correction spécifique */
.carousel-images img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Images des cartes domaines - Correction spécifique */
.card-overlay .article-image img.card-bg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


    
    /* Photos des membres - taille uniforme */
    .member-photo {
        width: 120px !important;
        height: 120px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        object-position: center !important;
        border: 3px solid var(--bleu-moyen) !important;
        margin: 0 auto 15px !important;
        display: block !important;
    }

    /* Noms et rôles */
    .member-name {
        font-family: 'Cormorant Garamond', serif !important;
        font-weight: 600 !important;
        font-size: 1.2rem !important;
        color: var(--bleu-fonce) !important;
        margin-bottom: 8px !important;
    }

    .member-role {
        color: var(--texte-clair) !important;
        font-size: 0.9rem !important;
    }
}

/* === CORRECTIONS POUR LE CAROUSEL SUR MOBILE === */
@media screen and (max-width: 768px) {
    .carousel-images {
        height: 250px !important;
    }
    
    .carousel-container {
        width: 100% !important;
        overflow: hidden !important;
    }
    
    /* S'assurer que toutes les images du carousel sont visibles */
    .carousel-slide {
        display: block !important;
        visibility: visible !important;
    }
    
    .carousel-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

/* === CORRECTIONS POUR LES CARTES DOMAINES SUR MOBILE === */
@media screen and (max-width: 768px) {
    .services-overlay-container {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 15px !important;
        padding: 15px 10px !important;
        scrollbar-width: thin !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .card-overlay {
        min-width: 280px !important;
        max-width: 280px !important;
        height: 320px !important;
        flex-shrink: 0 !important;
    }
    
    .article-image {
        height: 160px !important;
    }
    
    .article-image img.card-bg {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}


/* --- FIX GLOBAL POUR SUPPRIMER L'ESPACE BLANC HORIZONTAL --- */
html, body {
  overflow-x: hidden; /* empêche le scroll horizontal causé par débordement */
}

/* Toujours utiliser box-sizing border-box pour éviter surprises de largeur */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Images réactives : empêche qu'une image casse la mise en page */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

    /* Témoignages dans le parallaxe */
    .parallax-container .temoignage-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .parallax-container .temoignage-card:hover {
      background: rgba(255, 255, 255, 0.2);
    }

/* Version responsive */
    @media (max-width: 1024px) {
      .carousel-images {
        height: 400px;
      }
      
      .services-overlay-container {
        justify-content: flex-start;
      }
      
      .team-grid {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 12px 20px;
      }

      .header.scrolled {
        padding: 8px 20px;
      }

      .navbar {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .carousel-images {
        height: 300px;
        margin-bottom: 25px;
      }
      
      .hero {
        padding: 100px 15px 60px;
      }
      
      .hero-text {
        font-size: 2.2rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }

      .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .about h2, .services h2, .team h2, .contact h2, .avantages h2, .temoignages h2, .actualites h2, .faq h2 {
        font-size: 2.2rem;
      }

      .footer-column {
        min-width: calc(50% - 40px);
      }
      
      .contact-form-container {
        padding: 30px 20px;
        margin: 0 10px;
      }
      
      /* Désactiver l'effet parallaxe sur mobile pour les performances */
      .parallax-background, .avantages-parallax-bg {
        background-attachment: scroll;
        height: 120%;
      }
      
      .parallax-container .member-card {
        padding: 20px;
      }

      /* Responsive pour les nouvelles typographies */
      .logo-text h1 {
        font-size: 18px;
        letter-spacing: 0.3px;
      }
      
      .logo-text p {
        font-size: 10px;
        letter-spacing: 1px;
      }
      
      .contact h2 {
        font-size: 2.2rem;
      }
      
      .about h2, .services h2, .team h2, .avantages h2, 
      .temoignages h2, .actualites h2, .faq h2 {
        font-size: 2rem;
      }
      
      .hero-text {
        font-size: 2.2rem;
      }

      .services-overlay::before {
        opacity: 0.06;
        animation: patternMove 25s linear infinite;
      }
      
      .services-overlay::after {
        background: linear-gradient(
          135deg,
          rgba(248, 249, 250, 0.94) 0%,
          rgba(248, 249, 250, 0.98) 100%
        );
      }

      .location-content {
        flex-direction: column;
      }
      
      .mini-map {
        height: 250px;
      }

      #chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 24px;
        display: flex; /* Toujours visible sur mobile */
      }

      #scrollToTop {
        display: block; /* Toujours visible sur mobile */
      }

      #chatbot-window {
        width: 320px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .parallax-background, .avantages-parallax-bg {
        height: 110%;
      }
      
      .parallax-overlay, .avantages-parallax-overlay {
        background: linear-gradient(
          135deg,
          rgba(26, 54, 93, 0.92) 0%,
          rgba(45, 74, 124, 0.85) 100%
        );
      }

      .logo-text h1 {
        font-size: 16px;
      }
      
      .logo-text p {
        font-size: 9px;
        letter-spacing: 0.8px;
      }
      
      .contact h2 {
        font-size: 1.8rem;
      }
      
      .about h2, .services h2, .team h2, .avantages h2, 
      .temoignages h2, .actualites h2, .faq h2 {
        font-size: 1.8rem;
      }
      
      .hero-text {
        font-size: 1.8rem;
      }

      .services-overlay::before {
        opacity: 0.04;
      }

      .mini-map {
        height: 200px;
      }

      #chatbot-window {
        width: 280px;
      }
    