/* Global */
:root {
  --primary-color: #2887ff;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}



#nazan-missions-detaillees {
    padding: 60px 0;
    background-color: #fff; /* Un fond légèrement différent pour la section */
}

#nazan-missions-detaillees h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

#nazan-missions-detaillees .section-subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.missions-layout {
    display: flex;
    gap: 30px; /* Espace entre la navigation et le contenu */
    background-color: #f9f9f9; /* Fond pour le conteneur layout */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.missions-navigation {
    flex: 0 0 300px; /* Largeur fixe pour la navigation, ne grandit pas, ne rétrécit pas */
    background-color: #eef1f5; /* Couleur de fond pour la navigation */
    padding: 20px;
    border-radius: 6px;
}

.missions-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.missions-navigation .mission-nav-item {
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    color: #34495e; /* Couleur du texte des items de nav */
    border-left: 4px solid transparent; /* Indicateur actif subtil */
}

.missions-navigation .mission-nav-item i {
    margin-right: 12px;
    color: #3498db; /* Couleur des icônes */
    width: 20px; /* Pour aligner le texte */
    text-align: center;
}

.missions-navigation .mission-nav-item:hover {
    background-color: #dde4ed;
}

.missions-navigation .mission-nav-item.active {
    background-color: #3498db; /* Couleur d'accentuation Nazan */
    color: #ffffff;
    font-weight: 600;
    border-left-color: #2980b9; /* Plus foncée pour l'indicateur actif */
}
.missions-navigation .mission-nav-item.active i {
    color: #ffffff; /* Icône blanche sur fond actif */
}


.missions-content-area {
    flex-grow: 1; /* Prend l'espace restant */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    min-height: 300px; /* Pour un affichage initial correct */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#mission-content-wrapper {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

#mission-content-wrapper.loading {
    opacity: 0;
}


#mission-title {
    font-size: 1.8em;
    color: #3498db; /* Couleur d'accentuation Nazan */
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

#mission-details-list {
    list-style: none; /* On peut utiliser des :before pour des puces custom */
    padding-left: 0;
    margin: 0;
}

#mission-details-list li {
    padding: 10px 0 10px 25px; /* Espace pour l'icône de puce */
    font-size: 1.05em;
    color: #555;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px dashed #eee;
}
#mission-details-list li:last-child {
    border-bottom: none;
}

#mission-details-list li::before {
    content: '\f00c'; /* Icône Font Awesome "check" */
    font-family: 'Font Awesome 5 Free'; /* ou 'Font Awesome 6 Free' selon votre version */
    font-weight: 900; /* Important pour les icônes solides */
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60; /* Vert pour les "check" */
    font-size: 0.9em;
}


/* Responsive pour la section des missions détaillées */
@media (max-width: 992px) { /* Pour tablettes */
    .missions-layout {
        flex-direction: column; /* Empile la navigation et le contenu */
    }
    .missions-navigation {
        flex: 0 0 auto; /* La navigation ne prend que sa hauteur nécessaire */
        width: 100%;
        margin-bottom: 20px; /* Espace entre nav et contenu sur mobile */
    }
    .missions-navigation ul {
        display: flex; /* Les items de nav en ligne */
        flex-wrap: wrap; /* Permet le retour à la ligne si pas assez de place */
        gap: 10px;
    }
    .missions-navigation .mission-nav-item {
        flex-grow: 1; /* Pour que les items prennent la largeur disponible */
        text-align: center;
        margin-bottom: 0; /* Annule le margin-bottom si en ligne */
    }
}


@media (max-width: 768px) {
    #nazan-missions-detaillees h2 {
        font-size: 2em;
    }
    .missions-navigation .mission-nav-item {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    .missions-content-area {
        padding: 20px;
    }
    #mission-title {
        font-size: 1.5em;
    }
    #mission-details-list li {
        font-size: 0.95em;
        padding: 8px 0 8px 22px;
    }
     #mission-details-list li::before {
        top: 10px;
     }
}







#nos-agences {
    padding: 60px 0;
    background-color: #f9f9f9; /* Léger fond pour la section */
}

#nos-agences h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

#nos-agences .section-subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.agences-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px; /* Espace entre les boutons d'onglet */
    flex-wrap: wrap; /* Pour les petits écrans */
}

.agence-tab-btn {
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #eef1f5;
    color: #34495e;
    border-radius: 30px; /* Boutons arrondis */
    transition: all 0.3s ease;
}
.agence-tab-btn i {
    margin-right: 8px;
}

.agence-tab-btn:hover {
    background-color: #dde4ed;
    border-color: #c8d0da;
}

.agence-tab-btn.active {
    background-color: #3498db; /* Couleur d'accentuation Nazan */
    color: #ffffff;
    border-color: #2980b9;
}

