/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}
/* Amélioration du scroll */
* {
  scroll-margin-top: 100px;
}
/* Empêcher le scroll horizontal */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header supérieur */
.top-header {
  background: #0089c0;
  color: white;
  font-size: 14px;
  position: relative;
  z-index: 1001;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-info span {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-weight: 500;
}
.contact-info span i {
  color: white;
  font-size: 12px;
}
.separator {
  color: white;
  margin: 0 10px;
  font-weight: 300;
}
.language-selector {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.language-item:hover {
  background: rgba(0, 137, 192, 0.1);
  transform: translateY(-2px);
}

.language-item.active {
  background: rgba(0, 137, 192, 0.15);
  box-shadow: 0 0 0 2px #0089c0;
}

.language-item .flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-item:hover .flag {
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.language-item.active .flag {
  box-shadow: 0 3px 8px rgba(0, 137, 192, 0.3);
}

/* Fallback pour images statiques */
.flag {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.flag:hover {
  transform: scale(1.1);
}
/* Navigation principale */
.main-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  overflow: visible;
}
.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  overflow: visible;
}
.logo-section {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo {
  max-width: 250px; /* Ajustez cette valeur selon la taille souhaitée */
  width: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.logo-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ef4444 0%, #0089c0 50%, #3b82f6 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.logo-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}
.arch-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.arch {
  position: absolute;
  background: #ef4444;
  border-radius: 50% 50% 0 0;
}
.arch-1 {
  width: 30px;
  height: 15px;
  top: 5px;
  left: 10px;
}
.arch-2 {
  width: 20px;
  height: 10px;
  top: 8px;
  left: 15px;
  background: #0089c0;
}
.arch-3 {
  width: 10px;
  height: 5px;
  top: 10px;
  left: 20px;
  background: #3b82f6;
}
.branch-element {
  position: absolute;
  width: 2px;
  height: 20px;
  background: #0089c0;
  top: 20px;
  left: 24px;
}
.center-pattern {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #0089c0;
  border-radius: 50%;
  top: 19px;
  left: 19px;
  box-shadow: 0 0 0 2px #ef4444;
}
.company-name h1 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  line-height: 1.2;
}
.company-name p {
  font-size: 11px;
  color: #666;
  margin: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 190px;
  overflow: visible;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.main-menu li {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: visible;
}
.main-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 20px;
  position: relative;
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-menu a:hover,
.main-menu a:focus {
  color: #0089c0;
  outline: none;
}
.main-menu a:focus {
  box-shadow: 0 0 0 2px rgba(109, 181, 44, 0.3);
}
.main-menu a:active {
  transform: translateY(0);
}
/* Menu déroulant */
.dropdown,
.menu-item-has-children {
  position: relative;
}

/* Support des classes WordPress natives */
.main-menu .current-menu-item > a,
.main-menu .current-page-ancestor > a {
  color: #0089c0;
}

.main-menu .menu-item {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: visible;
}

.main-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 250px;
  list-style: none;
  margin: 0;
  z-index: 99999;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu .menu-item-has-children:hover > .sub-menu {
  display: block !important;
  animation: slideDown 0.3s ease-out;
}

.dropdown > a::after,
.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dropdown:hover > a::after,
.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 250px;
  list-style: none;
  margin: 0;
  z-index: 99999;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover {
  display: block !important;
  animation: slideDown 0.3s ease-out;
}
.main-menu .dropdown-menu .dropdown:hover > .dropdown-menu {
  animation: slideRight 0.25s ease-out !important;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover,
.main-menu .sub-menu a:hover {
  background: rgba(0, 137, 192, 0.1);
  color: #0089c0;
}

html:not([lang="ar"]) .dropdown-menu a:hover,
html:not([lang="ar"]) .main-menu .sub-menu a:hover {
  padding-left: 24px;
  border-left-color: #0089c0;
}

.main-menu .sub-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu .sub-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
  border-left: 3px solid transparent;
}

/* Override Bootstrap dropdown if it interferes */
.main-menu .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  transform: none !important;
  inset: auto !important;
}
/* Sous-menu imbrique (niveau 3+): afficher a droite, pas en bas */
.main-menu .dropdown-menu .dropdown {
    position: relative !important;
}

.main-menu .dropdown-menu .dropdown-menu {
    top: 0 !important;
    left: 100% !important;
    right: auto !important;
    margin-top: 0 !important;
    transform: none !important;
}

.publications-dropdown {
  display: flex;
  gap: 30px;
  min-width: 500px;
}
.dropdown-column {
  flex: 1;
}
.dropdown-column li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-column a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: none;
  letter-spacing: normal;
}
.dropdown-column a:hover {
  background: rgba(109, 181, 44, 0.1);
  color: #0089c0;
  padding-left: 16px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.search-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-btn:hover {
  color: #0089c0;
  background: rgba(109, 181, 44, 0.1);
}
.social-icons {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-icons li {
  margin: 0;
  padding: 0;
}
.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}
.social-icons a:hover {
  color: #0089c0;
  background: rgba(109, 181, 44, 0.1);
}
/* ==========================================
   SECTION HERO AVEC SWIPER
   ========================================== */
.hero-section {
  position: relative;
  height: 75vh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
  margin-bottom: 40px;
  scroll-margin-top: 0;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Conteneur Swiper */
.heroSwiper {
  width: 100%;
  height: 100%;
  border-radius: 0 0 40px 40px;
}

/* Wrapper et slides Swiper */
.heroSwiper .swiper-wrapper {
  height: 100%;
}

.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Contenu des slides */
.slide-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  transition: transform 0.3s ease;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Boutons de navigation Swiper */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.heroSwiper .swiper-button-prev {
  left: 30px;
}

.heroSwiper .swiper-button-next {
  right: 30px;
}
/* Texte des slides */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  width: 100%;
}
.slide-text h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
}
.slide-text p {
  font-size: 24px;
  margin-bottom: 40px;
  text-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  opacity: 1;
  font-weight: 500;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}
.slide-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-align: center;
  min-width: 200px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-btn.primary {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  border-color: #0089c0;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.cta-btn.primary:hover {
  background: linear-gradient(135deg, #5a9a26 0%, #4a7a1f 100%);
  border-color: #5a9a26;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}
.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}
.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #0089c0;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}
/* Pagination Swiper */
.heroSwiper .swiper-pagination {
  bottom: 30px !important;
  z-index: 10;
}

.heroSwiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.heroSwiper .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.heroSwiper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-color: #0089c0;
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(109, 181, 44, 0.7);
  border-width: 3px;
}
/* Section Espace client */
.client-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin-top: 40px;
  scroll-margin-top: 120px;
  position: relative;
}
.section-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a 0%, #0089c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 80px;
  letter-spacing: -1px;
}
/* Bootstrap override pour les cartes de paiement */
.client-section .row {
  justify-content: center;
}
/* Centrer les deux dernières cartes */
.payment-card:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
}
.payment-card:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: start;
}
/* Styles pour les cartes centrées */
.payment-card.centered {
  grid-column: span 1;
  max-width: 350px;
  margin: 0 auto;
}
.payment-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  width: 100%;
  max-width: 350px;
  position: relative;
  overflow: hidden;
}
.payment-card:hover,
.payment-card.active {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.2);
  border-color: #0089c0;
}
.payment-card.active {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(5, 150, 105, 0.1) 100%
  );
}
.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(5, 150, 105, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.payment-card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.card-icon i {
  font-size: 36px;
  color: white;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.radeef-icon {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
}
.radem-icon {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}
.radeeta-icon {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
}
.onee-electricity-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.onee-water-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.card-icon::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.card-icon::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.payment-card:hover .card-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}
.payment-card:hover .card-icon i {
  transform: scale(1.1);
}
.payment-card:hover .card-icon::before {
  transform: scale(1.2);
  opacity: 0.4;
}
.payment-card:hover .card-icon::after {
  transform: scale(1.3);
}
.payment-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.payment-card p {
  color: #64748b;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}
.card-link {
  color: #0089c0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.card-link:hover {
  color: white;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
/* Section Actualités */
.news-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  scroll-margin-top: 120px;
  position: relative;
}
/* Bootstrap override pour les actualités */
.news-section .row {
  margin-top: 50px;
}
.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.15);
}
/* Toutes les cartes d'actualités ont maintenant la même taille */
.news-image {
  height: 220px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 50%, #4a7a1f 100%);
  position: relative;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card:hover .news-image img {
  transform: scale(1.05);
}
/* Hauteur uniforme pour toutes les images d'actualités */
.news-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  position: relative;
}
.news-placeholder::before {
  content: "📰";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  opacity: 0.8;
}
.news-card.featured .news-placeholder::before {
  font-size: 72px;
}
.news-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-date {
  color: #0089c0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.news-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 15px 0;
  line-height: 1.4;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card h3 a:hover {
  color: #0089c0;
}

.news-image a {
  display: block;
}

.btn-view-all {
  display: inline-block;
  padding: 14px 35px;
  background: #0089c0;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 137, 192, 0.2);
}

.btn-view-all:hover {
  background: #006fa0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 137, 192, 0.3);
}

.no-news-home {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 10px;
}

.no-news-home p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  letter-spacing: -0.5px;
}
.news-card.featured h3 {
  font-size: 28px;
}
.news-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.read-more {
  color: #0089c0;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: inline-block;
}
.read-more:hover {
  color: white;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
/* Section Appels d'offres */
.tenders-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  scroll-margin-top: 120px;
  position: relative;
}
.tenders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.tender-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.tender-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.15);
  border-left-color: #0089c0;
}
.tender-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.tender-number {
  background: #f5f5f5;
  color: #666;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.tender-status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.tender-status.active {
  background: #d4edda;
  color: #155724;
}
.tender-status:not(.active):not(.upcoming) {
  background: #f8d7da;
  color: #721c24;
}
.tender-status.upcoming {
  background: #fff3cd;
  color: #856404;
}
.tender-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.tender-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}
.tender-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tender-date {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}
.tender-link {
  color: #0089c0;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.tender-link:hover {
  color: white;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
/* Section À propos */
.about-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  scroll-margin-top: 120px;
  position: relative;
}
/* Bootstrap override pour la section about */
.about-section .row {
  align-items: stretch;
  min-height: 600px;
}
.about-text h2 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a 0%, #0089c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 35px;
  letter-spacing: -1px;
}
.about-text p {
  margin-bottom: 25px;
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}
.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0089c0;
  margin: 35px 0 20px;
  letter-spacing: -0.5px;
}
.about-text ul {
  margin-left: 20px;
}
.about-text li {
  margin-bottom: 15px;
  color: #64748b;
  line-height: 1.7;
  font-size: 16px;
}
.about-visual {
  display: flex;
  align-items: stretch;
}
.visual-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.top-logo,
.bottom-logo {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
.logo-emblem {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ef4444 0%, #0089c0 50%, #3b82f6 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.logo-emblem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  opacity: 0.9;
}
.arabic-text {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}
.company-text {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}
.region-map {
  position: relative;
  margin: 20px 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.map-svg {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  animation: pulse 2s infinite;
}
.map-arrow::after {
  content: "↓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
}
/* Styles pour la carte simplifiée */
.map-svg .regions path {
  transition: opacity 0.3s ease;
}
.map-svg .regions path:hover {
  opacity: 1;
}
.map-svg .cities circle {
  transition: transform 0.3s ease;
}
.map-svg .cities circle:hover {
  transform: scale(1.2);
}
.contact-info {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.contact-info .website {
  color: #0089c0;
  font-weight: 600;
  font-size: 14px;
}
.contact-info .phone {
  color: #64748b;
  font-weight: 500;
  font-size: 14px;
}
.website,
.phone {
  font-size: 12px;
  color: #666;
}
/* Section Statistiques */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  scroll-margin-top: 120px;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
  z-index: 0;
}
/* Bootstrap override pour les statistiques */
.stats-section .row {
  margin-top: 50px;
}
/* Styles pour les cartes de statistiques */
.stat-item {
  text-align: center;
  padding: 30px 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}
.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #0089c0;
  margin-bottom: 15px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.stat-label {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}
/* Section Contact */
.contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  scroll-margin-top: 120px;
  position: relative;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-panel {
  background: linear-gradient(135deg, #0089c0 0%, #0089c0 100%);
  color: white;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 137, 192, 0.3);
  position: relative;
  overflow: hidden;
}
.contact-info-panel h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}
.info-item {
  margin-bottom: 30px;
}

.info-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  color: white;
}

