/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://COM'ON.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #eb6113;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #004d8a;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #f7f7f7;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828;
  /* The default color of the main navmenu links */
  --nav-hover-color: #5fcf80;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5fcf80;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

/* Container responsive */
.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


@media (max-width: 768px) {
  .header {
    padding: 10px 0 15px 0;
  }
}

.header-buttons {
  margin-left: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  right: 100px;
  position: relative;
}


.logo-idu {
  margin-left: -20px;
}

.logo-idu,
.logo-cepici {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  /* margin-right: 20px; */
  transition: all 0.3s ease;
}

/* Ajustements logos pour éviter le décalage sur tailles intermédiaires */
@media (max-width: 1439px) {
  .logo-section {
    right: 0 !important;  /* Supprimer le décalage */
    gap: 0.5rem;
  }
  
  .logo-idu {
    margin-left: 0 !important;  /* Supprimer le margin négatif */
  }
}

/* Laptop (1200px - 1439px) - Inclut 1440x900 */
@media (min-width: 1200px) and (max-width: 1439px) {
  .logo-section {
    gap: 0.6rem;
  }
  
  .logo-img {
    height: 42px !important;
  }
}

/* Tablette Paysage (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .logo-section {
    gap: 0.5rem;
  }
  
  .logo-img {
    height: 40px !important;
  }
}

/* Tablette Portrait (768px - 1023px) - Inclut 810px, 820px */
@media (min-width: 768px) and (max-width: 1023px) {
  .logo-section {
    gap: 0.5rem;
    right: 0 !important;
  }
  
  .logo-img {
    height: 38px !important;
  }
  
  .logo-idu {
    margin-left: 0 !important;
  }
}


.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  /* gap: 2rem; */
}


.navmenu a {
  text-decoration: none;
  color: var(--default-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.navmenu a:hover {
  color: var(--accent-color);
}

.dropdown {
  position: relative;
}

.dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  flex-direction: column;
  gap: 0;
  z-index: 1000;
}

.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown ul li {
  width: 100%;
}

.dropdown ul a {
  padding: 0.75rem 1rem;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown ul a:hover {
  background: #f8f9fa;
}


@media (max-width: 768px) {


  .logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    right: 0px;
    position: relative;
  }

  .logo-img {
    height: 35px !important;
    margin-right: 5px !important;
  }
}

@media (max-width: 480px) {
  .logo-section {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    right: 0px;
    position: relative;
  }

  .logo-img {
    height: 30px !important;
    margin-right: 3px !important;
  }
}

@media (max-width: 360px) {
  .logo-section {
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
    right: 0px;
    position: relative;
  }



  .logo-img {
    height: 25px !important;
    margin-right: 0 !important;
  }

  .logo-idu,
  .logo-cepici {
    display: flex;
    align-items: center;
  }
}

.navmenu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.btn-custom {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-custom-1-container {
  display: flex;
  align-items: end;
  justify-content: end;
}

.btn-custom-1 {
  padding: 0px 10px 0px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}


.btn-custom-2-container {
  display: flex;
  align-items: end;
  justify-content: end;
}

.btn-custom-2 {
  padding: 0px 10px 0px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-top: 150px;
  margin-left: 35px;
  margin-right: 20px;
}



.btn-orange-2 {
  background: #eb6113;
  color: white;
}

.btn-orange-2:hover {
  background: #12b886;
  ;
  color: white;
}

.btn-blue-2 {
  background: #004d8a;
  color: white;
}

.btn-blue-2:hover {
  background: #12b886;
  color: white;
}


.btn-orange {
  background: #eb6113;
  color: white;
}

.btn-orange:hover {
  background: #004d8a;
  color: white;
}

.btn-blue {
  background: #004d8a;
  color: white;
}

.btn-blue:hover {
  background: #eb6113;
  color: white;
}

.text-orange {
  color: #eb6113;
}

.text-blue {
  color: #004d8a;
}


.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--default-color);
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--accent-color);
}

/* Cacher le hamburger sur grand écran (>= 1440px) */
@media (min-width: 1440px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

/* ========================================
   RESPONSIVE NAVIGATION - Breakpoints optimisés
   ======================================== */

/* Desktop (>= 1440px) - Menu horizontal normal */
/* Géré plus bas dans le fichier */

/* Petit Desktop + Tablettes + Mobile (< 1440px) - Menu hamburger */
@media (max-width: 1439px) {
  /* Bouton hamburger visible */
  .mobile-nav-toggle {
    display: block !important;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
  }
  
  /* Navigation en sidebar */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 10000;
    padding: 80px 30px 30px;
    overflow-y: auto;
  }
  
  /* Menu caché par défaut */
  .navmenu ul {
    display: none !important;
  }
  
  /* Menu visible quand actif */
  .navmenu.mobile-nav-active {
    right: 0;
  }
  
  .navmenu.mobile-nav-active ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .navmenu ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .navmenu a {
    padding: 15px 0;
    display: block;
    width: 100%;
    font-size: 1rem;
    color: #333;
  }
  
  .navmenu a:hover {
    color: var(--accent-color);
    background-color: rgba(0, 77, 138, 0.05);
  }
  
  /* Dropdown en sidebar */
  .dropdown ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    display: none;
  }
  
  .dropdown.dropdown-active ul {
    display: block;
  }
  
  .dropdown ul a {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #666;
  }
}

/* Petit Desktop / Laptop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .header .container-fluid {
    padding: 0 30px;
  }
  
  .header-buttons {
    margin-left: 25px;
  }
  
  .btn-custom {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .navmenu {
    width: 360px;
    padding: 90px 40px 40px;
  }
  
  .navmenu a {
    font-size: 1.1rem;
    padding: 17px 0;
  }
}

/* iPad Paysage (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .header .container-fluid {
    padding: 0 25px;
  }
  
  .header-buttons {
    margin-left: 20px;
  }
  
  .btn-custom {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .navmenu {
    width: 340px;
    padding: 90px 35px 35px;
  }
  
  .navmenu a {
    font-size: 1.05rem;
    padding: 16px 0;
  }
}

/* Tablettes Portrait (768px - 1023px) */
/* Couvre aussi 810px, 820px */
@media (min-width: 768px) and (max-width: 1023px) {
  .header .container-fluid {
    padding: 0 20px;
  }
  
  .header-buttons {
    margin-left: 15px;
  }
  
  .btn-custom {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .navmenu {
    width: 300px;
    padding: 80px 25px 25px;
  }
  
  .navmenu a {
    font-size: 1rem;
    padding: 15px 0;
  }
}
/* Mobile (< 768px) */
@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }

  .header .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    gap: 10px;
  }

  /* Logo section - ordre 1 */
  .header .logo {
    order: 1;
    flex: 0 0 auto;
  }

  .logo-section {
    gap: 0.3rem;
  }

  .logo-img {
    height: 35px !important;
    margin-right: 5px !important;
  }

  /* Mobile toggle - ordre 2 */
  .mobile-nav-toggle {
    order: 2;
    margin-left: auto;
  }

  /* Boutons - ordre 3, nouvelle ligne */
  .header-buttons,
  .d-flex.gap-2 {
    order: 3;
    width: 100%;
    display: flex !important;
    justify-content: center;
    gap: 0.5rem !important;
    margin: 10px 0 0 0 !important;
    flex-basis: 100%;
  }

  .btn-custom {
    flex: 1;
    max-width: 140px;
    padding: 8px 12px;
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
  }

  /* Menu sidebar mobile - redéfinition pour mobile */
  .navmenu {
    width: 280px !important;
    padding: 80px 20px 20px !important;
  }

  .navmenu a {
    font-size: 0.95rem !important;
    padding: 14px 0 !important;
  }

  .dropdown .toggle-dropdown {
    transition: transform 0.3s;
  }

  .dropdown.dropdown-active .toggle-dropdown {
    transform: rotate(180deg);
  }
}



@media (max-width: 480px) {
  .header .container-fluid {
    padding: 0 10px;
  }

  .logo-img {
    height: 30px !important;
    margin-right: 3px !important;
  }

  .btn-custom {
    padding: 6px 10px;
    font-size: 0.7rem;
    max-width: 120px;
  }

  .navmenu {
    width: 260px;
  }
}

@media (max-width: 360px) {
  .logo-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .logo-img {
    height: 28px !important;
    margin-right: 0 !important;
  }

  .btn-custom {
    font-size: 0.65rem;
    padding: 5px 8px;
    max-width: 100px;
  }

  .navmenu {
    width: 240px;
  }
}



/* Scrolled header */
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/* Mobile nav overlay */
/* @media (max-width: 768px) {
  .mobile-nav-active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 9997;
    pointer-events: auto;
  }
} */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop (>= 1440px) */
@media (min-width: 1440px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 12px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  /* body.mobile-nav-active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 9998;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
  } */

  /* Empêcher le scroll du body quand menu ouvert */
  body.mobile-nav-active {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .mobile-nav-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  /* Quand le menu est ouvert */
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10002;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1439px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  /* Mobile navigation improvements */
  @media (max-width: 768px) {
    .mobile-nav-toggle {
      font-size: 24px;
      margin-right: 0;
      position: relative;
      display: block !important;
      z-index: 10000;
    }
  }

  @media (max-width: 480px) {
    .mobile-nav-toggle {
      font-size: 20px;
      margin-right: 0;
      display: block !important;
    }
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #333;
    position: fixed;
    font-size: 32px;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 10000;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 9999;
    padding: 80px 20px 20px;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .mobile-nav-active .navmenu ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav-active .navmenu ul li:last-child {
    border-bottom: none;
  }

  .mobile-nav-active .navmenu a {
    /*  padding: 15px 0; */
    display: block;
    width: 100%;
    font-size: 1rem;
    color: #333;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.footer .logo-footer {
  width: 250px;
  height: 120px;
}

.footer .footer-brand h1,
.footer .footer-brand .logo {
  margin: 0;
  line-height: 1;
  font-weight: 600;
  justify-content: center;
}

.footer .footer-brand h1 .sitename,
.footer .footer-brand .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 0.8px;
  color: var(--heading-color);
}

.footer .footer-brand .tagline {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin: 12px 0 0;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 50px; */
  height: 50px;
  border-radius: 8px;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.footer .social-links a i {
  font-size: 25px;
}

.footer .footer-links-grid {
  position: relative;
}

.footer .footer-links-grid .row {
  position: relative;
}

.footer .footer-links-grid .col-6:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}


.footer .footer-links-grid .col-6 {
  padding-left: 20px;
  padding-right: 20px;
}


.footer .footer-links-grid h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  line-height: 1.3;
}


.footer .footer-links-grid p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
  font-family: var(--heading-font);
  letter-spacing: 0.3px;
  line-height: 1.5;
}


.footer .footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links-grid ul li {
  margin-bottom: 12px;
}

.footer .footer-links-grid ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.footer .footer-links-grid ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer .footer-links-grid ul li a:hover {
  color: var(--accent-color);
  padding-left: 16px;
}

.footer .footer-links-grid ul li a:hover::before {
  opacity: 1;
}


.footer .footer-cta {
  position: relative;
  padding-left: 20px;
}

.footer .footer-cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {

  .footer .footer-links-grid .col-6:first-child::after,
  .footer .footer-cta::before {
    display: none;
  }

  .footer .footer-links-grid .col-6 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 25px;
  }

  .footer .footer-cta {
    padding-left: 15px;
  }
}


@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }

  .footer .logo-footer {
    width: 200px;
    height: auto;
  }

  .footer .footer-links-grid .col-6:first-child::after,
  .footer .footer-cta::before {
    display: none;
  }

  .footer .footer-links-grid .col-6,
  .footer .footer-cta {
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .footer .social-links {
    justify-content: center;
  }
}

.footer .footer-cta h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: var(--heading-font);
}

.footer .footer-cta .btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer .footer-cta .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom {
  color: var(--default-color);
  background: #fff;
}


@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
  color: var(--heading-color);
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer .footer-links-grid {
    margin-bottom: 30px;
  }

  .footer .footer-cta {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .row {
    text-align: center;
  }

  .footer .footer-brand,
  .footer .footer-links-grid,
  .footer .footer-cta {
    margin-bottom: 40px;
  }

  .footer .footer-links-grid .col-6 {
    margin-bottom: 30px;
  }

  .footer .footer-links-grid h5 {
    text-align: left;
  }

  .footer .footer-links-grid ul {
    text-align: left;
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Espacement des sections */
  section,
  .section {
    padding: 40px 0;
  }

  /* Titres responsive */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  section,
  .section {
    padding: 30px 0;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }
}

/* 11. AMÉLIORATIONS TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {

  .sector-item:hover,
  .action-card:hover,
  .btn-custom:hover {
    transform: none;
  }

  .sector-item:active {
    background-color: var(--accent-color);
    color: white;
  }
}


#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  /*  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color); */
  color: #000;
  background-color: #fff;
  position: relative;
  margin-top: 10px;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: lighter;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}