.agences-content .agence-details {
    display: none; /* Caché par défaut */
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.5s ease-in-out;
}

.agences-content .agence-details.active {
    display: block; /* Affiché si actif */
}

.agence-details h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.country-flag-icon {
    width: 30px; /* Ajustez la taille */
    height: auto;
    margin-right: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.agence-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive */
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start; /* Aligne l'icône avec le haut du texte */
    padding: 15px;
    background-color: #fdfdfd;
    border-left: 3px solid #3498db; /* Ligne décorative */
    border-radius: 0 5px 5px 0;
}

.info-item i {
    font-size: 1.5em; /* Taille des icônes Font Awesome */
    color: #3498db;   /* Couleur principale Nazan */
    margin-right: 18px;
    margin-top: 3px; /* Ajustement vertical fin */
    width: 25px; /* Pour alignement */
    text-align: center;
}

.info-item div {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

.info-item strong {
    color: #333;
    display: block;
    margin-bottom: 3px;
}

.info-item a {
    color: #3498db;
    text-decoration: none;
}
.info-item a:hover {
    text-decoration: underline;
}

/* Animation d'apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive pour les onglets et le contenu */
@media (max-width: 768px) {

    .agence-tab-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .agences-content .agence-details {
        padding: 25px;
    }
    .agence-details h3 {
        font-size: 1.6em;
    }
    .agence-info-grid {
        grid-template-columns: 1fr; /* Une seule colonne pour les items d'info */
    }
}









.contact-info a {
  margin-right: 20px;
  display: none;
  color: white;
  text-decoration: none;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  display: none;
  color: white;
}

.contact-info a:hover {
  text-decoration: underline;
}

.don-button {
  background: #FFD700;
  color: #005bb5;
  padding: 5px 15px;
  display: none;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}





nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #ffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}

.navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.logo-image {
  max-height: 60px;
  margin-right: 40px;
  border-radius: 20px;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #005bb5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

nav .navbar .links li a:hover {
  text-decoration:underline 3px #ffc107;
}
.navbar ul li a.active {
  text-decoration:underline 3px #ffc107;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}


.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}


@media (max-width:920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }

  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }

  nav .navbar .links li a {
    font-size: 15px;
    color: white;
    font-weight: 520;
    text-decoration: none;
  }


  nav .navbar .links li a:hover {
    color: #f0c141;
    font-weight: bold;
  }

  .contact-info a {
    margin-right: 20px;
    color: white;
    display: block;
    text-decoration: none;
  }

  .social-icons a {
    margin-right: 10px;
    font-size: 18px;
    display: block;
    color: white;
  }

  .social-icons i {
    background-color: #f0c141;
    border-radius: 10px;
    padding: 7px;
    color: black;
  }

  .social-icons i:hover {
    background-color: black;
    color: #f0c141;
  }

}

@media (max-width:800px) {

  .navbar .bx-menu {
    display: block;
  }

  .contact-info a {
    margin-right: 20px;
    text-align: center;
    display: block;
    color: white;
    text-decoration: none;
  }

  .social-icons a {
    font-size: 18px;
    display: inline-block;
    margin-left: 50px;
    color: white;
  }

  .social-icons i {
    background-color: #f0c141;
    border-radius: 10px;
    padding: 7px;
    color: black;
  }

  .social-icons i:hover {
    background-color: black;
    color: #f0c141;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 275px;
    width: 100%;
    background-color: #2c3e50;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }


  .navbar .bx-menu {
    font-size: 25px;
    cursor: pointer;
    color: black;
  }

  .sidebar-logo i {
    color: white;
    font-size: 25px;
    cursor: pointer;
  }

  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .links li .arrow {
    line-height: 40px;
  }

  nav .navbar .links li {
    display: block;
  }

  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  nav .navbar .links li .sub-menu li {
    border-bottom: none;

  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }

  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }

  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }

  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }

  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }

  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 51, 224, 0.5);
  z-index: 99;
}







.lien a {
  color: #fff;
}

.lien :hover {
  color: #076bee;
}


.titre {
  background-image: url(photobf/missions.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  opacity: 0.7;
  text-align: center;
  padding: 120px 0;
}

.titre h1 {
  font-size: 2.5em;
  background-color: #007bff9c;
  margin: 0;
}








#nazan-collaborations { /* ou .partenariats si vous gardez la classe */
    padding: 60px 0;
    background-color: #ffffff; /* Fond blanc pour cette section */
}

#nazan-collaborations h1 {
    font-size: 2.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