.info-item p {
  font-size: 15px;
  color: white;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 8px;
  opacity: 0.95;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #1a1a1a 0%, #0089c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0089c0;
  box-shadow: 0 0 0 3px rgba(0, 137, 192, 0.1);
  background: rgba(255, 255, 255, 0.95);
}
.submit-btn {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 137, 192, 0.3);
}
.submit-btn:hover {
  background: linear-gradient(135deg, #5a9a26 0%, #4a7a1f 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 137, 192, 0.4);
}
/* Popup d'accueil avec image */
.welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.popup-content.image-popup {
  position: relative;
  background: white;
  border-radius: 15px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-popup.show .popup-content {
  transform: scale(1) translateY(0);
}

.popup-header {
  padding: 15px 20px 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.popup-close {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: #666;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.popup-body {
  padding: 0;
  text-align: center;
}

.official-notice-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.popup-footer {
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #e2e8f0;
  background: white;
}

.popup-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0089c0;
}

.popup-checkbox label {
  font-size: 14px;
  color: #64748b;
  cursor: pointer;
  user-select: none;
}

.popup-btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 200px;
}

.popup-btn.primary {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(109, 181, 44, 0.3);
}

.popup-btn.primary:hover {
  background: linear-gradient(135deg, #5a9a26 0%, #4a7a1f 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(109, 181, 44, 0.4);
}

.popup-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #64748b;
  transition: color 0.3s ease;
}

.popup-checkbox:hover {
  color: #0089c0;
}

.popup-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0089c0;
  cursor: pointer;
}