.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}



.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}



.section-title-blog {
  position: relative;
  margin-top: 50px;

}


.section-title-blog h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

/* .section-title-blog h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
} */

.section-title-blog p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  max-height: 60vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-content {
  background: linear-gradient(135deg, #004D8A 0%, #102a49 100%);
  padding-left: 107px;
  border-radius: 0px 0px 0px 85px;
  color: #fff;
  height: 100%;
  top: -11px;
  position: relative;
  right: 217px;
  padding-bottom: 145px;
  padding-top: 107px;
  padding-right: 50px;
}

.hero .hero-content h1 {
  color: #fff;
  margin: 0;
  font-size: 50px;
  font-weight: bolder;
}

.hero .hero-content h2 {
  color: #fff;
  margin: 0;
  font-size: 35px;
  font-weight: 700;
}

.hero .hero-content h5 {
  color: #fff;
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.hero .hero-content p {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}


.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

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

  .hero p {
    font-size: 18px;
  }
}

/* iPad et Tablettes (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    max-height: 65vh;
    min-height: 480px;
    padding: 50px 0;
  }

  .hero .hero-content {
    background: linear-gradient(135deg, rgba(0, 77, 138, 0.95) 0%, rgba(16, 42, 73, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    right: 80px;
    top: 0;
    max-width: 580px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .hero .hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .hero .hero-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .hero .hero-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
}

/* Écrans 13 pouces / Petits Laptops (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero {
    max-height: 68vh;
    min-height: 500px;
    padding: 60px 0;
  }

  .hero .hero-content {
    background: linear-gradient(135deg, rgba(0, 77, 138, 0.95) 0%, rgba(16, 42, 73, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-left: 60px;
    padding-right: 45px;
    padding-top: 70px;
    padding-bottom: 80px;
    border-radius: 0px 0px 0px 60px;
    color: #fff;
    position: relative;
    right: 150px;
    top: -11px;
    max-width: 620px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero .hero-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .hero .hero-content p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    margin-top: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .hero {
    max-height: none;
    min-height: 60vh;
    padding: 60px 0;
  }

  .hero .hero-content {
    background: linear-gradient(135deg, #004D8A 0%, #102a49 100%);
    padding-left: 107px;
    border-radius: 0px 0px 0px 85px;
    color: #fff;
    height: 100%;
    top: -11px;
    position: relative;
    right: 0px;
    padding: 30px 20px;
  }



  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero .hero-content p {
    font-size: 12px;
    margin-top: 15px;
  }
}


@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
    min-height: 50vh;
  }

  .hero .hero-content {
    padding: 35px 20px;
  }

  .hero .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero .hero-content h2 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Search Section
--------------------------------------------------------------*/

/* Search Container */
.search-container {
  position: relative;
  bottom: 25px;
  /* Réduit de 30px */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 95%;
  max-width: 1100px;
  /* Réduit légèrement */
  padding: 0 15px;
}



.search-card {
  background: white;
  border-radius: 30px;
  /* Réduit de 50px */
  border: 1px solid var(--heading-color);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  padding: 12px 18px;
  /* Réduit le padding */
}


.search-card .form-control,
.search-card .form-select {
  font-size: 16px;
  /* Réduit de 18px */
  color: #bbbbbb;
  padding: 12px;
  /* Réduit de 15px */
  border: none;
  background: transparent;
}

.search-card .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23eb6113' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  padding-right: 40px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


.search-card .form-select:hover {
  background-color: rgba(235, 97, 19, 0.05);
  transition: background-color 0.3s ease;
}

.search-card .form-control:focus,
.search-card .form-select:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: rgba(235, 97, 19, 0.08);
}


.search-card .btn-orange {
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .search-container {
    width: 98%;
    bottom: 20px;
    padding: 0 10px;
  }

  .search-card {
    padding: 10px 15px;
    border-radius: 25px;
  }

  .search-card .row {
    gap: 8px;
  }

  .search-card .form-control,
  .search-card .form-select {
    font-size: 14px;
    padding: 10px;
  }

  .search-card .btn-orange {
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .search-container {
    width: 95%;
    bottom: 15px;
    padding: 0 10px;
  }

  .search-card {
    padding: 15px;
    border-radius: 20px;
  }

  .search-card .row {
    flex-direction: column;
    gap: 10px;
  }

  .search-card .col-md-3,
  .search-card .col-md-4,
  .search-card .col-md-2 {
    width: 100%;
    margin-bottom: 0;
  }

  .search-card .form-control,
  .search-card .form-select {
    font-size: 14px;
    padding: 12px;
  }

  .search-card .btn-orange {
    padding: 12px;
    width: 100%;
    margin-top: 5px;
  }
}


@media (max-width: 576px) {
  .search-container {
    bottom: 15px;
  }

  .search-card {
    padding: 8px 12px;
    border-radius: 20px;
  }

  .search-card .row {
    flex-direction: column;
    gap: 8px;
  }

  .search-card .col-md-3,
  .search-card .col-md-4,
  .search-card .col-md-2 {
    width: 100%;
    margin-bottom: 8px;
  }

  .search-card .form-control,
  .search-card .form-select {
    font-size: 13px;
    padding: 8px;
  }

  .search-card .btn-orange {
    padding: 8px 15px;
    font-size: 12px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .search-container {
    width: 98%;
    padding: 0 5px;
  }

  .search-card {
    padding: 12px;
  }

  .search-card .form-control,
  .search-card .form-select {
    font-size: 13px;
    padding: 10px;
  }
}
@media (max-width: 360px) {

  .search-card .form-control,
  .search-card .form-select {
    font-size: 12px;
    padding: 6px;
  }

  .search-card .btn-orange {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* Sectors Section */
.sectors-section {
  /*  margin-top: 30px; */
}

.sectors-section h2 {
  font-size: 38px;
  font-weight: 300;
  color: var(--accent-color);
}

.sectors-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.sectors-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 10px;
  scrollbar-width: thin;
  scrollbar-color: #004D8A #f1f1f1;
}

.sectors-carousel-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.sectors-carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}


.sectors-carousel-wrapper::-webkit-scrollbar-thumb {
  background: #004D8A;
  border-radius: 4px;
}

.sectors-carousel-wrapper::-webkit-scrollbar-thumb:hover {
  background: #003366;
}

.sectors-carousel {
  display: flex;
  gap: 15px;
  padding: 20px 10px;
  width: max-content;
  transition: none;
  /* Retire l'animation transform */
}


.sector-slide {
  flex: 0 0 auto;
  width: 140px;
}

.sector-link {
  text-decoration: none;
  color: inherit;
}


.carousel-btn {
  display: none;
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  background: white;
  cursor: pointer;
  border-right: 1px solid #ddd;
}

.sector-item:hover {
  background-color: #004D8A;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 77, 138, 0.2);
  border-radius: 30px;
}

.sector-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  transition: filter 0.3s ease;
}

.sector-item:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.sector-item span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .sectors-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .sectors-carousel-wrapper {
    margin: 0 -10px;
    padding: 0 10px;
  }

  .sectors-carousel {
    gap: 10px;
    padding: 15px 5px;
  }

  .sector-slide {
    width: 110px;
  }

  .sector-item {
    padding: 15px 10px;
  }

  .sector-item img {
    width: 48px;
    height: 48px;
  }

  .sector-item span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .sectors-section h2 {
    font-size: 24px;
  }

  .sector-slide {
    width: 100px;
  }

  .sector-item {
    padding: 12px 8px;
  }

  .sector-item img {
    width: 40px;
    height: 40px;
  }

  .sector-item span {
    font-size: 11px;
    line-height: 1.2;
  }
}

/* Boutons de navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #004D8A;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 77, 138, 0.3);
}

.carousel-btn:hover {
  background: #003366;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: -25px;
}

.carousel-btn-prev {
  left: -25px;
}

.carousel-btn-next {
  right: -25px;
}

.sectors-pagination {
  display: none;
}

/* Pagination dots */
.sectors-pagination {
  margin-top: 20px;
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

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

.pagination-dot.active {
  background: #004D8A;
  transform: scale(1.2);
}

/* Responsive design */
@media (max-width: 768px) {
  .sectors-section h2 {
    font-size: 28px;
  }

  .sector-slide {
    width: 120px;
  }

  .sector-item {
    padding: 15px 10px;
  }

  .sector-item img {
    width: 48px;
    height: 48px;
  }

  .sector-item span {
    font-size: 12px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn-prev {
    left: -15px;
  }

  .carousel-btn-next {
    right: -15px;
  }
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  max-width: 1433px;
  margin: 0 auto;
  padding: 20px;
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0px;
  border-right: 1px solid #ddd;
}

.sector-item:hover {
  background-color: var(--accent-color);
  border-radius: 30px;
  color: white;
  padding: 20px 0px;
}

.sector-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.sector-item:hover img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.sector-item span {
  font-size: 14px;
  font-weight: 300;
}


/* Flash News */
.flash-news {
  background-color: var(--light-gray);
  padding: 10px 0;
  /* Réduit de 15px à 10px */
}

.flash-news-bar {
  display: flex;
  align-items: center;
  background-color: rgba(217, 217, 217, 0.25);
  /* Moins opaque */
  border-radius: 50px;
  /* Réduit de 100px */
  padding: 8px 15px;
  /* Réduit le padding */
  position: relative;
  max-width: 100%;
  overflow: hidden;
}


.flash-label {
  background-color: var(--heading-color);
  color: white;
  padding: 8px 20px;
  /* Réduit de 15px 30px */
  border-radius: 50px;
  /* Réduit de 100px */
  font-weight: bold;
  font-size: 14px;
  /* Réduit de 18px */
  margin-right: 15px;
  white-space: nowrap;
  flex-shrink: 0;
}


.flash-content {
  flex: 1;
  font-size: 16px;
  /* Réduit de 25px */
  font-style: italic;
  color: var(--text-gray);
  overflow: hidden;
}

.flash-content marquee {
  font-size: inherit;
}

.flash-icons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.flash-icons i {
  width: 28px;
  /* Réduit de 34px */
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heading-color);
  color: white;
  border-radius: 50%;
  font-size: 12px;
}


@media (max-width: 768px) {
  .flash-news-bar {
    padding: 6px 10px;
    border-radius: 30px;
  }

  .flash-label {
    padding: 6px 15px;
    font-size: 12px;
    margin-right: 10px;
  }

  .flash-content {
    font-size: 14px;
  }

  .flash-icons i {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .flash-news {
    padding: 8px 0;
  }

  .flash-news-bar {
    padding: 5px 8px;
    border-radius: 25px;
  }

  .flash-label {
    padding: 5px 12px;
    font-size: 11px;
    margin-right: 8px;
  }

  .flash-content {
    font-size: 12px;
  }

  .flash-icons {
    gap: 5px;
  }

  .flash-icons i {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
}



/* Why IDU Section */
.why-idu-section {
  padding: 40px 0;
}

.why-idu-title {
  font-size: 66px;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 40px;
}

.why-idu-text {
  font-size: 20px;
  font-weight: lighter;
  color: #000;
  text-align: justify;
  line-height: 1.3;
}

.why-idu-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blue-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: var(--accent-color);
  border-radius: 50%;
  z-index: 1;
  margin-bottom: 3rem;
}

.why-idu-image img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  bottom: 4.5rem;
}


@media (max-width: 768px) {
  .why-idu-section {
    padding: 30px 0;
  }

  .why-idu-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
  }

  .why-idu-text {
    font-size: 16px;
    text-align: left;
  }
  
  /* Fix: S'assurer que le bouton est cliquable sur mobile */
  .why-idu-section .btn-custom-1-container {
    position: relative;
    z-index: 100;
    margin-bottom: 30px;
  }
  
  .why-idu-section .btn {
    position: relative;
    z-index: 101;
  }
  
  /* Contenir l'image dans sa colonne */
  .why-idu-image {
    overflow: hidden;
    margin-top: 20px;
  }

  .blue-circle {
    width: 300px;
    height: 300px;
    margin-bottom: 2rem;
  }

  .why-idu-image img {
    bottom: 3rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .why-idu-title {
    font-size: 28px;
  }

  .why-idu-text {
    font-size: 14px;
  }
  
  /* Fix: Bouton encore plus prioritaire sur petits écrans */
  .why-idu-section .btn-custom-1-container {
    z-index: 150;
    margin-bottom: 40px;
  }
  
  .why-idu-section .btn {
    z-index: 151;
  }

  .blue-circle {
    width: 250px;
    height: 250px;
  }
  
  /* Réduire encore plus l'image sur petits écrans */
  .why-idu-image img {
    max-width: 80%;
    bottom: 2rem;
  }
}


/* Action Cards */
.action-cards {
  padding: 60px 0;
}

.action-card {
  border-radius: 25px;
  /* padding: 40px; */
  color: white;
  min-height: 203px;
  display: flex;
  align-items: center;
}



@media (max-width: 768px) {
  .action-cards {
    padding: 40px 0;
  }

  .action-card {
    min-height: auto;
    padding: 20px;
    margin-bottom: 20px;
  }

  .action-card .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .action-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }

  .action-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .action-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn-custom-2 {
    position: static !important;
    margin: 20px auto 0 !important;
    display: block;
    width: auto;
    max-width: 200px;
  }
}


