/* ===== BASE ANIMATIONS ===== */
.btn {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Animation du header */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

/* Animation des icônes */
.feature-icon {
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ===== EXISTING STYLES ===== */

/* Animation du curseur clignotant */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Style pour le curseur de frappe */
.typing-cursor {
  color: var(--primary-color);
}

/* Animation pour les caractères en train d'être tapés */
.typing-char {
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Couleurs personnalisées */
#about.bg-orange {
  background-color: #f97316 !important; /* Couleur orange de Bootstrap */
  color: #fff; /* Couleur du texte en blanc pour un meilleur contraste */
}

#about a:not(.btn) {
  color: #fff;
  text-decoration: underline;
}

#about .btn {
  text-decoration: none !important;
}

#about .btn-outline-primary {
  color: #fff;
  border-color: #fff;
}

#about .btn-outline-primary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Styles pour la section Services */
#services {
  background-color: #1a1a1a; /* Fond sombre pour la section */
  color: #ffffff; /* Texte blanc par défaut */
}

#services .card {
  background-color: #2d2d2d; /* Fond légèrement plus clair pour les cartes */
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#services .text-muted {
  color: #e0e0e0 !important; /* Couleur légèrement plus claire pour le texte secondaire */
}

#services .lead {
  color: #ffffff;
}

#services h2,
#services h3,
#services h4 {
  color: #ffffff;
}

#services ul li {
  color: #e0e0e0;
}

/* Style pour la section Équipe */
#team {
  background: #f97316; /* Fond orange vif */
  color: white;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

#team .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#team h2 {
  color: white;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#team h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: white;
  margin: 1rem auto 0;
  border-radius: 2px;
}

#team h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

#team .position {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

#team .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#team .team-img-container {
  text-align: center;
  padding: 0;
  margin-bottom: 2rem;
  position: relative;
  max-width: 380px;
  margin: 0 auto 3rem;
}

#team .team-img-container::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  z-index: 0;
  transition: all 0.3s ease;
}

#team .team-img-container img {
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  height: auto;
  object-fit: cover;
}

#team .team-img-container:hover img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

#team .team-img-container:hover::before {
  transform: translate(5px, 5px);
}

#team .text-content {
  padding: 0 1.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

#team .btn-primary {
  background-color: white;
  color: #f97316;
  border: none;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  margin: 1.5rem auto 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#team .btn-primary i {
  margin-right: 8px;
  font-size: 1.1em;
}

#team .btn-primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #e65c00;
}

/* Responsive */
@media (max-width: 1399.98px) {
  #team h2 {
    font-size: 2.5rem;
  }

  #team h3 {
    font-size: 1.8rem;
  }

  #team .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 1199.98px) {
  #team .container {
    max-width: 100%;
    padding: 0 3rem;
  }

  #team h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
  }

  #team h3 {
    font-size: 1.7rem;
  }

  #team .team-img-container {
    max-width: 340px;
  }
}

@media (max-width: 991.98px) {
  #team {
    padding: 3.5rem 0;
  }

  #team .container {
    padding: 0 2rem;
  }

  #team h2 {
    font-size: 2.1rem;
    margin-bottom: 2rem;
  }

  #team .team-img-container {
    margin-bottom: 2.5rem;
  }

  #team .text-content {
    padding: 0 1rem;
  }

  #team .btn-primary {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  #team {
    padding: 3rem 0;
  }

  #team h2 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
  }

  #team h3 {
    font-size: 1.6rem;
  }

  #team .position {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
  }

  #team .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  #team .team-img-container {
    max-width: 320px;
    margin-bottom: 2rem;
  }

  #team .btn-primary {
    width: 100%;
    max-width: 240px;
    margin: 0.5rem auto 0;
  }
}

@media (max-width: 575.98px) {
  #team {
    padding: 2.5rem 0;
  }

  #team .container {
    padding: 0 1.5rem;
  }

  #team h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  #team h2::after {
    width: 50px;
    height: 3px;
    margin-top: 0.75rem;
  }

  #team h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  #team .position {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  #team .lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    padding: 0 0.5rem;
  }

  #team .team-img-container {
    max-width: 280px;
    margin-bottom: 1.75rem;
  }

  #team .team-img-container::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }

  #team .btn-primary {
    padding: 0.8rem 1.75rem;
    font-size: 0.95rem;
    max-width: 220px;
  }

  #team .btn-primary i {
    margin-right: 6px;
    font-size: 1em;
  }
}