/* Bouton scroll to top */
/* Popup de recherche */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.search-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.search-modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
  transform: scale(1);
}

.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.search-modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.close-search {
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.close-search:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

.search-modal-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* .search-modal-body form {
    display: flex;
    flex-direction: column;
    gap: 15px;
} */
.slide-text {
  background: #0000005e;
  padding: 30px 20px;
  border: #000 24px;
  border-radius: 10px;
}
.search-modal-body .search-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-modal-body .search-input:focus {
  border-color: #0089c0;
}

.search-submit {
  background: #2e8b57;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.search-submit:hover {
  background: #228b22;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: linear-gradient(135deg, #5a9a26 0%, #4a7a1f 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}
/* Footer moderne */
.modern-footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 80px 0 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0089c0, #5a9a26, #0089c0);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-section h4 {
  color: #0089c0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  letter-spacing: -0.5px;
}
.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 2px;
}
/* Section About */
.footer-about {
  max-width: 350px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background-color: #fff;
  justify-content: center;
}

.company-info h3 {
  color: #0089c0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.company-info p {
  color: #bdc3c7;
  font-size: 12px;
}
.footer-description {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 25px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0089c0;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.social-links a:hover {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
/* Sections Links et Services */
.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}
.footer-links a,
.footer-services a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before,
.footer-services a::before {
  content: "→";
  color: #0089c0;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-links a:hover,
.footer-services a:hover {
  color: #0089c0;
  padding-left: 8px;
}
.footer-links a:hover::before,
.footer-services a:hover::before {
  opacity: 1;
}
.stats-section-modern {
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 0%,
      rgba(0, 137, 192, 0.06) 0%,
      transparent 55%
    ),
    #ffffff;
}
.stats-section-modern::before {
  opacity: 0.04;
}
.stats-section-modern .container {
  position: relative;
  z-index: 1;
}
.stats-section-modern .section-title {
  margin-bottom: 48px;
  text-align: center;
}
.stats-cms-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(32px, 6vw, 88px);
  row-gap: 48px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
  align-items: start;
}
.stats-cms-block--pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stats-cms-heading {
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  color: #0f4c81;
  margin: 0 0 clamp(22px, 2.5vw, 36px);
  padding: 0;
  border: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  width: 100%;
}
.stats-cms-heading--full {
  margin-bottom: 22px;
}
.stats-cms-block--wide {
  grid-column: 1 / -1;
}
.stats-cms-block--wide .stats-cms-heading--full,
.stats-cms-block--ca .stats-cms-heading--full {
  max-width: none;
}
.stats-modern-col--grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}
.stats-cms-block--ca .stats-modern-col {
  max-width: 420px;
}
.stats-cms-block--ca {
  grid-column: 1 / -1;
}
.stats-modern-suffix {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 0.1em;
  vertical-align: baseline;
}
.stats-modern-number--ca {
  font-size: 48px;
}
.stats-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  margin-top: 20px;
}
.stats-modern-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.stats-modern-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
}
.stats-modern-number {
  margin: 0;
  color: #68b32e;
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.stats-modern-number span.stats-modern-suffix {
  font-size: 0.55em;
  font-weight: 700;
}
.stats-modern-label {
  margin: 0;
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 22em;
}
@media (max-width: 1200px) {
  .stats-modern-grid {
    gap: 34px;
  }
  .stats-modern-label {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .stats-modern-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .stats-modern-col {
    gap: 16px;
  }
  .stats-cms-blocks {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-modern-col--grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .stats-modern-col--grid4 {
    grid-template-columns: 1fr;
  }
}

/* Chiffres clés — grille 3 × 4 (maquette sans titre) */
.stats-section-figures.stats-section-modern {
  background: #ffffff;
}
.stats-section-figures.stats-section-modern::before {
  opacity: 0.04;
}
.stats-section-figures .stats-figures-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(48px, 8vw, 112px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.stats-section-figures .stats-figures-col {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4.5vw, 56px);
  align-items: flex-start;
}
.stats-section-figures .stats-figures-col-title {
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  color: #0f4c81;
  margin: 0 0 clamp(12px, 1.5vw, 20px);
  padding: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  width: 100%;
}
.stats-section-figures .stats-figure-item.stat-item {
  text-align: left;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.stats-section-figures .stats-figure-item.stat-item:hover {
  transform: none;
  box-shadow: none;
}
.stats-section-figures .stats-figure-value {
  margin: 0;
  color: #0089c0;
  font-size: clamp(44px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-section-figures .stats-figure-value .stats-figure-unit {
  font-size: 0.52em;
  font-weight: 700;
  color: #0d4f69;
}
.stats-section-figures .stats-figure-plus {
  font-weight: 800;
}
.stats-section-figures .stats-figure-label {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 22em;
}
@media (max-width: 991px) {
  .stats-section-figures .stats-figures-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}
/* Section Contact */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-contact .contact-item i {
  color: #0089c0;
  font-size: 18px;
  margin-top: 2px;
  width: 20px;
}
.footer-contact .contact-item strong {
  color: white;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.footer-contact .contact-item p {
  color: #bdc3c7;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
/* Newsletter */
.footer-newsletter {
  background: rgba(16, 185, 129, 0.1);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  padding: 50px 0;
  margin-bottom: 0;
  backdrop-filter: blur(10px);
}
.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.newsletter-text h4 {
  color: #0089c0;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.newsletter-text p {
  color: #bdc3c7;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  width: 100%;
}
.newsletter-input {
  flex: 1;
  padding: 18px 25px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 25px 0 0 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.newsletter-input::placeholder {
  color: #bdc3c7;
}
.newsletter-input:focus {
  border-color: #0089c0;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.newsletter-btn {
  padding: 18px 30px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  border: none;
  border-radius: 0 25px 25px 0;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.newsletter-btn:hover {
  background: linear-gradient(135deg, #5a9a26 0%, #4a7a1f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  color: #bdc3c7;
  margin: 0;
  font-size: 14px;
}
.footer-bottom-links {
  display: flex;
  gap: 25px;
}
.footer-bottom-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: #0089c0;
}
/* Responsive Design */

/* Laptop - 992px to 1200px */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .nav-links {
    gap: 120px;
  }

  .main-menu a {
    padding: 18px 15px;
    font-size: 13px;
  }

  .slide-text h2 {
    font-size: 42px;
  }

  .slide-text p {
    font-size: 17px;
  }

  .section-title {
    font-size: 38px;
  }
}

/* Tablette - 768px to 991px */
@media (max-width: 991px) {
  .container {
    padding: 0 25px;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .main-menu {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

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

  .main-menu a {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(0, 137, 192, 0.05);
    margin-top: 10px;
  }

  .slide-text h2 {
    font-size: 36px;
  }

  .slide-text p {
    font-size: 16px;
  }

  .section-title {
    font-size: 34px;
  }

  .about-text,
  .about-visual {
    margin-bottom: 30px;
  }

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

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

/* Mobile - moins de 768px */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .main-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 6px 12px;
  }

  .main-menu a {
    padding: 6px 12px;
    font-size: 13px;
  }

  /* Styles pour les menus déroulants sur mobile */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(109, 181, 44, 0.05);
    margin-top: 10px;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-menu a {
    padding: 10px 20px;
    border-left: none;
    border-bottom: 1px solid rgba(109, 181, 44, 0.1);
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  /* Styles responsive pour le popup avec image */
  .popup-content.image-popup {
    width: 95%;
    max-width: 500px;
    margin: 20px;
  }

  .popup-header {
    padding: 15px 15px 10px;
  }

  .popup-body {
    padding: 0;
  }

  .official-notice-image {
    max-height: 60vh;
    width: 100%;
  }

  .popup-footer {
    padding: 15px 20px 25px;
    gap: 12px;
  }

  .popup-checkbox {
    font-size: 13px;
  }

  .popup-checkbox label {
    font-size: 13px;
  }

  .popup-btn {
    padding: 12px 30px;
    font-size: 15px;
    min-width: 180px;
  }

  .nav-actions {
    justify-content: center;
    gap: 12px;
  }

  .social-icons {
    padding: 6px 12px;
    gap: 8px;
  }

  .search-btn {
    width: 40px;
    height: 40px;
  }

  .hero-section {
    height: 60vh;
    min-height: 500px;
    max-height: 600px;
  }

  /* Footer responsive tablet */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .slide-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
  }

  .slide-text p {
    font-size: 20px;
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .slide-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px;
  }

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }

  .heroSwiper .swiper-button-next:after,
  .heroSwiper .swiper-button-prev:after {
    font-size: 16px;
  }

  .heroSwiper .swiper-button-prev {
    left: 15px;
  }

  .heroSwiper .swiper-button-next {
    right: 15px;
  }

  .section-title {
    font-size: 36px;
  }

  .payment-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    padding: 15px 0;
  }

  .payment-card {
    max-width: 100%;
    min-height: 280px;
    padding: 35px 25px;
  }

  .payment-card:nth-child(4),
  .payment-card:nth-child(5) {
    grid-column: 1;
    justify-self: center;
  }

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

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

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

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

  .news-card.featured {
    grid-row: span 1;
  }

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

  .stat-number {
    font-size: 24px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  /* Contact Section Mobile */
  .contact-info-panel,
  .contact-form {
    padding: 40px 25px;
  }

  .phones-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Très petit mobile - moins de 480px */
@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .payment-card {
    padding: 30px 20px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .contact-info-panel,
  .contact-form {
    padding: 35px 25px;
  }

  .news-content,
  .tender-card {
    padding: 25px;
  }

  .tender-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tender-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-section {
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
  }

  .slide-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
  }

  .slide-text p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 15px;
    min-width: 160px;
  }

  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-about {
    max-width: none;
  }

  .footer-logo {
    justify-content: center;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* Effet ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* Accessibilité */
.keyboard-navigation *:focus {
  outline: 3px solid #0089c0 !important;
  outline-offset: 2px;
}
/* Amélioration de la navigation au clavier */
.cta-btn:focus,
.submit-btn:focus,
.newsletter-btn:focus,
.scroll-to-top:focus {
  outline: 3px solid #0089c0;
  outline-offset: 2px;
}
/* Amélioration des contrastes pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Mode contraste élevé */
@media (prefers-contrast: high) {
  .payment-card,
  .news-card,
  .tender-card,
  .stat-item {
    border: 2px solid #0089c0;
  }

  .cta-btn,
  .submit-btn,
  .newsletter-btn {
    border: 2px solid #0089c0;
  }
}
.payment-card,
.stat-item,
.contact-info-panel,
.contact-form {
  animation: fadeInUp 0.6s ease-out;
}
.page-hero {
  padding: 100px 0 60px;
  color: white;
}

.page-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-flex;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.section-padding {
  padding: 80px 0;
}

/* ========================================
   STYLES DES PAGES PHP EXTRAITS
   ======================================== */

/* Styles de page-contact.php */
.contact-page-section {
  padding: 0;
  margin: 0;
}

.contact-container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.contact-row {
  display: flex;
  min-height: 100vh;
  margin: 0;
}

.contact-info-column {
  flex: 0 0 40%;
  max-width: 40%;
  background: #0089c0;
  padding: 80px 60px;
  color: white;
}

.info-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 50px;
  line-height: 1.3;
}

.info-block {
  margin-bottom: 40px;
}

.info-heading {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.info-text {
  font-size: 16px;
  color: white;
  line-height: 1.7;
  margin: 0;
}

.contact-form-column {
  flex: 0 0 60%;
  max-width: 60%;
  background: white;
  padding: 80px 80px;
  position: relative;
  overflow: hidden;
}

.contact-form-column::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
}

.form-wrapper {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.form-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.simple-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-field {
  position: relative;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d1d5db;
  outline: none;
  transition: border-color 0.3s ease;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #9ca3af;
}

.field-input:focus,
.field-textarea:focus {
  border-bottom-color: #0089c0;
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: #f9fafb;
  border-radius: 8px;
  margin-top: 20px;
}

.captcha-success {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0089c0;
  font-weight: 600;
  font-size: 15px;
}

.captcha-success i {
  font-size: 20px;
}

.captcha-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.captcha-logo {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 1px;
}

.captcha-links {
  display: flex;
  gap: 6px;
  font-size: 10px;
}

.captcha-links a {
  color: #6b7280;
  text-decoration: none;
}

.captcha-links a:hover {
  text-decoration: underline;
}

.captcha-links span {
  color: #d1d5db;
}

@media (max-width: 991px) {
  .contact-row {
    flex-direction: column;
    min-height: auto;
  }

  .contact-info-column,
  .contact-form-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-info-column {
    padding: 60px 40px;
  }

  .contact-form-column {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .contact-info-column,
  .contact-form-column {
    padding: 40px 25px;
  }

  .info-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .form-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .info-heading {
    font-size: 18px;
  }

  .info-text {
    font-size: 15px;
  }
}

/* Styles de page-actualites.php */
.actualites-section {
  padding: 60px 0;
}

.news-main-content {
  background: white;
  padding: 0;
}

.main-article {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-image {
  width: 100%;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  padding: 30px;
}

.article-badge {
  display: inline-block;
  background: #0089c0;
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.article-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 15px;
}

.article-date {
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-excerpt {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-read-more {
  display: inline-block;
  padding: 12px 30px;
  background: #0089c0;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background: #0089c0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(109, 181, 44, 0.3);
}

.news-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #0089c0;
}

.search-btn {
  width: 45px;
  background: #0089c0;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #0089c0;
}

.widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.recent-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-article-item {
  display: flex;
  gap: 15px;
}

.recent-article-thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 5px;
}

.recent-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-article-info {
  flex: 1;
}

.recent-article-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 6px;
}

.recent-date {
  font-size: 12px;
  color: #94a3b8;
}

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

.categories-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.categories-list a {
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.categories-list a:hover {
  color: #0089c0;
}

.category-count {
  background: #1a1a1a;
  color: white;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .news-sidebar {
    position: static;
    margin-top: 40px;
  }

  .article-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .article-body {
    padding: 20px;
  }

  .article-title {
    font-size: 20px;
  }
}

/* Styles de page-appels-offres.php */
.appels-offres-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.appels-offres-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.appels-offres-section .container {
  position: relative;
  z-index: 1;
}

.ao-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 40px;
}

.ao-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0089c0;
  margin-bottom: 30px;
}

.ao-table-wrapper {
  background: white;
  overflow-x: auto;
  margin-top: 30px;
}

.ao-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.ao-table thead {
  background: #dbeafe;
}

.ao-table th {
  padding: 15px 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #1a202c;
  border: 1px solid #bfdbfe;
}

.ao-table tbody tr {
  background: white;
  transition: background-color 0.2s ease;
}

.ao-table tbody tr:hover {
  background: #f8fafc;
}

.ao-table td {
  padding: 15px 12px;
  font-size: 14px;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.ao-table .empty-row td {
  text-align: center;
  padding: 40px;
  color: #94a3b8;
  font-style: italic;
}

.btn-download-ao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #0089c0;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-download-ao:hover {
  background: #5a9a26;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 181, 44, 0.3);
}

.btn-download-ao i {
  margin-right: 5px;
}

.badge-pme {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-pme.oui {
  background: #d1fae5;
  color: #059669;
}

.badge-pme.non {
  background: #fee2e2;
  color: #dc2626;
}

@media (max-width: 768px) {
  .ao-main-title {
    font-size: 32px;
  }

  .ao-section-title {
    font-size: 22px;
  }

  .ao-table-wrapper {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
  }

  .ao-table th,
  .ao-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
}

/* Styles de page-objectifs.php */
.objectifs-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.objectifs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.objectifs-section .container {
  position: relative;
  z-index: 1;
}

.objectifs-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  text-align: center;
}

.objectifs-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
  text-align: justify;
}

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

.objectifs-list li {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 25px;
  padding-left: 30px;
  position: relative;
  text-align: justify;
}

.objectifs-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2d3748;
  font-size: 28px;
  line-height: 1.3;
  font-weight: bold;
}

.objectifs-list li strong {
  color: #1a202c;
  font-weight: 700;
}

@media (max-width: 768px) {
  .objectifs-title {
    font-size: 32px;
  }

  .objectifs-intro {
    font-size: 16px;
  }

  .objectifs-list li {
    font-size: 15px;
    padding-left: 25px;
  }

  .objectifs-list li::before {
    font-size: 24px;
  }
}

/* Styles de page-metiers.php */
.nos-metiers-section {
  padding: 80px 0;
}

.section-title-main {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0;
}

.metier-block {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  border: 3px dashed #e5e7eb;
  height: 100%;
  transition: all 0.3s ease;
}

.metier-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.electricite-block {
  border-color: #dc2626;
}

.eau-block {
  border-color: #3b82f6;
}

.assainissement-block {
  border-color: #10b981;
}

.metier-icon-wrapper {
  text-align: center;
  margin-bottom: 25px;
}

.metier-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f3f4f6;
}

.metier-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.2;
}

.electricite-icon {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.electricite-icon::before {
  background: #dc2626;
}

.electricite-icon i {
  font-size: 60px;
  color: #dc2626;
  z-index: 1;
}

.eau-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.eau-icon::before {
  background: #3b82f6;
}

.eau-icon i {
  font-size: 60px;
  color: #3b82f6;
  z-index: 1;
  position: relative;
}

.eau-icon i::after {
  content: "✓";
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-size: 30px;
  color: #10b981;
  font-weight: bold;
}

.assainissement-icon {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.assainissement-icon::before {
  background: #10b981;
}

.assainissement-icon i {
  font-size: 60px;
  color: #10b981;
  z-index: 1;
}

.metier-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.electricite-title {
  color: #dc2626;
}

.eau-title {
  color: #3b82f6;
}

.assainissement-title {
  color: #10b981;
}

.metier-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
  text-align: justify;
}

.metier-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  margin-top: 25px;
}

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

.metier-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  text-align: justify;
}

.electricite-block .metier-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-size: 20px;
  font-weight: bold;
}

.eau-block .metier-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 20px;
  font-weight: bold;
}

.assainissement-block .metier-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 20px;
  font-weight: bold;
}

.metiers-slider-section {
  padding: 60px 0 80px;
  background: #f9fafb;
}

.metiers-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
  font-size: 20px;
  color: #1a1a1a;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.pagination-dot.active {
  background: #0089c0;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .metier-block {
    margin-bottom: 30px;
  }

  .section-title-main {
    font-size: 32px;
  }

  .intro-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn i {
    font-size: 16px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

/* Styles de page-perimetre.php */
.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.province-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid #0089c0;
}

.province-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 181, 44, 0.2);
}