#nazan-collaborations .section-subtitle { /* Hérite du style général mais peut être ajusté */
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.collaboration-card {
    background-color: #f9f9f9; /* Léger fond pour les cartes */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collaboration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.collaboration-icon {
    font-size: 2.5em;
    color: #ff9800; /* Couleur d'accentuation Nazan */
    margin-bottom: 15px;
    text-align: center;
}
.collaboration-card h2 {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 20px;
    text-align: center;
}
.collaboration-card p { /* Pour le paragraphe sous "Nos Modèles de Collaboration" */
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}


.why-collaborate-list,
.how-collaborate-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.why-collaborate-list li,
.how-collaborate-list li {
    display: flex;
    align-items: flex-start; /* Aligne l'icône avec le haut du texte */
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.why-collaborate-list li i,
.how-collaborate-list li i {
    font-size: 1.4em; /* Taille des icônes dans les listes */
    color: #3498db;
    margin-right: 15px;
    margin-top: 3px; /* Ajustement vertical */
    min-width: 25px; /* Pour que le texte soit aligné même si icônes de largeurs différentes */
    text-align: center;
}

.why-collaborate-list li div,
.how-collaborate-list li div {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

.why-collaborate-list li div strong,
.how-collaborate-list li div strong {
    color: #333;
    display: block; /* Pour que le strong prenne toute la ligne avant le texte normal */
    margin-bottom: 4px;
}


.collaboration-cta {
    text-align: center;
    background-color: #eef1f5; /* Fond légèrement différent pour le CTA */
    padding: 40px 20px;
    border-radius: 8px;
}

.collaboration-cta h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.collaboration-cta p {
    font-size: 1.1em;
    color: #555;
    max-width: 650px;
    margin: 0 auto 25px auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #ff9800; /* Couleur d'accentuation Nazan */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background-color: #2980b9; /* Couleur plus foncée au survol */
    transform: translateY(-2px);
}

.collaboration-cta .cta-alternative {
    margin-top: 20px;
    font-size: 0.9em;
}
.collaboration-cta .cta-alternative a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}
.collaboration-cta .cta-alternative a:hover {
    text-decoration: underline;
}

/* Responsive pour la section collaborations */
@media (max-width: 992px) {
    .collaboration-grid {
        grid-template-columns: 1fr; /* Une seule colonne pour les cartes */
    }
}
@media (max-width: 768px) {
    #nazan-collaborations h1 {
        font-size: 2.2em;
    }
    #nazan-collaborations .section-subtitle {
        font-size: 1.1em;
    }
    .collaboration-card h2 {
        font-size: 1.6em;
    }
    .why-collaborate-list li, .how-collaborate-list li {
        padding: 12px;
    }
    .why-collaborate-list li div, .how-collaborate-list li div {
        font-size: 0.95em;
    }
    .collaboration-cta h2 {
        font-size: 1.8em;
    }
    .collaboration-cta p {
        font-size: 1em;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}









/* SECTION PARTENAIRES */

.partenaires-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f4f4f4;
  overflow: hidden;
}

.partenaires-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1a237e;
}

.partenaires-section .underline {
  text-decoration: underline;
  color: #ff9800;
}

.partenaires-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

/* SLIDER */
.partenaires-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partenaires-wrapper {
  display: flex;
  gap: 20px;
  width: max-content; /* Permet d’étendre la largeur automatiquement */
  animation: scroll 60s linear infinite;
}

.partenaires-wrapper img {
  width: 150px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.partenaires-wrapper img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .partenaires-wrapper img {
      width: 120px;
  }
}

@media (max-width: 480px) {
  .partenaires-wrapper img {
      width: 100px;
  }
}
@keyframes scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}









/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease-out;
}

#splash-screen img {
  width: 150px; /* Ajuste la taille du logo si nécessaire */
  animation: fadeIn 1.5s ease-in-out;
}

/* Animation du logo */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.8);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

/* Disparition du splash screen */
.hidden {
  opacity: 0;
  pointer-events: none;
}
















/* Styles du Footer */
.footer {
  background: #2c3e50;
  padding: 50px 0;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Logo */
.footer-logo {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  color: #fff;
}

/* Liens de navigation */
.footer-links,
.footer-social,
.footer-contact {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-links h3,
.footer-social h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}

.footer-links h3::after,
.footer-social h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #f00d3e;
  margin: 8px auto;
}

/* Liste des liens */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin: 8px 0;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #007bff;
}

/* Icônes des réseaux sociaux */
.social-iconss {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-iconss a {
  display: inline-block;
  font-size: 20px;
  color: #007bff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-iconss a:hover {
  color: #f00d3e;
  transform: scale(1.2);
}

.social-iconss i:hover {
  color: #fff;
  background-color: #f00d3e;
  transform: scale(1.1);
}

/* Icônes de contact */
.footer-contact i {
  margin-right: 8px;
  color: #007bff;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #007bff;
  font-size: 14px;
  color: #fff;
}