@media (max-width: 400px) {
  #team h2 {
    font-size: 1.7rem;
  }

  #team h3 {
    font-size: 1.4rem;
  }

  #team .position {
    font-size: 1.05rem;
  }

  #team .lead {
    font-size: 0.95rem;
    padding: 0;
  }

  #team .team-img-container {
    max-width: 260px;
  }

  #team .btn-primary {
    width: 100%;
    max-width: 200px;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

#team .container {
  position: relative;
  z-index: 1;
}

#team .btn-primary {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#team .btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

#team .btn-primary:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(50, 50);
    opacity: 0;
  }
}

/* Variables CSS */
:root {
  --primary-color: #f97316;
  --primary-hover: #ea580c;
  --text-dark: #1f2937;
  --text-light: #f9fafb;
  --bg-light: #f8fafc;
  --transition: all 0.3s ease-in-out;
  --filter-blur: 12px;

  /* Espacements responsives */
  --section-padding: 5rem 0;
  --container-padding: 0 1.5rem;

  @media (max-width: 991.98px) {
    --section-padding: 4rem 0;
    --container-padding: 0 1.25rem;
  }

  @media (max-width: 767.98px) {
    --section-padding: 3rem 0;
    --container-padding: 0 1rem;
  }

  @media (max-width: 575.98px) {
    --section-padding: 2.5rem 0;
  }
}

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px; /* Hauteur du header fixe */
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Espace pour le header fixe */
}

/* Conteneur responsive */
.container {
  width: 100%;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
  max-width: 1320px; /* ou la largeur maximale souhaitée */
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

/* Images et médias responsives */
img,
video,
iframe,
object,
embed {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Conteneurs vidéo responsives */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video Background */
#hero .position-absolute.w-100.h-100 {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: -1;
}

/* Ajustement de la vidéo */
#hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

/* Images de fond responsives */
.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Désactiver l'effet de parallaxe sur mobile */
@media (max-width: 767.98px) {
  .parallax-bg {
    background-attachment: scroll !important;
  }

  /* Ajustements des marges et paddings pour mobile */
  .section-padding {
    padding: var(--section-padding);
  }

  /* Taille de police réduite pour mobile */
  html {
    font-size: 15px;
  }

  /* Meilleure gestion des espacements sur mobile */
  .mobile-mb-3 {
    margin-bottom: 1rem !important;
  }

  .mobile-text-center {
    text-align: center !important;
  }
}

/* Header & Navigation */
#header {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

/* Styles pour la barre de navigation */
.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

/* Styles pour le menu de navigation */
.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  color: #374151 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f97316 !important;
}