/* Cette règle est maintenant gérée plus haut dans le CSS */

.btn-custom-2-container {
  display: flex;
  align-items: end;
  justify-content: end;
}


.orange-card {
  background-color: var(--accent-color);
}

.blue-card {
  background-color: var(--heading-color);
}

.action-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.action-card h3 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}

.action-card p {
  font-weight: lighter;
}


/* IDU Section */
.idu-section {
  padding: 50px 0;
}

.idu-card {
  background-color: var(--accent-color);
  border-radius: 25px;
  padding: 60px;
  color: white;
}

.idu-title-section {
  text-align: left;
}

.idu-main-title {
  font-size: 100px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.idu-subtitle {
  font-size: 33px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
}

.idu-description {
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  color: white;
}

.idu-info-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  height: 100%;
}

.idu-info-card img,
.idu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.idu-info-card h4 {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.idu-info-card p {
  font-size: 19px;
  font-weight: 400;
  color: #000;
}

@media (max-width: 768px) {
  .idu-section {
    padding: 30px 0;
  }

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

  .idu-main-title {
    font-size: 60px;
  }

  .idu-subtitle {
    font-size: 24px;
  }

  .idu-description {
    font-size: 20px;
  }

  .idu-info-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .idu-info-card img,
  .idu-card-img {
    height: 150px;
  }

  .idu-info-card h4 {
    font-size: 18px;
  }

  .idu-info-card p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .idu-main-title {
    font-size: 48px;
  }

  .idu-subtitle {
    font-size: 20px;
  }

  .idu-description {
    font-size: 18px;
  }
}

/* Lien de carte sans soulignement */
.idu-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.idu-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Transition au survol */
.idu-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idu-card-link:hover .idu-info-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
/* Responsive pour tablettes / iPad (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .idu-section {
    padding: 40px 0;
  }
  
  .idu-card {
    padding: 40px 30px;
  }
  
  /* Titre centré sur iPad */
  .idu-title-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .idu-main-title {
    font-size: 70px;
    margin-bottom: 15px;
  }
  
  .idu-subtitle {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .idu-description {
    font-size: 22px;
  }
  
  /* Cartes - 3 sur une ligne sur iPad */
  .idu-info-card {
    padding: 25px 20px;
  }
  
  .idu-card-img {
    height: 160px;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .idu-info-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .idu-info-card p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* iPad en mode paysage (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .idu-card {
    padding: 50px 40px;
  }
  
  .idu-main-title {
    font-size: 80px;
  }
  
  .idu-subtitle {
    font-size: 28px;
  }
  
  .idu-description {
    font-size: 24px;
  }
  
  .idu-info-card {
    padding: 28px 22px;
  }
  
  .idu-card-img {
    height: 180px;
  }
  
  .idu-info-card h4 {
    font-size: 18px;
  }
  
  .idu-info-card p {
    font-size: 15px;
  }
}

/* Espacement mobile amélioré */
@media (max-width: 768px) {
  .idu-title-section {
    margin-bottom: 20px;
  }
  
  .idu-card {
    border-radius: 15px;
  }
  
  .idu-info-card {
    border-radius: 15px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .idu-card {
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .idu-main-title {
    font-size: 40px;
  }
  
  .idu-subtitle {
    font-size: 18px;
  }
  
  .idu-description {
    font-size: 16px;
  }
  
  .idu-info-card {
    padding: 15px;
    border-radius: 12px;
  }
  
  .idu-info-card img,
  .idu-card-img {
    height: 120px;
    border-radius: 10px;
  }
  
  .idu-info-card h4 {
    font-size: 16px;
  }
  
  .idu-info-card p {
    font-size: 14px;
  }
}





/* 
Zone Pub1 Section
*/


.zone-pub1 {
  padding: 50px 0;
}

.zone-pub1-container {
  width: 1418;
  height: 400px;
  /* background-color: #f0f0f0; */
  border-radius: 25px;
  padding: 20px;
  margin: 0 auto;
  margin-top: 20px;
}


@media (max-width: 768px) {
  .zone-pub1-container {
    width: 100%;
    height: auto;
    border-radius: 25px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 20px;
  }
}


.zone-pub2 {
  padding: 50px 0;
}

.zone-pub2-container {
  width: 1664.92px;
  height: 212px;
  /* background-color: #f0f0f0; */
  border-radius: 25px;
  padding: 20px;
  margin: 0 auto;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .zone-pub2-container {
    width: 100%;
    height: auto;
    border-radius: 25px;
    padding: 20px;
    margin: 0 auto;
  }
}


.zone-pub2-container img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}


.banners {
  margin-bottom: 50px;
}

.banners img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/

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

/* .blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
} */

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-posts .post-img {
  overflow: hidden;
}



/* .blog-posts .post-img img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
} */


.blog-posts .post-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

/* .blog-posts .post-date {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
} */

.blog-posts .post-date {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  position: absolute;
  right: 15px;
  bottom: 15px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 20px;
}

.blog-posts .post-content {
  padding: 30px;
}
.blog-posts .post-title {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-posts p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: lighter;
  text-align: justify;
  line-height: 1.6;
  color: #666;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* .blog-posts p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: lighter;
  text-align: justify;
  line-height: 1.3;
} */


.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: var(--accent-color);
  text-decoration: none;
  margin-top: auto;
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
  transition: 0.3s;
}


 /* Section Title */
 .section-title-blog {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-blog h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}


.blog-posts article:hover .post-title,
        .blog-posts article:hover .readmore {
            color: var(--accent-color);
        }

        .blog-posts article:hover .post-img img {
            transform: scale(1.1);
        }

        .blog-posts article:hover .readmore i {
            transform: translateX(5px);
        }


/* Sidebar Styles */
.sidebar {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 0;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

.sidebar-section {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.sidebar-section:last-child {
  border-bottom: none;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Search Bar */
.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  background: #2980b9;
}

/* Categories */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 8px;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s;
  cursor: pointer;
}

.category-link:hover,
.category-link.active {
  background: var(--accent-color);
  color: white;
  transform: translateX(5px);
}

.category-count {
  background: rgba(0,0,0,0.1);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.category-link.active .category-count {
  background: rgba(255,255,255,0.2);
}

/* Recent Posts */
.recent-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-img {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.recent-post-content h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.recent-post-content h6 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: 0.3s;
}

.recent-post-content h6 a:hover {
  color: var(--accent-color);
}

.recent-post-date {
  font-size: 12px;
  color: #999;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 50px 20px;
  color: #999;
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ddd;
}

.no-results h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

/* Section Title */
.section-title-blog {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-blog h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.section-title-blog p {
  font-size: 1.1rem;
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
      padding: 60px 0;
  }

  .blog-posts .post-img img {
      height: 200px;
  }

  .blog-posts .post-content {
      padding: 20px;
  }

  .blog-posts .post-title {
      font-size: 18px;
  }

  .sidebar {
      margin-top: 40px;
      position: static;
  }

  .section-title-blog h2 {
      font-size: 2rem;
  }
}





@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-posts .post-img img {
    width: 100%;
    height: 200px;
  }

  .blog-posts .post-content {
    padding: 20px;
  }

  .blog-posts .post-title {
    font-size: 18px;
  }

  .flux-bourse-sidebar {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
}


/*
 ****************************************************************
 Article Detail Section 
 */

.article-detail {
  padding: 80px 0;
}

.article-detail .article-header {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

.article-detail .article-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.article-detail .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.article-detail .article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 40px;
  color: white;
}

.article-detail .article-category {
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.article-detail .article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.article-detail .article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.article-detail .article-meta i {
  margin-right: 5px;
}

/* Responsive Mobile pour Article Detail */
@media (max-width: 768px) {
  .article-detail .article-image {
    height: 250px;
  }
  
  .article-detail .article-overlay {
    padding: 20px 15px;
  }
  
  .article-detail .article-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .article-detail .article-category {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  
  .article-detail .article-meta {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
  }
  
  .article-detail .article-meta span {
    flex-basis: calc(50% - 5px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 480px) {
  .article-detail .article-image {
    height: 200px;
  }
  
  .article-detail .article-overlay {
    padding: 15px 10px;
  }
  
  .article-detail .article-title {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .article-detail .article-meta {
    font-size: 10px;
    gap: 8px;
  }
  
  .article-detail .article-meta span {
    flex-basis: 100%;
  }
}

.article-detail .article-content {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
}

.article-detail .article-content h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 30px 0 20px 0;
  font-size: 1.8rem;
}

.article-detail .article-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin: 25px 0 15px 0;
  font-size: 1.4rem;
}

.article-detail .article-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.article-detail .article-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid var(--accent-color);
  padding: 20px 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 0 8px 8px 0;
}

.article-detail .article-content ul, .article-detail .article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-detail .article-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Tags and Share */
.article-detail .article-footer {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 40px;
}

.article-detail .article-tags {
  margin-bottom: 25px;
}

.article-detail .article-tags h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
}
.article-detail .tag {
  display: inline-block;
  background: #f8f9fa;
  color: var(--default-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin: 5px 5px 5px 0;
  text-decoration: none;
  transition: 0.3s;
}

.article-detail .tag:hover {
  background: var(--accent-color);
  color: white;
}

.article-detail .article-share h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.article-detail .share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.article-detail .share-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
}

.article-detail .share-btn i {
  margin-right: 8px;
  font-size: 16px;
}

.article-detail .share-facebook {
  background: #3b5998;
  color: white;
}

.article-detail .share-twitter {
  background: #1da1f2;
  color: white;
}

.article-detail .share-linkedin {
  background: #0077b5;
  color: white;
}

.article-detail .share-whatsapp {
  background: #25d366;
  color: white;
}

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

/* Navigation between articles */
.article-detail .article-navigation {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 40px;
}

.article-detail .nav-article {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--default-color);
  transition: 0.3s;
  padding: 15px;
  border-radius: 8px;
}

.article-detail .nav-article:hover {
  background: #f8f9fa;
  color: var(--accent-color);
}

.article-detail .nav-article img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.article-detail .nav-article-content h6 {
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}

.article-detail .nav-article-content .nav-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  font-weight: 600;
}

/* Sidebar Styles (same as news page) */
.article-detail .sidebar {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 0;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

.article-detail .sidebar-section {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.article-detail .sidebar-section:last-child {
  border-bottom: none;
}

.article-detail .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.article-detail .sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.article-detail .recent-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.article-detail .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.article-detail .recent-post-img {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
}

.article-detail .recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.article-detail .recent-post-content h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.article-detail .recent-post-content h6 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: 0.3s;
}

.article-detail .recent-post-content h6 a:hover {
  color: var(--accent-color);
}

.article-detail .recent-post-date {
  font-size: 12px;
  color: #999;
}

/* Breadcrumb */
.article-detail .breadcrumb-section {
  background: var(--surface-color);
  padding: 20px 0;
  margin-bottom: 40px;
}

.article-detail .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.article-detail .breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.article-detail .breadcrumb-item.active {
  color: var(--default-color);
}

/* Back to News Button */
.article-detail .back-to-news {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 30px;
}

.article-detail .back-to-news i {
  margin-right: 8px;
}

.article-detail .back-to-news:hover {
  background: #2980b9;
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .article-detail {
      padding: 40px 0;
  }

  .article-detail .article-image {
      height: 250px;
  }

  .article-title {
      font-size: 1.8rem;
  }

  .article-detail .article-content, .article-detail .article-header, .article-detail .article-footer {
      padding: 25px;
      margin-bottom: 25px;
  }

  .article-detail .sidebar {
      margin-top: 40px;
      position: static;
  }

  .article-detail .share-buttons {
      justify-content: center;
  }

  .article-detail .article-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }
}







/*------------------------------------------------------
# Recherche Resultats
------------------------------------------------------*/
/* Hero Section */
.search-hero-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.search-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.search-hero-content {
  position: relative;
  z-index: 2;
}

.search-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.search-icon i {
  font-size: 2rem;
  color: white;
}

.search-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.result-count {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.search-results-page .search-summary {
  margin-top: 1rem;
  opacity: 0.8;
}

/* Search Container */
.search-results-page .search-container {
  background: white;
  padding: 2rem 0;
  position: relative;
  z-index: 10;
  margin-top: -2rem;
  border-radius:12px 12px 0 0;
}

.search-results-page .search-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin: 0 1rem;
  border: 1px solid #e9ecef;
}

.search-results-page .search-card .form-control,
.search-results-page .search-card .form-select {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-results-page .search-card .form-control:focus,
.search-results-page .search-card .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
  background: white;
}



/* Applied Filters */
.search-results-page .applied-filters-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-results-page .filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.filters-title {
  color: var(--default-color);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.filters-title i {
  color: var(--accent-color);
}

.btn-clear-filters {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-clear-filters:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

.filter-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-tag {
  background: white;
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.filter-label {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-value {
  color: var(--default-color);
  font-weight: 500;
}

.filter-remove {
  background: #e74c3c;
  color: white;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.7rem;
}

.filter-remove:hover {
  background: #c0392b;
  transform: scale(1.1);
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.entreprise-card-wrapper {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.entreprise-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.entreprise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
}

.entreprise-logo-container {
  display: flex;
  align-items: center;
}

.entreprise-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.entreprise-logo-placeholder {
  width: 60px;
  height: 60px;
  background: #ecf0f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.active {
  background: #27ae60;
  color: white;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.entreprise-info {
  margin-bottom: 1.5rem;
}

.entreprise-name {
  color: var(--default-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.entreprise-sigle {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.entreprise-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.detail-icon {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 0.125rem;
  width: 16px;
  text-align: center;
}

.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 500;
  line-height: 1.4;
}

.card-footer {
  padding: 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.entreprise-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-details {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.btn-details:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-website {
  border: 2px solid #6c757d;
  color: #6c757d;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.btn-website:hover {
  background: #6c757d;
  border-color: #6c757d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

/* Pagination */
.pagination-container {
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #dee2e6;
}

.pagination-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pagination-text {
  color: var(--default-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.pagination-nav {
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.page-item {
  list-style: none;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 45px;
  height: 45px;
}

.page-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.page-item.active .page-link {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.page-prev,
.page-next {
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-width: auto;
}

.page-item.disabled .page-link {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
  transform: none;
  box-shadow: none;
}

/* No Results */
.no-results-container {
  padding: 4rem 2rem;
  text-align: center;
}
.no-results-content {
  max-width: 500px;
  margin: 0 auto;
}

.no-results-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-results-icon i {
  font-size: 3rem;
  color: var(--default-color);
}

.no-results-title {
  color: var(--default-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.no-results-description {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.no-results-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.no-results-actions .btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.no-results-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-title {
    font-size: 2rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .filters-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .filter-tags-container {
    justify-content: flex-start;
  }
  
  .entreprise-actions {
    flex-direction: column;
  }
  
  .no-results-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .page-prev,
  .page-next {
    order: -1;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .search-hero-section {
    padding: 3rem 0;
  }
  
  .search-card {
    margin: 0 0.5rem;
    padding: 1.5rem;
  }
  
  .search-container {
    margin-top: -1rem;
  }
  
  .applied-filters-container {
    padding: 1rem;
  }
  
  .card-header,
  .card-body,
  .card-footer {
    padding: 1rem;
  }
}






.flux-bourse-sidebar-section {
  /* padding: 60px 0; */
}

.flux-bourse-sidebar {
  background-color: var(--surface-color);
  height: 431px;
  width: 430px;
  border-radius: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}


.header-flux-bourse {
  position: relative;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: 167px;
  height: 31px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}




/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients {
  padding: 80px 0;
  padding-top: 200px;
  background-color: #fff;
  height: 167px;
}


.clients {
  padding-top: 10px;
  padding-bottom: 10px;
}

.clients .clients-slider {
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-wrapper {
  min-height: 120px;
  padding-bottom: 20px;
}

.clients .swiper-slide {
  height: auto;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
  /*   opacity: 0.5;
  filter: grayscale(100); */
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}
/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}
.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}
.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Apropos Idu Section
--------------------------------------------------------------*/
/* Section Annuaire Advantages */
.annuaire-advantages {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.annuaire-advantages .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.annuaire-advantages .section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 20px;
  position: relative;
}

.annuaire-advantages .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--heading-color);
  border-radius: 2px;
}

.annuaire-advantages .section-subtitle {
  font-size: 1.3rem;
  color: var(--default-color);
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

.annuaire-advantages .advantage-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--heading-color);
}

.annuaire-advantages .advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.annuaire-advantages .advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.annuaire-advantages .advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 1.8rem;
}

.annuaire-advantages .advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.annuaire-advantages .advantage-text {
  color: var(--default-color);
  line-height: 1.7;
  font-size: 1rem;
}

.annuaire-advantages .feature-highlight {
  background: var(--accent-color);
  color: white;
  padding: 60px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.annuaire-advantages .feature-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
}

.annuaire-advantages .feature-text {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.annuaire-advantages .image-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 15px 35px rgba(0,0,0,0.15); */
  margin: 40px 0;
  /* background: white; */
  padding: 15px;
}


.annuaire-advantages .image-placeholder {
  width: 100%;
  height: 400px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.annuaire-advantages .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
  filter: brightness(1.05) contrast(1.1);
}

.annuaire-advantages .image-section:hover .image-placeholder img {
  transform: scale(1.02);
}

/* Overlay léger optionnel pour améliorer la lisibilité si nécessaire */
.annuaire-advantages .image-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 77, 138, 0.1) 0%,
      rgba(235, 97, 19, 0.1) 100%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.annuaire-advantages .image-section:hover .image-placeholder::after {
  opacity: 1;
}

/* Version alternative sans overlay du tout */
.annuaire-advantages .image-placeholder.no-overlay::after {
  display: none;
}

/* Badge décoratif optionnel dans le coin */
.annuaire-advantages .image-placeholder .image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .annuaire-advantages .image-placeholder {
    height: 300px;
  }

  .annuaire-advantages .image-section {
    margin: 30px 0;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .annuaire-advantages .image-placeholder {
    height: 250px;
  }

  .annuaire-advantages .image-section {
    padding: 8px;
  }

  .annuaire-advantages .image-placeholder .image-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

.annuaire-advantages .image-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.annuaire-advantages .image-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.annuaire-advantages .stats-row {
  background: white;
  border-radius: 15px;
  padding: 40px 20px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.annuaire-advantages .stat-item {
  text-align: center;
  padding: 20px;
}

.annuaire-advantages .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--heading-color);
  display: block;
}

.annuaire-advantages .stat-label {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 600;
  margin-top: 10px;
}

.annuaire-advantages .cta-section {
  text-align: center;
  margin-top: 60px;
}

.annuaire-advantages .cta-button {
  background: linear-gradient(135deg, var(--heading-color), #d55a0e);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(235, 97, 19, 0.3);
}

.annuaire-advantages .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(235, 97, 19, 0.4);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .annuaire-advantages .section-title {
    font-size: 2rem;
  }

  .annuaire-advantages .advantage-card {
    padding: 25px 20px;
  }

  .annuaire-advantages .feature-title {
    font-size: 2rem;
  }

  .annuaire-advantages .image-placeholder {
    height: 300px;
  }

  .annuaire-advantages .stat-number {
    font-size: 2.5rem;
  }
}



/*--------------------------------------------------------------
# Qu'est ce que Idu Section
--------------------------------------------------------------*/

/* Section IDU Explanation */
.idu-explanation {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.idu-explanation .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.idu-explanation .main-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 20px;
  position: relative;
}

.idu-explanation .main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 3px;
}

.idu-explanation .intro-section {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.idu-explanation .intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.idu-explanation .intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 30px;
}

.idu-explanation .intro-image {
  border-radius: 15px;
  overflow: hidden;
}

.idu-explanation .intro-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.idu-explanation .intro-image:hover img {
  transform: scale(1.05);
}

.idu-explanation .highlight-box {
  background: linear-gradient(135deg, var(--heading-color), #d55a0e);
  color: white;
  padding: 25px 30px;
  border-radius: 15px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.idu-explanation .highlight-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 2;
}

.idu-explanation .idu-features {
  color: white;
  border-radius: 20px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.idu-explanation .idu-features .container {
  position: relative;
  z-index: 2;
}

.idu-explanation .feature-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
}

.idu-explanation .large-image-section {
  text-align: center;
  margin: 50px 0;
}

.idu-explanation .large-image {
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}

.idu-explanation .large-image img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.idu-explanation .large-image:hover img {
  transform: scale(1.02);
}

.idu-explanation .info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.idu-explanation .info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid var(--heading-color);
}

.idu-explanation .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.idu-explanation .info-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
}
.idu-explanation .info-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.idu-explanation .info-card-text {
  color: var(--default-color);
  line-height: 1.6;
}
.idu-explanation .cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
}
.idu-explanation .cta-button {
  background: linear-gradient(135deg, var(--heading-color), #d55a0e);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(235, 97, 19, 0.3);
  border: none;
}

.idu-explanation .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(235, 97, 19, 0.4);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .idu-explanation .main-title {
    font-size: 2.5rem;
  }

  .idu-explanation .intro-section {
    padding: 30px 25px;
  }

  .idu-explanation .intro-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .idu-explanation .intro-image {
    margin-left: 0;
    margin-top: 25px;
  }

  .idu-explanation .intro-image img {
    height: 250px;
  }

  .idu-explanation .feature-title {
    font-size: 2.2rem;
  }

  .idu-explanation .large-image img {
    min-height: 100px;
  }

  .idu-explanation .info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .idu-explanation .main-title {
    font-size: 2rem;
  }

  .idu-explanation .intro-section {
    padding: 25px 20px;
  }

  .idu-explanation .feature-title {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Pourquoi demander son IDU Section
--------------------------------------------------------------*/


.pourquoi-idu {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.pourquoi-idu .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.pourquoi-idu .main-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 30px;
  position: relative;
}

.pourquoi-idu .main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 3px;
}

.pourquoi-idu .intro-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #003366 100%);
  color: white;
  border-radius: 25px;
  padding: 60px 50px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 77, 138, 0.2);
}

.pourquoi-idu .intro-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.pourquoi-idu .intro-section::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(235, 97, 19, 0.2);
  border-radius: 50%;
}

.pourquoi-idu .intro-content {
  position: relative;
  z-index: 2;
}

.pourquoi-idu .intro-text {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pourquoi-idu .performance-highlight {
  background: var(--heading-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(235, 97, 19, 0.3);
}

.pourquoi-idu .avantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}

.pourquoi-idu .avantage-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.pourquoi-idu .avantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pourquoi-idu .avantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.pourquoi-idu .avantage-content {
  display: flex;
  align-items: center;
  padding: 50px 40px;
  gap: 40px;
}

.pourquoi-idu .avantage-image {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.pourquoi-idu .avantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pourquoi-idu .avantage-item:hover .avantage-image img {
  transform: scale(1.05);
}

.pourquoi-idu .avantage-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
  opacity: 0.3;
}

.pourquoi-idu .avantage-text {
  flex: 1;
}

.pourquoi-idu .avantage-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 2rem;
}

.pourquoi-idu .avantage-item:nth-child(1) .avantage-icon {
  background: linear-gradient(135deg, var(--accent-color), #20c997);
}

.pourquoi-idu .avantage-item:nth-child(2) .avantage-icon {
  background: linear-gradient(135deg, var(--accent-color), #0056b3);
}

.pourquoi-idu .avantage-item:nth-child(3) .avantage-icon {
  background: linear-gradient(135deg, var(--accent-color), #bd2130);
}

.pourquoi-idu .avantage-item:nth-child(4) .avantage-icon {
  background: linear-gradient(135deg, var(--accent-color), #e0a800);
}

.pourquoi-idu .avantage-item:nth-child(5) .avantage-icon {
  background: linear-gradient(135deg, var(--accent-color), #5a2d91);
}

.pourquoi-idu .avantage-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pourquoi-idu .avantage-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

/* Version alternative pour les éléments pairs */
.pourquoi-idu .avantage-item:nth-child(even) .avantage-content {
  flex-direction: row-reverse;
}

.pourquoi-idu .cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 25px;
}

.pourquoi-idu .cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 30px;
}

.pourquoi-idu .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pourquoi-idu .cta-button {
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
}

.pourquoi-idu .cta-button.primary {
  background: linear-gradient(135deg, var(--heading-color), #d55a0e);
  color: white;
  box-shadow: 0 10px 30px rgba(235, 97, 19, 0.3);
}

.pourquoi-idu .cta-button.secondary {
  background: linear-gradient(135deg, var(--accent-color), #003366);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 77, 138, 0.3);
}

.pourquoi-idu .cta-button:hover {
  transform: translateY(-3px);
  color: white;
}

.pourquoi-idu .cta-button.primary:hover {
  box-shadow: 0 15px 40px rgba(235, 97, 19, 0.4);
}

.pourquoi-idu .cta-button.secondary:hover {
  box-shadow: 0 15px 40px rgba(0, 77, 138, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .pourquoi-idu .main-title {
    font-size: 2.5rem;
  }

  .pourquoi-idu .intro-section {
    padding: 40px 30px;
  }

  .pourquoi-idu .intro-text {
    font-size: 1.1rem;
  }

  .pourquoi-idu .avantage-content {
    flex-direction: column !important;
    padding: 30px 25px;
    gap: 25px;
    text-align: center;
  }

  .pourquoi-idu .avantage-image {
    flex: none;
    width: 100%;
    height: 200px;
  }

  .pourquoi-idu .avantage-title {
    font-size: 1.8rem;
  }

  .pourquoi-idu .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pourquoi-idu .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pourquoi-idu .main-title {
    font-size: 2rem;
  }

  .pourquoi-idu .intro-section {
    padding: 30px 20px;
  }

  .pourquoi-idu .avantage-content {
    padding: 25px 20px;
  }

  .pourquoi-idu .avantage-title {
    font-size: 1.5rem;
  }

  .pourquoi-idu .cta-title {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Comment obtenir son IDU Section
--------------------------------------------------------------*/

.comment-obtenir-idu {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comment-obtenir-idu .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.comment-obtenir-idu .main-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 30px;
  position: relative;
}

.comment-obtenir-idu .main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 3px;
}

.comment-obtenir-idu .intro-alert {
  background: linear-gradient(135deg, var(--heading-color), #d55a0e);
  color: white;
  border-radius: 20px;
  padding: 40px 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(235, 97, 19, 0.2);
}

.comment-obtenir-idu .intro-alert::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.comment-obtenir-idu .intro-alert .alert-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.comment-obtenir-idu .intro-alert .alert-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.comment-obtenir-idu .intro-alert .alert-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0;
}

.comment-obtenir-idu .proces-steps {
  margin: 80px 0;
}
.comment-obtenir-idu .step-card {
  background: white;
  border-radius: 25px;
  padding: 50px 40px;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.comment-obtenir-idu .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.comment-obtenir-idu .step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.comment-obtenir-idu .step-card.simple::before {
  background: linear-gradient(90deg, var(--success-green), #20c997);
}

.comment-obtenir-idu .step-card.rapide::before {
  background: linear-gradient(90deg, var(--accent-color), #0056b3);
}

.comment-obtenir-idu .step-card.gratuit::before {
  background: linear-gradient(90deg, var(--heading-color), #d55a0e);
}

.comment-obtenir-idu .step-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.comment-obtenir-idu .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-right: 25px;
  flex-shrink: 0;
}

.comment-obtenir-idu .step-card.simple .step-icon {
  background: linear-gradient(135deg, var(--accent-color), #20c997);
}

.comment-obtenir-idu .step-card.rapide .step-icon {
  background: linear-gradient(135deg, var(--accent-color), #0056b3);
}

.comment-obtenir-idu .step-card.gratuit .step-icon {
  background: linear-gradient(135deg, var(--heading-color), #d55a0e);
}

.comment-obtenir-idu .step-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
  margin: 0;
  text-transform: uppercase;
}

.comment-obtenir-idu .step-content {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 30px;
}

.comment-obtenir-idu .documents-list {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid var(--accent-color);
}

.comment-obtenir-idu .documents-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.comment-obtenir-idu .documents-title i {
  margin-right: 15px;
  color: var(--heading-color);
}

.comment-obtenir-idu .document-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.comment-obtenir-idu .document-item:last-child {
  border-bottom: none;
}

.comment-obtenir-idu .document-item:hover {
  background: rgba(0, 77, 138, 0.05);
  border-radius: 8px;
  padding-left: 10px;
}

.comment-obtenir-idu .document-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.comment-obtenir-idu .document-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.comment-obtenir-idu .website-highlight {
  background: linear-gradient(135deg, var(--accent-color), #003366);
  color: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.comment-obtenir-idu .website-highlight::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: rgba(235, 97, 19, 0.2);
  border-radius: 50%;
}

.comment-obtenir-idu .website-url {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--heading-color);
  margin: 20px 0;
  position: relative;
  z-index: 2;
}

.comment-obtenir-idu .cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 25px;
}

.comment-obtenir-idu .cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 30px;
}

.comment-obtenir-idu .cta-button {
  background: linear-gradient(135deg, var(--heading-color), #d55a0e);
  color: white;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(235, 97, 19, 0.3);
  border: none;
}

.comment-obtenir-idu .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(235, 97, 19, 0.4);
  color: white;
}

.comment-obtenir-idu .timeline-connector {
  position: relative;
  margin: 40px 0;
}

.comment-obtenir-idu .timeline-connector::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 60px;
  background: linear-gradient(180deg, var(--accent-color), var(--heading-color));
  border-radius: 3px;
}

.comment-obtenir-idu .timeline-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: var(--heading-color);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .comment-obtenir-idu .main-title {
    font-size: 2.5rem;
  }

  .comment-obtenir-idu .intro-alert {
    padding: 30px 25px;
  }

  .comment-obtenir-idu .step-card {
    padding: 30px 25px;
  }

  .comment-obtenir-idu .step-header {
    flex-direction: column;
    text-align: center;
  }

  .comment-obtenir-idu .step-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .comment-obtenir-idu .step-title {
    font-size: 2rem;
  }

  .comment-obtenir-idu .documents-list {
    padding: 20px;
  }

  .comment-obtenir-idu .website-url {
    font-size: 1.8rem;
  }

  .comment-obtenir-idu .cta-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .comment-obtenir-idu .step-title {
    font-size: 1.8rem;
  }

  .comment-obtenir-idu .website-url {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Course Details Section
--------------------------------------------------------------*/
.course-details .course-header {
  margin-bottom: 40px;
}

.course-details .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-details .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.course-details .course-header .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .course-details .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.course-details .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-details .course-header .instructor .instructor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.course-details .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.course-details .course-header .instructor .instructor-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-header .course-stats {
  display: flex;
  gap: 25px;
}

@media (max-width: 576px) {
  .course-details .course-header .course-stats {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.course-details .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-details .course-content {
  margin-bottom: 50px;
}

.course-details .course-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .course-details .course-content h2 {
    font-size: 26px;
  }
}

.course-details .course-content .course-description {
  margin-bottom: 40px;
}

.course-details .course-content .course-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-content .what-you-learn h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.course-details .course-content .what-you-learn .learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-details .course-content .what-you-learn .learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn .learn-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.course-details .course-curriculum {
  margin-bottom: 50px;
}

.course-details .course-curriculum h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section {
  margin-bottom: 25px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
}

.course-details .course-curriculum .curriculum-section .section-header {
  background-color: var(--surface-color);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .course-details .course-curriculum .curriculum-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.course-details .course-curriculum .curriculum-section .section-header h4 {
  font-size: 18px;
  margin: 0;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section .section-header .lessons-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-curriculum .curriculum-section .lessons {
  padding: 0;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: background-color 0.3s;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:last-child {
  border-bottom: none;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info i {
  color: var(--accent-color);
  font-size: 18px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info span {
  font-size: 15px;
  color: var(--default-color);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-duration {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.course-details .course-sidebar {
  position: sticky;
  top: 100px;
}

.course-details .course-sidebar .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-sidebar .pricing-card .price {
  margin-bottom: 10px;
}

.course-details .course-sidebar .pricing-card .price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  vertical-align: top;
}

.course-details .course-sidebar .pricing-card .price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.course-details .course-sidebar .pricing-card .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.course-details .course-sidebar .pricing-card .original-price {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-bottom: 25px;
}

.course-details .course-sidebar .pricing-card .course-features {
  margin-bottom: 30px;
}

.course-details .course-sidebar .pricing-card .course-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.course-details .course-sidebar .pricing-card .course-features .feature i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.course-details .course-sidebar .pricing-card .course-features .feature span {
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-sidebar .pricing-card .btn-enroll {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-enroll:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.course-details .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-preview:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .course-sidebar .course-info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.course-details .course-sidebar .course-info-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.course-details .course-sidebar .course-info-card .info-item .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.course-details .course-sidebar .course-info-card .info-item .value {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.course-details .course-sidebar .course-tags {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
}

.course-details .course-sidebar .course-tags h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.course-details .course-sidebar .course-tags .tags-list .tag {
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
}

.course-details .course-sidebar .course-tags .tags-list .tag:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .course-details .course-sidebar {
    position: static;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}
.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}
.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}


/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/

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


.besoin-aide-title {
  padding: 50px 0;
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.alt-services .service-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.alt-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.alt-services .service-card:hover::before {
  transform: scaleX(1);
}

.alt-services .service-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.alt-services .service-card.featured::before {
  transform: scaleX(1);
}

.alt-services .service-card.featured .icon-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
}

.alt-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.alt-services .service-card .card-header {
  padding: 25px 25px 15px;
  text-align: center;
}

.alt-services .service-card .card-header .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 32px;
  transition: all 0.3s ease;
}

.alt-services .service-card .card-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.alt-services .service-card .card-body {
  padding: 0 25px 15px;
}

.alt-services .service-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  text-align: center;
}

.alt-services .service-card .card-body .feature-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.alt-services .service-card .card-body .feature-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 80%), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alt-services .service-card .card-body .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.alt-services .service-card:hover .feature-image::before {
  opacity: 1;
}

.alt-services .service-card:hover .feature-image img {
  transform: scale(1.1);
}

.alt-services .service-card .card-footer {
  padding: 15px 25px 25px;
}

.alt-services .service-card .card-footer .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.alt-services .service-card .card-footer .btn-explore i {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.alt-services .service-card .card-footer .btn-explore:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.alt-services .service-card .card-footer .btn-explore:hover i {
  transform: translate(3px, -3px);
}

.alt-services .service-card.featured .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.alt-services .service-card.featured .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  border-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

@media (max-width: 768px) {
  .alt-services .service-card .card-header {
    padding: 20px 20px 10px;
  }

  .alt-services .service-card .card-header .icon-box {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .alt-services .service-card .card-header h4 {
    font-size: 16px;
  }

  .alt-services .service-card .card-body {
    padding: 0 20px 10px;
  }

  .alt-services .service-card .card-body .feature-image {
    height: 140px;
  }

  .alt-services .service-card .card-footer {
    padding: 10px 20px 20px;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .section-title p {
  color: var(--accent-color);
}


.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}





/*--------------------------------------------------------------
# Secteur Activite Section
--------------------------------------------------------------*/

.search-container-section {
  padding: 60px 0 0 0;
}

.zone-pub-activite {
  padding: 0 !important;
}



.zone-pub-activite-container {
  border-radius: 25px;
  padding: 20px;
  margin: 0 auto;
  margin-top: 20px;
}


.zone-pub-side {
  width: 415px;
  height: 1082px;
  background-color: #f0f0f0;
  border-radius: 25px;
  padding: 20px;
}



.profile-card {
  background: rgba(0, 126, 226, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  max-height: 360px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.profile-card .company-avatar {
  width: 150px;
  height: 150px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 30px;
  flex-shrink: 0;
}

.profile-card .company-name {
  font-size: 50px;
  font-weight: 900;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-card .verified-badge {
  /* background-color: #007bff; */
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.profile-card .id-badge {
  background-color: #EB6113;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  margin-left: auto;
  margin-top: 45px;
}

.profile-card .company-category {
  color: #000;
  font-size: 19px;
  font-weight: lighter;
}

.profile-card .creation-date {
  color: #EB6113;
  font-size: 16px;
  margin: 5px 0;
  font-weight: lighter;
}

.profile-card .section-title-card {
  font-size: 19px;
  font-weight: bold;
  color: #000;
  margin: 0 !important;
}

.profile-card .description-text {
  color: #000;
  font-size: 0.95rem;
  line-height: 1;
  /* font-weight: lighter;
  margin-bottom: 20px; */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 4; /* Standard property for line clamping */
  word-wrap: break-word;
  max-height: 6.4em; 
  /* width: 337px; */
  height: 72px;
}

.profile-card .contact-info {
  margin-bottom: -16px;
}

.profile-card .phone-number {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}

.profile-card .phone-number span {
  font-size: 15px;
  font-weight: lighter;
  color: #000;
  text-decoration: none;
}

.profile-card .phone-number:hover {
  color: #EB6113;
}

.profile-card .btn-file {
  background-color: #004D8A;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;

}
.profile-card .btn-file:hover {
  background-color: #004D8A;
  color: white;
  transform: translateY(-2px);
}

.profile-card .btn-itinerary {
  background-color: #EB6113;
  color: white;
  padding: 3px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.profile-card .btn-itinerary:hover {
  background-color: #e8590c;
  color: white;
  transform: translateY(-2px);
}

.profile-card .phone-icon {
  color: #fd7e14;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .profile-card .company-name {
    font-size: 2rem;
  }

  .profile-card {
    padding: 20px;
  }

  .profile-card .company-avatar {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }

  .profile-card .header-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .profile-card .id-badge {
    margin-left: 0;
    margin-top: 15px;
  }
}


/* Tablettes et écrans moyens (768px - 991px) */
@media (max-width: 991px) {
  .secteur-activite-section .zone-pub-side {
    width: 100%;
    height: auto;
    min-height: 300px;
    margin-bottom: 30px;
  }

  .secteur-activite-section .profile-card {
    max-height: none;
  }
}

/* Tablettes (768px et moins) */
@media (max-width: 768px) {
  .secteur-activite-section .profile-card {
    padding: 20px;
    margin-bottom: 30px;
  }

  .secteur-activite-section .profile-card .company-name {
    font-size: 2rem;
  }

  .secteur-activite-section .profile-card .company-avatar {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }

  .secteur-activite-section .profile-card .header-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .secteur-activite-section .profile-card .id-badge {
    margin-left: 0;
    margin-top: 15px;
    font-size: 15px;
    padding: 6px 16px;
  }

  .secteur-activite-section .profile-card .company-category {
    font-size: 20px;
  }

  .secteur-activite-section .profile-card .section-title-card {
    font-size: 24px;
  }

  .secteur-activite-section .profile-card .description-text {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 1.4;
  }

  .secteur-activite-section .profile-card .btn-file {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 10px;
  }

  .secteur-activite-section .profile-card .btn-itinerary {
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 15px;
  }

  .secteur-activite-section .profile-card .phone-number {
    font-size: 14px;
  }
}

/* Mobiles (576px et moins) */
@media (max-width: 576px) {
  .secteur-activite-section .profile-card {
    padding: 15px;
    margin-bottom: 25px;
  }

  .secteur-activite-section .profile-card .company-name {
    font-size: 1.8rem;
  }

  .secteur-activite-section .profile-card .company-avatar {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }

  .secteur-activite-section .profile-card .company-category {
    font-size: 18px;
  }

  .secteur-activite-section .profile-card .creation-date {
    font-size: 14px;
  }

  .secteur-activite-section .profile-card .section-title-card {
    font-size: 20px;
  }

  .secteur-activite-section .profile-card .description-text {
    font-size: 14px;
  }

  .secteur-activite-section .profile-card .id-badge {
    font-size: 13px;
    padding: 5px 12px;
  }

  .secteur-activite-section .profile-card .btn-file {
    padding: 8px 16px;
    font-size: 13px;
    margin-top: 10px;
  }

  .secteur-activite-section .profile-card .btn-itinerary {
    padding: 6px 12px;
    font-size: 13px;
  }

  .secteur-activite-section .profile-card .phone-number {
    font-size: 13px;
  }

  .secteur-activite-section .profile-card .contact-info .row {
    margin-bottom: 15px;
  }
}

/* Très petits mobiles (480px et moins) */
@media (max-width: 480px) {
  .secteur-activite-section .profile-card {
    padding: 12px;
  }

  .secteur-activite-section .profile-card .company-name {
    font-size: 1.6rem;
  }

  .secteur-activite-section .profile-card .company-avatar {
    width: 60px;
    height: 60px;
    margin-right: 12px;
  }

  .secteur-activite-section .profile-card .company-category {
    font-size: 16px;
  }

  .secteur-activite-section .profile-card .section-title-card {
    font-size: 18px;
  }

  .secteur-activite-section .profile-card .description-text {
    font-size: 13px;
  }

  .secteur-activite-section .profile-card .id-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
}

/* Orientation paysage sur mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .secteur-activite-section .profile-card .header-flex {
    flex-direction: row;
    align-items: center !important;
  }

  .secteur-activite-section .profile-card .id-badge {
    margin-left: auto;
    margin-top: 0;
  }
}


/*--------------------------------------------------------------
# Details Secteur Activite Section
--------------------------------------------------------------*/
.details-secteur-activite-section .company-card {
  background: rgba(0, 126, 226, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.details-secteur-activite-section .company-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 30px;
}
.details-secteur-activite-section .company-logo {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.details-secteur-activite-section .company-info {
  flex: 1;
}

.details-secteur-activite-section .company-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.details-secteur-activite-section .verified-icon {
  color: #007bff;
  font-size: 1.5rem;
}
.details-secteur-activite-section .company-description {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
  margin: 5px 0;
  line-height: 1.3;
}

.details-secteur-activite-section .company-category {
  font-size: 1.5rem;
  color: #000;
  margin: 10px 0 5px 0;
}

.details-secteur-activite-section .creation-date {
  color: #EB6113;
  font-size: 1.1rem;
  margin: 0;
}
.details-secteur-activite-section .idu-badge {
  background: linear-gradient(135deg, #EB6113, #d55a0e);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 20px;
}

.details-secteur-activite-section .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin: 30px 0 20px 0;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.details-secteur-activite-section .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.details-secteur-activite-section .info-item {
  margin-bottom: 15px;
}

.details-secteur-activite-section .info-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.details-secteur-activite-section .info-value {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
}

.contact-section {
  margin: 30px 0;
}

.details-secteur-activite-section .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.details-secteur-activite-section .contact-item .phone-number {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}

.details-secteur-activite-section .contact-item .phone-number span {
  font-size: 15px;
  font-weight: lighter;
  color: #000;
  text-decoration: none;
}

.details-secteur-activite-section.contact-icon {
  width: 20px;
  margin-right: 15px;
  color: #EB6113;
}

.details-secteur-activite-section .contact-value {
  color: #000;
  font-weight: 600;
}

.details-secteur-activite-section .contact-value.phone {
  color: #EB6113;
  text-decoration: none;
}

.details-secteur-activite-section .contact-value.email {
  color: #004D8A;
  text-decoration: none;
  font-weight: 400;
}

.details-secteur-activite-section .contact-value.website {
  color: #EB6113;
  text-decoration: none;
  font-weight: bold;
}

.details-secteur-activite-section .location-info {
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.details-secteur-activite-section .location-title {
  font-size: 15px;
  color: #000;
  margin-bottom: 8px;
  font-weight: bold;
  text-transform: uppercase;
}

.details-secteur-activite-section .location-text {
  color: #000;
  font-weight: lighter;
  line-height: 1.4;
  font-size: 20px;
}

.details-secteur-activite-section .action-buttons {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.details-secteur-activite-section .btn-action {
  padding: 0px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.details-secteur-activite-section .btn-email {
  background-color: #004D8A;
  color: white;
}

.details-secteur-activite-section .btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.details-secteur-activite-section .btn-itinerary {
  background-color: #EB6113;
  color: white;
}

.details-secteur-activite-section .btn-filiales {
  background-color: #004d8a;
  color: white;
  font-size: 0.9rem;
  padding: 10px 20px;
}

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

.details-secteur-activite-section .social-follow {
  margin-top: 20px;
  text-align: right;
}

.details-secteur-activite-section .social-follow-text {
  font-size: 0.9rem;
  color: #EB6113;
  margin-bottom: 10px;
  font-weight: 600;
}

.details-secteur-activite-section .social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.details-secteur-activite-section .social-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.details-secteur-activite-section .social-facebook {
  background-color: #1877f2;
}

.details-secteur-activite-section .social-twitter {
  background-color: #000;
}

.details-secteur-activite-section .social-youtube {
  background-color: #ff0000;
}

.details-secteur-activite-section .social-icon:hover {
  transform: scale(1.1);
  color: white;
}

.details-secteur-activite-section .description-section {
  margin-top: 30px;
}

.details-secteur-activite-section .description-text {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .details-secteur-activite-section .company-card {
    padding: 20px;
  }

  .details-secteur-activite-section .company-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .details-secteur-activite-section .company-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .details-secteur-activite-section .company-name {
    font-size: 2rem;
    justify-content: center;
  }

  .details-secteur-activite-section .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .details-secteur-activite-section .action-buttons {
    justify-content: center;
  }

  .details-secteur-activite-section .social-follow {
    text-align: center;
  }

  .details-secteur-activite-section .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .details-secteur-activite-section .company-name {
    font-size: 1.5rem;
  }

  .details-secteur-activite-section .company-logo {
    width: 120px;
    height: 120px;
  }

  .details-secteur-activite-section .action-buttons {
    flex-direction: column;
  }
}

@media (max-width: 1199px) {
  .details-secteur-activite-section .company-card {
    max-width: 100%;
    padding: 35px;
  }

  .details-secteur-activite-section .company-logo {
    width: 180px;
    height: 180px;
  }

  .details-secteur-activite-section .company-name {
    font-size: 2.2rem;
  }
}

/* Tablettes (768px - 991px) */
@media (max-width: 991px) {
  .details-secteur-activite-section .zone-pub-side {
    width: 100%;
    height: auto;
    min-height: 250px;
    margin-bottom: 30px;
    order: 2;
  }

  .details-secteur-activite-section .col-lg-8 {
    order: 1;
  }

  .details-secteur-activite-section .company-card {
    padding: 30px;
  }

  .details-secteur-activite-section .company-header {
    gap: 25px;
  }

  .details-secteur-activite-section .company-logo {
    width: 160px;
    height: 160px;
  }

  .details-secteur-activite-section .company-name {
    font-size: 2rem;
  }

  .details-secteur-activite-section .info-grid {
    gap: 25px;
  }

  .details-secteur-activite-section .action-buttons {
    gap: 12px;
  }

  .details-secteur-activite-section .btn-action {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Tablettes portrait et grands mobiles (768px et moins) */
@media (max-width: 768px) {
  .details-secteur-activite-section .company-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .details-secteur-activite-section .company-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    align-items: center;
  }

  .details-secteur-activite-section .company-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .details-secteur-activite-section .company-info {
    text-align: center;
    width: 100%;
  }

  .details-secteur-activite-section .company-name {
    font-size: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .details-secteur-activite-section .company-description {
    font-size: 1rem;
  }

  .details-secteur-activite-section .company-category {
    font-size: 1.3rem;
  }

  .details-secteur-activite-section .creation-date {
    font-size: 1rem;
  }

  .details-secteur-activite-section .idu-badge {
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 15px;
  }

  .details-secteur-activite-section .section-title {
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
  }

  .details-secteur-activite-section .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .details-secteur-activite-section .info-item {
    margin-bottom: 12px;
  }

  .details-secteur-activite-section .info-label {
    font-size: 0.85rem;
  }

  .details-secteur-activite-section .info-value {
    font-size: 0.95rem;
  }

  .details-secteur-activite-section .contact-item {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .details-secteur-activite-section .contact-item .phone-number {
    font-size: 14px;
  }

  .details-secteur-activite-section .contact-item .phone-number span {
    font-size: 14px;
  }

  .details-secteur-activite-section .location-info {
    padding: 15px;
    margin: 15px 0;
  }

  .details-secteur-activite-section .location-title {
    font-size: 14px;
  }

  .details-secteur-activite-section .location-text {
    font-size: 16px;
  }

  .details-secteur-activite-section .action-buttons {
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
  }

  .details-secteur-activite-section .btn-action {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .details-secteur-activite-section .btn-filiales {
    font-size: 0.8rem;
    padding: 8px 15px;
    text-align: center;
  }

  .details-secteur-activite-section .social-follow {
    text-align: center;
    margin-top: 15px;
  }

  .details-secteur-activite-section .social-icons {
    justify-content: center;
  }

  .details-secteur-activite-section .social-icon {
    width: 32px;
    height: 32px;
  }

  .details-secteur-activite-section .description-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Réorganisation de la section contact pour mobile */
  .details-secteur-activite-section .contact-item .row {
    align-items: center;
  }

  .details-secteur-activite-section .contact-item .col-lg-2 {
    text-align: center;
    margin-bottom: 5px;
  }

  .details-secteur-activite-section .location-info .row {
    align-items: flex-start;
  }

  .details-secteur-activite-section .location-info .col-lg-2 {
    text-align: center;
    margin-bottom: 10px;
  }
}
/* Mobiles (576px et moins) */
@media (max-width: 576px) {
  .details-secteur-activite-section .company-card {
    padding: 15px;
    border-radius: 15px;
  }

  .details-secteur-activite-section .company-header {
    gap: 15px;
  }

  .details-secteur-activite-section .company-logo {
    width: 120px;
    height: 120px;
  }

  .details-secteur-activite-section .company-name {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .details-secteur-activite-section .verified-badge img {
    width: 25px;
    height: 25px;
  }

  .details-secteur-activite-section .company-description {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .details-secteur-activite-section .company-category {
    font-size: 1.1rem;
  }

  .details-secteur-activite-section .creation-date {
    font-size: 0.9rem;
  }

  .details-secteur-activite-section .idu-badge {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .details-secteur-activite-section .section-title {
    font-size: 1.3rem;
    margin: 20px 0 12px 0;
  }

  .details-secteur-activite-section .info-grid {
    gap: 15px;
  }

  .details-secteur-activite-section .info-item {
    margin-bottom: 10px;
  }

  .details-secteur-activite-section .info-label {
    font-size: 0.8rem;
  }

  .details-secteur-activite-section .info-value {
    font-size: 0.9rem;
  }

  .details-secteur-activite-section .contact-item {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .details-secteur-activite-section .contact-item .phone-number {
    font-size: 13px;
  }

  .details-secteur-activite-section .contact-item .phone-number span {
    font-size: 13px;
  }

  .details-secteur-activite-section .location-info {
    padding: 12px;
  }

  .details-secteur-activite-section .location-title {
    font-size: 13px;
  }

  .details-secteur-activite-section .location-text {
    font-size: 14px;
  }

  .details-secteur-activite-section .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
  }

  .details-secteur-activite-section .btn-action {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .details-secteur-activite-section .btn-filiales {
    font-size: 0.8rem;
    padding: 10px 15px;
    width: 100%;
    max-width: 300px;
  }

  .details-secteur-activite-section .social-icon {
    width: 30px;
    height: 30px;
  }

  .details-secteur-activite-section .description-text {
    font-size: 0.9rem;
  }

  /* Ajustements spécifiques pour les images dans les contacts */
  .details-secteur-activite-section .contact-item img {
    width: 30px !important;
    height: 30px !important;
  }

  .details-secteur-activite-section .location-info img {
    width: 35px !important;
    height: 35px !important;
  }

  .details-secteur-activite-section .btn-action img {
    width: 20px !important;
    height: 20px !important;
  }
}

/* Très petits mobiles (480px et moins) */
@media (max-width: 480px) {
  .details-secteur-activite-section .company-card {
    padding: 12px;
    margin: 10px;
  }

  .details-secteur-activite-section .company-logo {
    width: 100px;
    height: 100px;
  }

  .details-secteur-activite-section .company-name {
    font-size: 1.3rem;
  }

  .details-secteur-activite-section .company-description {
    font-size: 0.85rem;
  }

  .details-secteur-activite-section .idu-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .details-secteur-activite-section .section-title {
    font-size: 1.2rem;
    margin: 20px 0 12px 0;
  }

  .details-secteur-activite-section .btn-action {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .details-secteur-activite-section .btn-filiales {
    font-size: 0.75rem;
  }

  .details-secteur-activite-section .social-icon {
    width: 28px;
    height: 28px;
  }
}

/* Orientation paysage sur mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .details-secteur-activite-section .company-header {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .details-secteur-activite-section .company-info {
    text-align: left;
  }

  .details-secteur-activite-section .company-name {
    justify-content: flex-start;
  }

  .details-secteur-activite-section .company-logo {
    margin: 0;
  }

  .details-secteur-activite-section .action-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .details-secteur-activite-section .btn-action {
    width: auto;
  }
}

/* Ajustements pour la zone publicitaire */
@media (max-width: 991px) {
  .details-secteur-activite-section .zone-pub-side {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .details-secteur-activite-section .zone-pub-side {
    height: 150px;
    margin-bottom: 20px;
  }
}

/* Amélioration de l'accessibilité et UX */
@media (max-width: 768px) {

  .details-secteur-activite-section .btn-action:focus,
  .details-secteur-activite-section .btn-action:hover {
    outline: 2px solid #007bff;
    outline-offset: 2px;
  }

  .details-secteur-activite-section .contact-value:focus,
  .details-secteur-activite-section .contact-value:hover {
    text-decoration: underline;
  }
}

/* Animation smooth pour les transitions */
@media (max-width: 768px) {

  .details-secteur-activite-section .company-card,
  .details-secteur-activite-section .btn-action,
  .details-secteur-activite-section .contact-item {
    transition: all 0.3s ease;
  }
}
.details-secteur-activite-section .map-container {
  width: 415px;
  height: 453px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.details-secteur-activite-section .map-container iframe {
  width: 100%;
  height: 453px;
  border: none;
}

/********
*** Prestations container 1 
*******/
.prestations-container {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.prestations-section {
  flex: 2;
}
.horaires-section {
  flex: 1;
  min-width: 300px;
}


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

.prestations-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prestations-column li {
  font-size: 18x;
  color: #000;
  font-weight: lighter;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.prestations-column li::before {
  content: '•';
  color: #666;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.horaires-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.horaires-table tr {
  border-bottom: 1px dotted #ccc;
}

.horaires-table tr:last-child {
  border-bottom: none;
}

.horaires-table td {
  padding: 12px 0;
  font-size: 1rem;
  vertical-align: middle;
}

.jour {
  font-weight: bold;
  color: #000;
  width: 40%;
}

.dots {
  text-align: center;
  color: #ccc;
  width: 20%;
  font-weight: normal;
}

.horaire {
  text-align: right;
  color: #333;
  font-weight: 500;
  width: 40%;
}

.ferme {
  color: #666;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .horaires-section {
    min-width: unset;
    width: 100%;
  }

  .prestations-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .prestations-container {
    padding: 25px;
  }


  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-wrapper {
    gap: 30px;
  }

  .prestations-column li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .horaires-table td {
    padding: 10px 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .prestations-container {
    padding: 20px;
    margin: 10px;
  }

  .prestations-column li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .horaires-table td {
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .jour {
    width: 35%;
  }

  .dots {
    width: 25%;
  }

  .horaire {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .prestations-container {
    padding: 15px;
  }

  .prestations-column li {
    font-size: 0.85rem;
  }

  .horaires-table td {
    font-size: 0.85rem;
  }
}


/***********
****** Prestations Container 2 
************/
.prestations-container2 {
  background: rgba(0, 126, 226, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}



/* Responsive Design */
@media (max-width: 992px) {
  .section-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .prestations-container {
    padding: 25px;
  }

}

@media (max-width: 576px) {
  .prestations-container2 {
    padding: 20px;
    margin: 10px;
  }


}

@media (max-width: 480px) {
  .prestations-container2 {
    padding: 15px;
  }


}

/* Animation hover pour les prestations */
.prestations-column li {
  transition: all 0.3s ease;
  cursor: default;
}

.prestations-column li:hover {
  color: #004d8a;
  padding-left: 20px;
}

.prestations-column li:hover::before {
  color: #eb6113;
}

/* Style amélioré pour les horaires */
.horaires-table tr:hover {
  background-color: rgba(0, 77, 138, 0.05);
}

.horaires-table tr:hover .jour {
  color: #004d8a;
}

.horaires-table tr:hover .horaire {
  color: #eb6113;
}

/*--------------------------------------------------------------
# Investir en Côte d'Ivoire Section
--------------------------------------------------------------*/

.investir-ci-page {
  background-color: var(--surface-color);
}

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

.investir-ci-section .first-bloc {
  padding: 10px;
  border-radius: 10px;
}

.investir-ci-section .first-bloc {
  /*  background-color: var(--surface-color); */
  padding: 10px;
  border-radius: 10px;
}

.investir-ci-section .first-bloc h4 {
  font-size: 29px;
  font-weight: lighter;
  color: var(--accent-color);
}

.investir-ci-section .first-bloc h3 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 5px;
}

.investir-ci-section .logo-res {
  display: flex;
  justify-content: end;
  align-items: end;
  margin-bottom: 10px;
}


.investir-ci-section .rs-fb {
  color: #fff;
  font-size: 12px;
  background-color: #3b5998;
  padding: 5px;
  border-radius: 20px;
  margin-right: 5px;
}

.investir-ci-section .rs-x {
  color: #fff;
  font-size: 12px;
  background-color: #000;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  margin-right: 5px;
}

.investir-ci-section .rs-lkd {
  color: #fff;
  font-size: 12px;
  background-color: #0e76a8;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  margin-right: 5px;
}

.investir__v2 {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
}

.investir__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.investir__v2 .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.investir__v2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.investir__v2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.investir__v2 .section-title p {
  color: var(--accent-color);
}



.investir__v2 .faq-container .faq-content p span {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
}

.investir__v2 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.investir__v2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.investir__v2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.investir__v2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.investir__v2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.investir__v2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.investir__v2 .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.investir__v2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.investir__v2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.investir__v2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Reformes Section
--------------------------------------------------------------*/

.reforms-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #004D8A;
}

.subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.doing-business-info {
  max-width: 800px;
  margin: 0 auto;
}

.reform-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  border-radius: 10px;
  height: 100%;
}

.reform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reform-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #004D8A;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.reforms-grid {
  margin-top: 3rem;
}

.reforms-header {
  margin-bottom: 2rem;
}


/*--------------------------------------------------------------
# Reglementations Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.reglements-services .reglements-service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}
.reglements-services .reglements-service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.reglements-services .reglements-service-item .icon {
  margin-bottom: 10px;
  text-align: center;
}


.reglements-services .reglements-service-item img {
  width: 100px;
  height: 100px;
  transition: ease-in-out 0.3s;
}

.reglements-services .reglements-service-item .icon i {
  color: var(--accent-color);
  font-size: 100px;
  transition: ease-in-out 0.3s;
}

.reglements-services .reglements-service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.reglements-services .reglements-service-item h3 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;

}

.reglements-services .reglements-service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.reglements-services .reglements-service-item:hover h4 a,
.reglements-services .reglements-service-item:hover .icon i,
.reglements-services .reglements-service-item:hover p {
  color: var(--contrast-color);
}

.reglements-services .reglements-service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}



/*--------------------------------------------------------------
# Ou investir Section
--------------------------------------------------------------*/

.ou-investir .intro-panel {
  background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 96%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.ou-investir .intro-panel .preview-visual {
  position: relative;
}

.ou-investir .intro-panel .preview-visual img {
  display: block;
}

.ou-investir .intro-panel .preview-visual::after {
  content: "";
  position: absolute;
  inset: -10px -8px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}

.ou-investir .intro-panel .intro-content .intro-title {
  font-weight: 800;
  margin-bottom: 8px;
}

.ou-investir .intro-panel .intro-content .intro-text {
  color: var(--muted);
  margin: 0;
}

.ou-investir .intro-panel .intro-content .intro-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 8px 0;
}

.ou-investir .intro-panel .intro-content .intro-highlights li i {
  color: var(--accent-color);
  font-size: 18px;
}

.ou-investir .intro-panel .intro-content .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s;
}

.ou-investir .intro-panel .intro-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.ou-investir .intro-panel .intro-content .link-btn {
  color: var(--accent-color);
  border-radius: 999px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  transition: 0.3s;
}

.ou-investir .intro-panel .intro-content .link-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Climats des affaires Section
--------------------------------------------------------------*/

.economic-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.economic-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004D8A;
  text-transform: uppercase;
}

.economic-stats {
  max-width: 1080px;
  margin: 0 auto;
}

.table th {
  background-color: #004D8A;
  color: white;
  font-weight: 600;
  text-align: center;
  border: none;
}

.table td {
  text-align: center;
  vertical-align: middle;
}

.agency-icon {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
  font-weight: bold;
}

.governance-card {
  border-left: 4px solid #004D8A;
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-weight: 700;
}

@media (max-width: 768px) {
  .economic-title {
    font-size: 1.8rem;
  }

  .table {
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
}

.contact .info-box {
  color: #000;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: #000;
  font-weight: bold;
  font-size: 58px;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: #000;
}
@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}


.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, #000, transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: #000;
}
.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, #000, transparent 70%);
}

.contact .info-item .content .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: start;
  align-items: center;
}


.contact .info-item .content .social-links i {
  font-size: 3rem;
  color: var(--heading-color);
}
.contact .info-item .content h4 {
  color: #000;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #000;
}

.contact .contact-form .form-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ccc;
}



@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  /* display: inline-flex; */
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}



.presentation-ci-page {
  background-color: var(--surface-color);
}


.presentation-ci-page .first-bloc {
  /*  background-color: var(--surface-color); */
  padding: 10px;
  border-radius: 10px;
}

.presentation-ci-page .first-bloc h4 {
  font-size: 29px;
  font-weight: lighter;
  color: var(--accent-color);
}

.presentation-ci-page .first-bloc h3 {
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 5px;
}

.presentation-ci-page .second-bloc {
  /*   background-color: var(--surface-color); */
  padding: 10px;
  border-radius: 10px;
  text-align: start;
}

.presentation-ci-page .second-bloc p {
  font-size: 14px;
  font-weight: lighter;
  text-align: start;
  line-height: 1.5;
}


.presentation-ci-page .second-bloc span {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: start;
}


.presentation-ci-page .logo-res {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 10px;
}


.presentation-ci-page .rs-fb {
  color: #fff;
  font-size: 12px;
  background-color: #3b5998;
  padding: 5px;
  border-radius: 20px;
  margin-right: 5px;
}

.presentation-ci-page .rs-x {
  color: #fff;
  font-size: 12px;
  background-color: #000;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  margin-right: 5px;
}

.presentation-ci-page .rs-lkd {
  color: #fff;
  font-size: 12px;
  background-color: #0e76a8;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Politique de confidentialité Section
--------------------------------------------------------------*/

.privacy-container {
  max-width: 1176px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.privacy-container .privacy-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #2c5aa0;
}

.privacy-container .privacy-title {
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 10px;
  font-weight: 700;
}

.privacy-container .privacy-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 300;
}

.privacy-container .privacy-section {
  margin-bottom: 35px;
  background: #f8f9fa;
  border-left: 4px solid #2c5aa0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.privacy-container .section-title {
  font-size: 1.4rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.privacy-container .section-number {
  background: #2c5aa0;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-right: 15px;
  font-weight: 600;
}

.privacy-container .section-content {
  color: #555;
  line-height: 1.7;
}

.privacy-container .section-content p {
  margin-bottom: 15px;
}

.privacy-container .data-list {
  list-style: none;
  padding-left: 0;
}

.privacy-container .data-list li {
  background: white;
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 6px;
  border-left: 3px solid #28a745;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.privacy-container .data-list li strong {
  color: #2c5aa0;
}

.privacy-container .rights-list {
  list-style: none;
  padding-left: 0;
}

.privacy-container .rights-list li {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #17a2b8;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.privacy-container .rights-list li strong {
  color: #17a2b8;
  display: block;
  margin-bottom: 5px;
}

.privacy-container .contact-info {
  background: linear-gradient(135deg, #2c5aa0, #17a2b8);
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.privacy-container .contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.privacy-container .contact-email {
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
}

.privacy-container .contact-email:hover {
  background: rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
}

.privacy-container .last-updated {
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  background: #e9ecef;
  border-radius: 8px;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .privacy-container {
      padding: 20px 15px;
  }
  
  .privacy-container .privacy-title {
      font-size: 2rem;
  }
  
  .privacy-container .section-title {
      font-size: 1.2rem;
      flex-direction: column;
      text-align: center;
  }
  
  .privacy-container .section-number {
      margin-bottom: 10px;
      margin-right: 0;
  }
}


/*--------------------------------------------------------------
# Mentions légales Section
--------------------------------------------------------------*/

.legal-container {
  max-width: 1176px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}


.legal-container .legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #004D8A;
}

.legal-container .legal-title {
  font-size: 2.5rem;
  color: #004D8A;
  margin-bottom: 10px;
  font-weight: 700;
}

.legal-container .legal-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 300;
}

.legal-container .legal-section {
  margin-bottom: 35px;
  background: #f8f9fa;
  border-left: 4px solid #004D8A;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-container .section-title {
  font-size: 1.4rem;
  color: #004D8A;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.legal-container .section-icon {
  background: #004D8A;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 15px;
  font-weight: 600;
}

.legal-container .section-content {
  color: #555;
  line-height: 1.7;
}

.legal-container .section-content p {
  margin-bottom: 15px;
}

.legal-container .company-info {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border: 1px solid #2196f3;
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
}

.legal-container .company-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 10px;
  text-align: center;
}

.legal-container .contact-details {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legal-container .contact-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
}

.legal-container .contact-icon {
  width: 20px;
  margin-right: 10px;
  color: #004D8A;
}

.legal-container .brand-highlight {
  color: #004D8A;
  font-weight: 600;
}

.legal-container .domain-highlight {
  background: linear-gradient(135deg, #004D8A, #9c27b0);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.legal-container .domain-highlight:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3);
}
.legal-container .hosting-info {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border: 1px solid #ff9800;
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
}

.legal-container .hosting-company {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f57c00;
  margin-bottom: 15px;
  text-align: center;
}

.legal-container .prohibition-notice {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  border: 2px solid #f44336;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
}

.legal-container .prohibition-notice::before {
  content: "⚠️";
  position: absolute;
  top: -10px;
  left: 20px;
  background: #f44336;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 1rem;
}

.legal-container .prohibition-notice h4 {
  color: #d32f2f;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.legal-container .prohibition-list {
  list-style: none;
  padding-left: 0;
}

.legal-container .prohibition-list li {
  background: white;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 6px;
  border-left: 3px solid #f44336;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.legal-container .prohibition-list li::before {
  content: "❌";
  margin-right: 10px;
}

.legal-container .rights-info {
  background: linear-gradient(135deg, #004D8A, #004D8A);
  border: 1px solid #004D8A;
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
}

.legal-container .rights-info p {
  color: #fff;
}


.legal-container .rights-title {
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 10px;
}

.legal-container .website-link {
  color: #004D8A;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.legal-container .website-link:hover {
  color: #9c27b0;
  text-decoration: underline;
}

.legal-container .last-updated {
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  background: #e9ecef;
  border-radius: 8px;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-container {
      padding: 20px 15px;
  }
  
  .legal-container .legal-title {
      font-size: 2rem;
  }
  
  .legal-container .section-title {
      font-size: 1.2rem;
      flex-direction: column;
      text-align: center;
  }
  
  .legal-container .section-icon {
      margin-bottom: 10px;
      margin-right: 0;
  }

  .legal-container .contact-item {
      flex-direction: column;
      text-align: center;
  }
}



/*--------------------------------------------------------------
# Conditions générales d'utilisation Section
--------------------------------------------------------------*/
.cgu-container {
  max-width: 1176px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.cgu-container .cgu-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eb6113;
}

.cgu-container .cgu-title {
  font-size: 2.5rem;
  color: #eb6113;
  margin-bottom: 10px;
  font-weight: 700;
}

.cgu-container .cgu-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 300;
}

.cgu-container .cgu-section {
  margin-bottom: 35px;
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cgu-container .section-title {
  font-size: 1.4rem;
  color: #eb6113;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.cgu-container .section-number {
  background: #eb6113;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-right: 15px;
  font-weight: 600;
}

.cgu-container .section-content {
  color: #555;
  line-height: 1.7;
}

.cgu-container .section-content p {
  margin-bottom: 15px;
}

.cgu-container .brand-highlight {
  color: #dc3545;
  font-weight: 600;
}

.cgu-container .rules-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.cgu-container .rules-list li {
  background: white;
  margin: 8px 0;
  padding: 12px 15px;
  border-radius: 6px;
  border-left: 3px solid #004D8A;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  position: relative;
}

.cgu-container .rules-list li::before {
  content: "⚠️";
  margin-right: 10px;
}

.cgu-container .important-note {
  background: linear-gradient(135deg, #004D8A, #004D8A);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cgu-container .important-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.cgu-container .contact-info {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.cgu-container .contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.cgu-container .contact-email {
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
}

.cgu-container .contact-email:hover {
  background: rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
}

.cgu-container .legal-notice {
  background: #e9ecef;
  border-left: 4px solid #6c757d;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-style: italic;
}
.cgu-container .legal-notice strong {
  color: #495057;
}

.cgu-container .acceptance-notice {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.cgu-container .last-updated {
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  background: #e9ecef;
  border-radius: 8px;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .cgu-container {
      padding: 20px 15px;
  }
  
  .cgu-container .cgu-title {
      font-size: 2rem;
  }
  
  .cgu-container .section-title {
      font-size: 1.2rem;
      flex-direction: column;
      text-align: center;
  }
  
  .cgu-container .section-number {
      margin-bottom: 10px;
      margin-right: 0;
  }
}



/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Modifier IDU entreprise
--------------------------------------------------------------*/
.modifier-idu-section.page-header {
  text-align: center;
  margin-bottom: 40px;
  color: white;
}

.modifier-idu-section .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modifier-idu-section .page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

.modifier-idu-section .card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
}

.modifier-idu-section .image-section {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.modifier-idu-section .image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.modifier-idu-section .image-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
 /*  animation: float 6s ease-in-out infinite; */
}


@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.modifier-idu-section .form-container {
  padding: 0;
}

.modifier-idu-section .intro-alert {
  background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
  border: none;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.modifier-idu-section .intro-alert::before {
  content: '⚠️';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 3rem;
  opacity: 0.2;
  transform: rotate(15deg);
}

.modifier-idu-section .alert-content {
  position: relative;
  z-index: 1;
}

.modifier-idu-section .alert-text {
  margin: 0;
  font-size: 1.1rem;
  color: #8b6914;
  line-height: 1.6;
}

.modifier-idu-section .alert-text strong {
  color: var(--accent-color);
  font-weight: 700;
}

.modifier-idu-section .form-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  border: 1px solid #dee2e6;
  position: relative;
  transition: all 0.3s ease;
}

.modifier-idu-section .form-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.modifier-idu-section .form-section h5 {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.modifier-idu-section .form-icon {
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

.modifier-idu-section .form-label {
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.modifier-idu-section .form-label::after {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  margin-left: 8px;
}

.modifier-idu-section .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.modifier-idu-section .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
  transform: translateY(-1px);
}

.modifier-idu-section .form-control:hover {
  border-color: #ced4da;
}

.modifier-idu-section .required-field {
  color: red;
  font-weight: 700;
}

.modifier-idu-section .btn-submit {
  background: linear-gradient(135deg, green, #20c997);
  border: none;
  border-radius: 15px;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.modifier-idu-section  .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  /* display: inline-flex; */
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
  }

  .modifier-idu-section  .btn i {
  font-size: 1.25rem;
  }

.modifier-idu-section .btn-submit:active {
  transform: translateY(0);
}

.modifier-idu-section .input-group-addon {
    background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}

.modifier-idu-section .validation-message {
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

.modifier-idu-section .validation-message.error {
  color: red;
}

.modifier-idu-section .validation-message.success {
  color: green;
}

.modifier-idu-section .form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 20px;
}

.modifier-idu-section .step {
  flex: 1;
  text-align: center;
  position: relative;
}

.modifier-idu-section .step::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #dee2e6;
  z-index: 1;
}

.modifier-idu-section .step:last-child::after {
  display: none;
}

.modifier-idu-section .step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.modifier-idu-section .step-label {
  font-size: 0.9rem;
  color: var(--dark-color);
  font-weight: 600;
}

.modifier-idu-section .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 15px;
}

.modifier-idu-section .loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .modifier-idu-section .page-title {
      font-size: 2rem;
  }
  
  .modifier-idu-section .image-section {
      min-height: 250px;
  }
  
  .modifier-idu-section .form-section {
      margin-bottom: 20px;
  }
  
  .modifier-idu-section .btn-submit {
      width: 100%;
      margin-top: 20px;
  }
  
  .modifier-idu-section .step-label {
      font-size: 0.8rem;
  }
}
/*--------------------------------------------------------------
# Annuaire inverse 
--------------------------------------------------------------*/

.hero-inverse {
  background: url('../../inverse.png') no-repeat center;
  background-size: cover;
  height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-inverse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-inverse .hero-overlay {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 12px;
}

.hero-inverse h1 {
  font-size: 40px;
  margin: 0;
  color: #EB6113;
}

.hero-inverse h2 {
  font-size: 26px;
  margin: 10px 0 20px;
  color: #ffffff;
}

.hero-inverse .search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-inverse .search-box input {
  padding: 14px;
  width: 350px;
  border: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  font-size: 16px;
}

.hero-inverse .search-box button {
  padding: 14px 24px;
  border: none;
  background: #EB6113;
  color: white;
  font-size: 16px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: 0.3s;
}

.hero-inverse .search-box button:hover {
  background: #d65c0f;
}

/* Contenu bas */
.text-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

.text-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #111111;
  margin-bottom: 15px;
}

.text-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

/* Responsive: align with site breakpoints */
@media (max-width: 991px) {
  .hero-inverse { height: 520px; }
  .hero-inverse h1 { font-size: 34px; }
  .hero-inverse h2 { font-size: 22px; }
}

@media (max-width: 768px) {
  .hero-inverse { height: 460px; }
  .hero-inverse .search-box { flex-direction: column; width: 90%; margin: 0 auto; }
  .hero-inverse .search-box input { width: 100%; border-radius: 50px; }
  .hero-inverse .search-box button { width: 100%; border-radius: 50px; }
}

@media (max-width: 480px) {
  .hero-inverse { height: 400px; }
  .hero-inverse h1 { font-size: 28px; }
  .hero-inverse h2 { font-size: 18px; }
  .hero-inverse .search-box input, .hero-inverse .search-box button { font-size: 14px; padding: 12px; }
}