.province-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.province-icon i {
  font-size: 28px;
  color: white;
}

.province-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.province-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.province-stats li {
  padding: 10px 0;
  font-size: 14px;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.province-stats li:last-child {
  border-bottom: none;
}

.stat-box {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(109, 181, 44, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-icon i {
  font-size: 32px;
  color: white;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #0089c0;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  color: #64748b;
}

.service-coverage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.coverage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.coverage-icon.water {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.coverage-icon.electricity {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.coverage-icon.sanitation {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.coverage-icon i {
  font-size: 32px;
  color: white;
}

.service-coverage-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.coverage-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}

.circular-chart {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 250px;
}

.circle-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

.electricity-circle {
  stroke: #f59e0b;
}

.sanitation-circle {
  stroke: #10b981;
}

.percentage {
  fill: #1a1a1a;
  font-size: 0.5em;
  font-weight: 700;
  text-anchor: middle;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.coverage-desc {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 20px;
}

.coverage-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coverage-details li {
  padding: 8px 0;
  font-size: 14px;
  color: #475569;
}

/* Styles de page-espace-client.php */
.payment-spaces {
  padding: 80px 0;
}

.payment-space-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border-top: 5px solid #0089c0;
}

.payment-space-card.water {
  border-top-color: #3b82f6;
}

.payment-space-card.electricity {
  border-top-color: #f59e0b;
}

.payment-space-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.payment-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.payment-space-card.water .payment-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.payment-space-card.electricity .payment-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.payment-icon i {
  font-size: 36px;
  color: white;
}

.payment-space-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.payment-space-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.features-list li {
  padding: 10px 0;
  font-size: 14px;
  color: #475569;
}

.features-list i {
  color: #0089c0;
  margin-right: 10px;
}

.btn-payment {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.payment-space-card.water .btn-payment {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.payment-space-card.electricity .btn-payment {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.online-services {
  padding: 80px 0;
}

.service-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 181, 44, 0.2);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-box i {
  font-size: 32px;
  color: white;
}

.service-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: #0089c0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.service-link:hover {
  color: #5a9a26;
}

.service-link i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.service-link:hover i {
  margin-left: 10px;
}

.how-to-pay {
  padding: 80px 0;
}

.steps-container {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px dashed #e2e8f0;
}

.step-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.advantages-section {
  padding: 80px 0;
}

.advantage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(109, 181, 44, 0.2);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-icon i {
  font-size: 32px;
  color: white;
}

.advantage-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.advantage-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.help-section {
  padding: 80px 0;
}

.help-box {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  padding: 50px;
  border-radius: 15px;
  color: white;
}

.help-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.help-box p {
  font-size: 16px;
  margin: 0;
}

.btn-help {
  display: inline-block;
  padding: 15px 35px;
  background: white;
  color: #0089c0;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-help:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-help i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .steps-container {
    padding: 30px 20px;
  }

  .help-box {
    padding: 30px 20px;
    text-align: center;
  }

  .help-box .btn-help {
    margin-top: 20px;
  }
}

/* Styles de page-galerie-videos.php */
.videos-section {
  padding: 80px 0;
}

.video-player-wrapper {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 30px;
}

.video-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.video-info p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.video-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.video-meta span {
  font-size: 14px;
  color: #475569;
}

.video-meta i {
  color: #0089c0;
  margin-right: 5px;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(109, 181, 44, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-card:hover .play-button {
  background: #0089c0;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  font-size: 28px;
  color: white;
  margin-left: 5px;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.video-content {
  padding: 20px;
}

.video-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.video-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.video-meta-small {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #64748b;
}

.video-meta-small i {
  color: #0089c0;
  margin-right: 5px;
}

.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.btn-load-more {
  padding: 15px 40px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(109, 181, 44, 0.3);
}

.btn-load-more i {
  margin-right: 8px;
}

.youtube-section {
  padding: 80px 0;
}

.btn-youtube {
  display: inline-block;
  padding: 18px 50px;
  background: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
  color: white;
}

.btn-youtube i {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Styles de page-galerie-photos.php */
.gallery-section {
  padding: 80px 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  color: #475569;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-color: #0089c0;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(109, 181, 44, 0.3);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}

.gallery-overlay p {
  color: #e2e8f0;
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery-view {
  width: 50px;
  height: 50px;
  background: #0089c0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.gallery-view:hover {
  background: white;
  color: #0089c0;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-card {
    height: 250px;
  }
}

/* Styles de page-directrice.php */
.director-message {
  padding: 80px 0;
}

.director-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.director-photo {
  position: relative;
  overflow: hidden;
}

.director-photo img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.director-card:hover .director-photo img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(109, 181, 44, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.director-card:hover .photo-overlay {
  opacity: 1;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0089c0;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #1a1a1a;
  color: white;
}

.director-info {
  padding: 25px;
  text-align: center;
}

.director-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.director-info .position {
  font-size: 16px;
  color: #0089c0;
  font-weight: 600;
  margin-bottom: 5px;
}

.director-info .subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.director-contact {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  margin-top: 20px;
}

.director-contact p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}

.director-contact i {
  color: #0089c0;
  margin-right: 8px;
}

.quote-card {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  position: relative;
}

.quote-card i {
  font-size: 40px;
  opacity: 0.3;
  margin-bottom: 15px;
}

.quote-card p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.message-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.message-header h2 {
  font-size: 28px;
  color: #0089c0;
  margin-bottom: 25px;
  font-weight: 700;
}

.message-body .lead {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 25px;
}

.message-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
  text-align: justify;
}

.message-body h3 {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 700;
}

.priorities-grid {
  display: grid;
  gap: 20px;
  margin: 25px 0;
}

.priority-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #0089c0;
}

.priority-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.priority-icon i {
  font-size: 24px;
  color: white;
}

.priority-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.priority-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  padding: 12px 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

.styled-list i {
  color: #0089c0;
  margin-right: 12px;
}

.closing-message {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}

.signature-text {
  font-size: 18px;
  font-weight: 600;
  color: #0089c0;
  font-style: italic;
}

.signature {
  margin-top: 40px;
  text-align: right;
}

.signature .name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.signature .title {
  font-size: 16px;
  color: #0089c0;
  font-weight: 600;
  margin-bottom: 5px;
}

.signature .company {
  font-size: 14px;
  color: #64748b;
}

.key-figures {
  padding: 80px 0;
}

.figure-card {
  background: white;
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.figure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(109, 181, 44, 0.2);
}

.figure-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.figure-icon i {
  font-size: 32px;
  color: white;
}

.figure-card h3 {
  font-size: 42px;
  font-weight: 700;
  color: #0089c0;
  margin-bottom: 10px;
}

.figure-card p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* Styles de page-agences.php */
.section-padding-small {
  padding: 40px 0;
}

.search-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.agencies-section {
  padding: 80px 0;
}

.agency-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.agency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.agency-header {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.agency-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-icon i {
  font-size: 28px;
  color: white;
}

.agency-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.agency-type {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.agency-body {
  padding: 30px;
}
.home-info-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.home-info-item strong {
  font-size: 16px;
  margin-bottom: 10px;
  color: #f0f9ff;
}
.home-info-item p {
  color: #e0f2fe;
  margin: 0;
  line-height: 1.75;
}
.home-info-contacts {
  padding-bottom: 12px;
}
.home-contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-contact-details-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.home-contact-details-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.home-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #bae6fd;
}
.home-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #f0f9ff;
  text-decoration: none;
}
.home-contact-value:hover {
  color: #dcfce7;
}
.info-item {
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-item i {
  color: #0089c0;
  font-size: 20px;
  margin-top: 5px;
}

.info-item strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.agency-footer {
  padding: 20px 30px;
  background: #f8fafc;
  display: flex;
  gap: 15px;
}

.btn-agency {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-agency.primary {
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
}

.btn-agency {
  background: white;
  color: #0089c0;
  border-color: #0089c0;
}

.btn-agency:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-agency i {
  margin-right: 5px;
}

.services-info {
  padding: 80px 0;
}

.service-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 181, 44, 0.2);
}

.service-item i {
  font-size: 40px;
  color: #0089c0;
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
  }

  .agency-footer {
    flex-direction: column;
  }
}

/* Styles de page-actionnariat.php */
.shareholders-chart {
  margin-top: 50px;
}

.shareholder-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.shareholder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 181, 44, 0.2);
}

.shareholder-card.primary {
  border-top: 5px solid #0089c0;
}

.shareholder-card.secondary {
  border-top: 5px solid #3b82f6;
}

.shareholder-card.tertiary {
  border-top: 5px solid #f59e0b;
}

.shareholder-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shareholder-card.secondary .shareholder-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.shareholder-card.tertiary .shareholder-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.shareholder-icon i {
  font-size: 36px;
  color: white;
}

.shareholder-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.percentage {
  font-size: 48px;
  font-weight: 700;
  color: #0089c0;
  margin-bottom: 15px;
}

.shareholder-card.secondary .percentage {
  color: #3b82f6;
}

.shareholder-card.tertiary .percentage {
  color: #f59e0b;
}

.governance-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.governance-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.governance-header i {
  font-size: 48px;
  color: #0089c0;
}

.governance-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.governance-list {
  list-style: none;
  padding: 0;
}

.governance-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.governance-list ul {
  margin-top: 10px;
  margin-left: 20px;
}

.principle-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(109, 181, 44, 0.2);
}

.principle-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.principle-icon i {
  font-size: 32px;
  color: white;
}

.principle-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.principle-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.report-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 181, 44, 0.2);
}

.report-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.report-icon i {
  font-size: 36px;
  color: white;
}

.report-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.report-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-download {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(109, 181, 44, 0.3);
  color: white;
}

.btn-download i {
  margin-right: 8px;
}

/* Styles de page-about.php */
.about-presentation {
  padding: 80px 0;
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content .section-title {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.mission-vision {
  padding: 80px 0;
}

.info-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon-top {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-top i {
  font-size: 32px;
  color: white;
}

.info-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.check-list li {
  padding: 10px 0;
  color: #475569;
}

.check-list i {
  color: #0089c0;
  margin-right: 10px;
}

.values-section {
  padding: 80px 0;
}

.value-card {
  background: white;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(109, 181, 44, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0089c0 0%, #5a9a26 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon i {
  font-size: 36px;
  color: white;
}

.value-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.timeline-section {
  padding: 80px 0;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #0089c0;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: #0089c0;
  border: 4px solid white;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(109, 181, 44, 0.2);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0089c0;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    text-align: left !important;
  }
}

/* ==========================================
   MENU BURGER MOBILE
   ========================================== */

/* Bouton burger - caché par défaut sur desktop */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
  outline: none;
  transition: all 0.3s ease;
}

.burger-menu:hover {
  opacity: 0.7;
}

.burger-menu:focus {
  outline: 2px solid #0089c0;
  outline-offset: 3px;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: #0089c0;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animation du bouton burger quand le menu est ouvert */
.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Media queries pour mobile */
@media (max-width: 992px) {
  /* Afficher le bouton burger */
  .burger-menu {
    display: flex !important;
    order: 2;
    pointer-events: auto !important;
    position: fixed !important;
    top: 70px !important;
    right: 20px !important;
    z-index: 10000 !important;
    margin-left: auto;
    background: white !important;
    padding: 8px !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }

  /* Quand le menu est ouvert, le burger doit être au-dessus */
  .burger-menu.active {
    z-index: 10001 !important;
  }

  /* Ajuster la navigation */
  .nav-content {
    position: relative;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .logo-section {
    order: 1;
    z-index: 1002;
    flex-shrink: 0;
  }

  /* Menu mobile */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -430px !important;
    width: 300px !important;
    height: 100vh !important;
    background: white !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
    transition: right 0.4s ease !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    padding-top: 70px !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
    display: flex !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Menu ouvert */
  .nav-links.active {
    right: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Overlay sombre quand le menu est ouvert */
  .nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 9998 !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
  }

  .nav-overlay.active {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Styles du menu mobile */
  .main-menu {
    flex-direction: column !important;
    width: 100% !important;
    padding: 20px 0 !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    justify-content: flex-start !important;
  }

  .main-menu > li {
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .main-menu > li > a {
    display: block !important;
    padding: 15px 25px !important;
    font-size: 16px !important;
    color: #1a1a1a !important;
    border-bottom: none !important;
    text-align: left !important;
    width: 100% !important;
  }

  .main-menu > li > a:hover {
    background: #f8f9fa;
    color: #0089c0;
  }

  /* Sous-menus dans le menu mobile */
  .main-menu .dropdown-menu,
  .main-menu .sub-menu {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    width: 100% !important;
    z-index: 10005 !important;
  }

  .main-menu .dropdown.active .dropdown-menu,
  .main-menu .menu-item-has-children.active .sub-menu,
  .main-menu .dropdown.active .sub-menu {
    display: block !important;
    max-height: 500px !important;
    overflow-y: auto !important;
  }

  .main-menu .dropdown-menu li {
    border-bottom: none;
  }

  .main-menu .dropdown-menu li a,
  .main-menu .sub-menu li a {
    padding: 12px 25px 12px 45px !important;
    font-size: 14px !important;
    color: #555 !important;
    display: block !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10006 !important;
    position: relative !important;
  }

  .main-menu .dropdown-menu li a:hover,
  .main-menu .sub-menu li a:hover {
    background: white !important;
    color: #0089c0 !important;
  }

  /* Indicateur de sous-menu */
  .main-menu .dropdown > a::after,
  .main-menu .menu-item-has-children > a::after {
    content: "\f078" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    float: right !important;
    transition: transform 0.3s ease !important;
    margin-left: 10px !important;
    pointer-events: none !important;
  }

  .main-menu .dropdown.active > a::after,
  .main-menu .menu-item-has-children.active > a::after {
    transform: rotate(180deg) !important;
  }

  /* Actions du menu (recherche et réseaux sociaux) */
  .nav-actions {
    flex-direction: column;
    width: 100%;
    padding: 20px 25px;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-actions .search-btn {
    margin: 0;
  }

  .nav-actions .social-icons {
    justify-content: flex-start;
    width: 100%;
    gap: 15px;
  }

  /* Ajuster le padding du top-header pour mobile */
  .top-header .container {
    padding: 8px 20px;
  }

  .contact-info {
    font-size: 12px;
  }

  .contact-info span {
    margin-right: 10px;
  }

  .separator {
    display: none;
  }

  /* Masquer certains éléments du contact-info sur très petits écrans */
  @media (max-width: 576px) {
    .contact-info span:last-of-type {
      display: none;
    }
  }
}

/* Pour les écrans très petits */
@media (max-width: 576px) {
  .nav-links {
    width: 280px;
  }

  .main-menu > li > a {
    font-size: 15px;
    padding: 12px 20px;
  }

  .main-menu .dropdown-menu li a {
    padding: 10px 20px 10px 35px;
    font-size: 13px;
  }
}

/* Support RTL pour l'arabe */
.rtl .nav-links {
  right: auto;
  left: -100%;
}

.rtl .nav-links.active {
  left: 0;
  right: auto;
}

.rtl .main-menu .dropdown > a::after {
  float: left;
}

.rtl .nav-actions {
  align-items: flex-end;
}
/* Footer minimal (copyright + barre sombre) */
.site-footer-minimal {
  background: #0a0f1a;
  color: #9ca3af;
  margin-top: 80px;
  padding: 22px 20px;
  text-align: center;
}
.site-footer-minimal__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer-minimal__copy {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #9ca3af;
}
.site-footer-minimal__brand {
  color: #f3f4f6;
  font-weight: 700;
  margin: 0 0.35em;
}