/* Style pour le bouton de contact */
.btn-orange {
  background-color: #f97316;
  color: white !important;
  border: none;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Style pour le menu mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-item {
    margin: 0.5rem 0;
  }

  .btn-orange {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}

.navbar {
  padding: 0.75rem 1rem;
  max-width: 100%;
  position: relative;
}

.navbar-collapse {
  flex-grow: 0;
  transition: all 0.4s ease-in-out;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

/* Logo et marque */
.navbar-brand h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.navbar-brand p {
  font-size: 0.75rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.navbar-toggler {
  padding: 0.5rem;
  border: none;
  outline: none;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler i {
  color: var(--primary-color);
  font-size: 1.75rem;
}

.nav-link {
  color: #374151 !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.1rem;
  position: relative;
  transition: var(--transition);
  text-align: center;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0.5rem;
  left: 50%;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover:after,
.nav-link:focus:after,
.nav-link.active:after {
  width: 50%;
}

/* Ajustements pour le bouton de contact */
.nav-item .btn-orange {
  padding: 0.6rem 1.5rem !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Ajustements pour mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 0.75rem 0 !important;
    margin: 0.25rem 0;
  }

  .nav-item:last-child {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-item .btn-orange {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.btn-orange {
  background-color: var(--primary-color);
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1.5rem !important;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.btn-orange:hover {
  background-color: #ea580c; /* orange-700 */
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Correction pour le menu mobile */
.navbar-collapse {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .navbar-collapse {
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
  }

  .nav-item:last-child .nav-link {
    margin-right: 0;
  }
}

/* Style pour le logo */
.bg-gradient-orange {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
}

/* Correction pour le texte orange */
.text-orange-600 {
  color: #ea580c;
}

/* Ajustement de l'espacement du header */
.header-spacer {
  display: none;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 70px;
    scroll-padding-top: 70px;
  }

  .header-spacer {
    display: block;
  }
}

/* Styles généraux pour le body */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

/* Vidéo de fond pleine page */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Overlay sombre pour la vidéo de fond */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Section Hero */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 4rem 0;
  margin: 0;
  width: 100%;
  text-align: left;
  background: transparent;
}

/* Styles pour le contenu de la section hero */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px; /* Largeur maximale pour les très grands écrans */
  padding: 2rem 2%;
  background-color: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  margin: 0 auto;
  color: #ffffff;
  overflow: visible; /* Permet au contenu de déborder si nécessaire */
  box-sizing: border-box;
}

/* Ajustement pour les écrans plus petits */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
    white-space: normal; /* Permet le retour à la ligne sur mobile */
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
}

/* Animation de clignotement du curseur */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Styles pour le titre avec animation de frappe */
.hero-title {
  min-height: 1.5em; /* Garde de l'espace pour le texte pendant le chargement */
  display: block;
  font-size: 3.25rem; /* Taille de base pour les grands écrans */
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(90deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding: 0.5rem 0;
  width: 100%;
  text-align: left;
  word-wrap: break-word;
  white-space: normal; /* Permet le retour à la ligne si nécessaire */
  overflow: visible; /* Permet au texte de déborder si nécessaire */
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  border-radius: 2px;
}

.typing-cursor {
  display: inline-block;
  font-weight: 400;
  color: #f97316;
  margin-left: 2px;
  position: relative;
  top: -0.1em;
}

.typing-char {
  display: inline-block;
  white-space: pre;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styles pour le titre */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styles pour la description */
.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Styles pour le badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  margin-right: 0.5rem;
  color: #f97316;
}

/* Styles pour les statistiques */
.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section About */
#about {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  padding: 100px 0;
  background: transparent;
}

#about .container {
  position: relative;
  z-index: 2;
}

#about .about-content {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

#about h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#about p.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
}

#about .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0.5rem 0.5rem 0.5rem 0;
}

#about .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

#about .btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#about .btn-outline-light {
  border-width: 2px;
  color: white;
}

#about .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Styles responsifs pour la section About */
@media (max-width: 991.98px) {
  #about {
    padding: 80px 0;
  }

  #about h2 {
    font-size: 2.5rem;
  }

  #about p.lead {
    font-size: 1.1rem;
  }

  #about .about-content {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  #about {
    text-align: center;
    padding: 60px 0;
  }

  #about h2 {
    font-size: 2rem;
  }

  #about .btn {
    width: 100%;
    margin: 0.5rem 0;
  }

  #about .d-flex {
    flex-direction: column;
    gap: 1rem !important;
  }

  #about .about-content {
    padding: 1.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 3rem;
  background-color: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin: 0;
  color: #000000;
  text-shadow: none;

  /* Centrage et largeur maximale */
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;

  /* Animation subtile */
  animation: fadeInUp 0.8s ease-out;

  /* Ajustement pour mobile */
  @media (max-width: 768px) {
    padding: 2rem;
    margin: 1rem;
    width: 95%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-badge i {
  margin-right: 0.5rem;
  font-size: 1.1em;
  color: #ffd700;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

@media (max-width: 991.98px) {
  #hero {
    text-align: center;
    padding: 5rem 0 3rem;
  }

  .hero-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Overlay léger pour la vidéo */
.bg-gradient-orange {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0.8;
}

/* Ajustement spécifique pour l'overlay de la vidéo */
#hero .position-absolute.bg-gradient-orange {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0.9;
}

/* Classes utilitaires pour les effets de flou */
.filter-blur-xl {
  filter: blur(var(--filter-blur));
  -webkit-filter: blur(var(--filter-blur));
}

/* Classes de positionnement */
.top-5 {
  top: 1.25rem;
}
.bottom-5 {
  bottom: 1.25rem;
}
.start-0 {
  left: 0;
}
.end-0 {
  right: 0;
}
.w-72 {
  width: 18rem;
}
.h-72 {
  height: 18rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.7) 0%,
    rgba(251, 146, 60, 0.4) 100%
  );
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.9;
}

/* Boutons */
.btn-primary-custom {
  background-color: var(--text-light);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-outline-custom:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Les styles des éléments décoratifs ont été supprimés */

/* Stats */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Animation de frappe */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #fbbf24;
  margin-left: 2px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== GTS CONTACT FORM STYLES ===== */
/* Styles inspirés de GTS224.com */
.gts-contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 50%, #ffffff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.gts-contact-section::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"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23e3f2fd" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.gts-contact-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gts-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.gts-section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.gts-section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #10b981);
  border-radius: 2px;
}

.gts-section-title p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

#contactForm {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1),
    0 20px 48px rgba(30, 58, 138, 0.05), 0 1px 4px rgba(30, 58, 138, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

#contactForm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
}

.gts-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.gts-form-group {
  position: relative;
}

.gts-form-label {
  display: block;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
}

.gts-form-label .required {
  color: #ef4444;
  margin-left: 3px;
  font-weight: 700;
}

.gts-input-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(30, 58, 138, 0.07);
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.gts-input-wrapper:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.gts-input-wrapper:focus-within {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1),
    0 8px 25px rgba(30, 58, 138, 0.15);
  transform: translateY(-2px);
}

.gts-input-icon {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  min-width: 50px;
  transition: all 0.3s ease;
}

.gts-input-wrapper:focus-within .gts-input-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: scale(1.05);
}

.gts-form-control {
  flex: 1;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.gts-form-control::placeholder {
  color: #94a3b8;
  font-style: italic;
  transition: all 0.3s ease;
}

.gts-form-control:focus::placeholder {
  color: #cbd5e1;
  transform: translateX(5px);
}

.gts-form-control:focus {
  background: #f8faff;
}

/* Style spécial pour le textarea */
.gts-textarea-wrapper {
  align-items: flex-start;
}

.gts-textarea-wrapper .gts-input-icon {
  padding-top: 1rem;
  align-self: flex-start;
}

.gts-form-control.gts-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

/* Bouton de soumission */
.gts-submit-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.gts-btn-submit {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 70%, #10b981 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.gts-btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.gts-btn-submit:hover::before {
  left: 100%;
}

.gts-btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
  background: linear-gradient(135deg, #10b981 0%, #059669 70%, #1e3a8a 100%);
}

.gts-btn-submit:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.gts-btn-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.gts-btn-submit:hover .gts-btn-icon {
  transform: translateX(5px) rotate(15deg);
}

/* Animations d'apparition */
.gts-form-group {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.gts-form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.gts-form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.gts-form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.gts-form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.gts-submit-wrapper {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
  animation-delay: 0.5s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .gts-contact-section {
    padding: 2rem 0;
  }

  .gts-contact-container {
    padding: 0 1rem;
  }

  .gts-section-title h2 {
    font-size: 2rem;
  }

  #contactForm {
    padding: 2rem 1.5rem;
  }

  .gts-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gts-btn-submit {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
}

/* Effet de focus global */
#contactForm:hover {
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15),
    0 25px 60px rgba(30, 58, 138, 0.08), 0 1px 4px rgba(30, 58, 138, 0.1);
}

/* Style pour les champs requis avec une petite animation */
.gts-form-label .required {
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Bouton retour en haut */
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  background: #f39c12;
  border: none;
}
#backToTop:hover {
  filter: brightness(0.95);
}

/* Contact form black theme overrides (scoped to #contact) */
#contact .btn-primary {
  background-color: #000000;
  border-color: #000000;
}
#contact .btn-primary:hover,
#contact .btn-primary:active {
  background-color: #111111;
  border-color: #111111;
}
#contact .btn-primary:focus,
#contact .btn-primary:active:focus,
#contact .btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.35);
}
#contact .form-control:focus {
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

/* ===== ENHANCED ABOUT SECTION STYLES ===== */
#about {
  position: relative;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

#about .container {
  position: relative;
  z-index: 2;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.about-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-image {
  transition: all 0.4s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  color: white;
  text-align: center;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.overlay-content i {
  font-size: 2rem;
  color: #fbbf24;
}

.overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-badge i {
  color: #fbbf24;
}

.highlight-text {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

.timeline-story {
  position: relative;
}

.timeline-story::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

.story-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 60px;
  transition: all 0.3s ease;
}

.story-item:hover {
  transform: translateX(10px);
}

.story-item.highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin-left: -1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.story-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
  z-index: 2;
}

.story-item.highlight .story-icon {
  background: linear-gradient(45deg, #dc2626, #b91c1c);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.story-content h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.story-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.about-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

#about .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#about .btn-light {
  background: white;
  color: #f97316;
  border-color: white;
}

#about .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#about .btn-outline-light {
  background: transparent;
  color: white;
  border-color: white;
}

#about .btn-outline-light:hover {
  background: white;
  color: #f97316;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .timeline-story::before {
    left: 20px;
  }

  .story-item {
    padding-left: 50px;
  }

  .story-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .story-item.highlight {
    margin-left: 0;
    padding: 1rem;
  }

  .about-stats {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .story-item {
    margin-bottom: 1.5rem;
  }

  .about-stats .row {
    gap: 1rem;
  }

  .stat-item {
    padding: 0.5rem;
  }
}

/* ===== CHATBOT WIDGET STYLES ===== */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(243, 156, 18, 0.6);
}

.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.chatbot-interface {
  position: absolute;
  bottom: 120px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.chatbot-title i {
  font-size: 20px;
  color: #f39c12;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.chatbot-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
}

.message {
  display: flex;
  margin-bottom: 20px;
  gap: 12px;
}

.message.user-message {
  flex-direction: row-reverse;
}

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bot-message .message-avatar {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.user-message .message-avatar {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.message-content {
  max-width: 70%;
}

.message-content p {
  margin: 0;
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.4;
  word-wrap: break-word;
}

.bot-message .message-content p {
  background: white;
  color: #333;
  border: 1px solid #e9ecef;
}

.user-message .message-content p {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.message-time {
  font-size: 11px;
  color: #6c757d;
  margin-top: 5px;
  text-align: right;
}

.user-message .message-time {
  text-align: left;
}

.chatbot-input {
  padding: 20px;
  background: white;
  border-top: 1px solid #e9ecef;
}

.input-group {
  display: flex;
  gap: 10px;
}

#chatbot-input-field {
  border: 1px solid #e9ecef;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

#chatbot-input-field:focus {
  outline: none;
  border-color: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

#chatbot-send {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatbot-send:hover {
  transform: scale(1.05);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 10px 0;
  justify-content: center;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c757d;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}
.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive chatbot */
@media (max-width: 480px) {
  .chatbot-interface {
    width: calc(100vw - 40px);
    right: -10px;
    height: 60vh;
  }

  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Scrollbar personnalisée pour le chatbot */
.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* ===== FOOTER STYLES ===== */
.footer-dark {
  background-color: #1a1a2e;
  color: #e6e6e6;
  padding: 4rem 0 2rem;
}

.footer-dark a {
  color: #b8c7cc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-dark a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.footer-about {
  margin-bottom: 2rem;
  color: #b8c7cc;
  line-height: 1.7;
}

.footer-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #f39c12;
  transform: translateY(-3px);
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #b8c7cc;
  line-height: 1.6;
}

.contact-info i {
  margin-right: 1rem;
  color: #f39c12;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: #b8c7cc;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .footer-dark {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .contact-info {
    align-items: center;
    justify-content: center;
  }
  .contact-info li {
    justify-content: center;
  }
}

/* ===== REALISATIONS SECTION STYLES ===== */
.realisations-scroll::-webkit-scrollbar {
  display: none;
}

.realisations-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 20px;
  margin: 0 20px;
}

.realisation-card {
  min-width: 300px;
  max-width: 350px;
  scroll-snap-align: start;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .realisation-card {
    min-width: 85%;
  }
}

@media (max-width: 576px) {
  .realisation-prev {
    left: 5px !important;
  }
  .realisation-next {
    right: 5px !important;
  }
}

/* ===== TESTIMONIALS SECTION STYLES ===== */
.testimonials-scroll {
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
  padding-bottom: 20px;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  background: #f8f9fa;
  transform: scale(1.1);
}

.testimonial-nav i {
  font-size: 1.2rem;
  color: #333;
}

@media (max-width: 767.98px) {
  .testimonial-card {
    width: 85% !important;
  }
}

/* ===== HERO SECTION STYLES ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9),
    rgba(22, 33, 62, 0.9)
  );
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243, 156, 18, 0.2);
  border: 1px solid rgba(243, 156, 18, 0.3);
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #f39c12;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #f39c12;
  font-size: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(243, 156, 18, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.stat-icon i {
  font-size: 24px;
  color: #f39c12;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Video background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.7);
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-description {
    text-align: center;
    font-size: 1.1rem;
  }

  .hero-badge {
    justify-content: center;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Curseur de frappe */
.typing-cursor {
  display: inline-block;
  font-weight: 400;
  color: #f39c12;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
