/* =========================
    BASE
========================= */
*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  position: relative;
  z-index: 2;
}

section {
  padding: 65px 0px !important;
}

.object-cover {
  object-fit: cover;
}

/* =========================
    COURBES EN ARRIÈRE-PLAN
========================= */
.background-curves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1440 900' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100 250 Q 300 100 600 300 Q 900 500 1200 200 Q 1500 -50 1700 300' stroke='white' stroke-width='4' opacity='0.50' fill='none'/%3E%3Cpath d='M900 100 Q 1200 0 1300 200 Q 1400 400 1200 350 Q 1000 300 1100 200 Q 1200 100 1300 200' stroke='white' stroke-width='3' opacity='0.45' fill='none'/%3E%3Cpath d='M-50 700 Q 200 900 500 800 Q 800 700 600 600 Q 400 500 200 700 Q 0 900 300 850' stroke='white' stroke-width='3' opacity='0.45' fill='none'/%3E%3Cpath d='M700 500 Q 800 600 900 500 Q 1000 400 1100 500' stroke='white' stroke-width='2.5' opacity='0.55' fill='none'/%3E%3Cpath d='M0 850 Q 400 600 900 850 Q 1300 1050 1440 800' stroke='white' stroke-width='3' opacity='0.32' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
    TYPOGRAPHIE
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-sans-serif);
  font-weight: var(--font-weight-bold);
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1,
.hero-title {
  font-size: 3rem;
  font-family: var(--font-family-serif);
  font-weight: 700;
  margin-bottom: 25px;
}

h2,
.approach-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

h3,
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

p,
.hero-subtitle,
.approach-desc,
.card-text {
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-base);
  margin-top: 0;
  margin-bottom: 1.2em;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
  font-family: var(--font-family-serif);
}

.lead {
  font-size: 1.5rem;
}

/* =========================
    BOUTONS
========================= */
.btn {
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  padding: 12px 30px;
}

.btn-inscription,
.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-inscription {
  padding: 8px 24px;
  font-size: 14px;
}

.btn-secondary {
  margin-right: 15px;
  border: 1px solid var(--secondary);
}

.btn-inscription:hover,
.btn-secondary:hover {
  border: 1px solid var(--secondary);
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--dark);
  border-radius: 30px;
  padding: 11px 30px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all 0.3s;
}

.btn-primary:hover {
  opacity: 0.8;
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-outline-dark {
  border-radius: 30px;
  padding: 11px 30px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background-color: white;
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border-radius: 30px;
  padding: 11px 30px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  border: 1px solid white !important;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
  color: white;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 0.8rem;
}

/* =========================
    NAVBAR
========================= */
.navbar {
  padding: 12px 0;
  transition: all 0.3s ease;
  border-radius: 0;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  transition: height 0.3s ease;
  height: 60px;
}

.navbar .container {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Add support for Safari */
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .navbar .container {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (
  (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))
) {
  .navbar .container {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.03);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  margin-left: 2rem;
  text-align: left;
}

.nav-menu .nav-item {
  position: relative;
  margin: 0 12px;
}

.nav-menu .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  padding: 10px 15px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.nav-menu .nav-link:hover {
  color: var(--dark);
  background-color: rgba(251, 216, 114, 0.2);
}

.nav-menu .nav-link::after {
  display: none;
}

.nav-menu .nav-item.active .nav-link {
  background-color: var(--primary);
  color: var(--dark);
}

/* Social links navbar */
.navbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-social .social-link {
  background: rgba(255, 255, 255, 0.75);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.2s;
}

.navbar-social .social-link:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* =========================
    SEARCH (NAVBAR)
========================= */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.search-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.search-icon-box:hover {
  transform: translateY(-3px);
}

.search-icon-box i {
  color: white;
  font-size: 16px;
}

.search-input-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input-container.active {
  width: 240px;
  padding: 0 40px 0 15px;
}

.search-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-family: "Karla", sans-serif;
}

.search-close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.search-close:hover {
  color: var(--dark);
}

/* =========================
    HERO SECTION
========================= */
.hero-section {
  padding: 60px 0;
  position: relative;
  min-height: 500px;
}

.hero-subtitle {
  max-width: 90%;
}

/* Images Hero */
.hero-images {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.image-container {
  position: absolute;
  overflow: hidden;
}

.image-container img,
.image-main img {
  border-radius: 20px;
}

.image-main {
  width: 85%;
  height: auto;
  z-index: 3;
}

.image-top {
  width: 200px;
  height: auto;
  top: -5%;
  right: -5%;
  z-index: 4;
}

.image-bottom {
  width: 60%;
  height: auto;
  bottom: 8%;
  left: -5%;
  z-index: 4;
}

.img-fluid {
  border-radius: 20px;
}

/* =========================
    SECTION APPROCHE
========================= */
.approach-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.approach-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.approach-image:hover img {
  transform: scale(1.03);
}

.approach-tag {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.approach-desc {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* =========================
    CARTES COLORÉES (FEATURES)
========================= */
.card-feature {
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  z-index: 2;
}

.card-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.laureats-section .card-feature .card-title {
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 30px;
}

/* Couleurs de carte */
.card-purple {
  background-color: var(--info);
  color: #fff;
}

.card-teal {
  background-color: var(--teal);
  color: #fff;
}

.card-coral {
  background-color: var(--coral);
  color: #fff;
}

.card-mint {
  background-color: var(--mint);
  color: var(--dark);
}

.card-yellow {
  background-color: var(--primary);
  color: var(--dark);
}

.card-purple-gradient {
  background: linear-gradient(135deg, var(--info) 0%, #a36dd6 100%);
  color: #fff;
}

.card-text {
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* Icônes de carte */
.card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 24px;
}

/* Liens et effets */
.feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: all 0.3s;
}

.feature-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.feature-link:hover {
  color: var(--info);
  text-decoration: none;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* =========================
    CARTES EN OVERLAP
========================= */
.overlap-cards {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.overlap-card {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin-bottom: 30px;
  overflow: hidden;
}

.overlap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-pattern {
  position: relative;
}

.card-pattern:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

/* =========================
    IMAGES ARRONDIES
========================= */
.w-30 {
  width: 30% !important;
}

.images-rounded {
  border-radius: 50% !important;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.images-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
    JABD HIGHLIGHT SECTION
========================= */
.jabd-highlight-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.jabd-card {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary) 100%
  );
  border-radius: 20px;
  overflow: hidden;
  color: white;
  position: relative;
}

.jabd-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.7;
  z-index: 0;
}

.jabd-image-col {
  position: relative;
  padding: 0;
  height: 100%;
}

.jabd-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.jabd-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* .jabd-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--coral);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 3;
} */

.jabd-content {
  padding: 40px;
  height: 100%;
}

.jabd-tag {
  background-color: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.jabd-title {
  font-family: var(--font-family-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.jabd-desc {
  font-size: var(--font-size-md);
  line-height: 1.7;
  margin-bottom: 30px;
}

.jabd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: auto;
}

/* =========================
    SECTION NOS PRIX
========================= */
.nos-prix {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.info-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Styles actifs */
.info-block.active {
  border-left: 5px solid var(--primary);
  background-color: #fff;
}

.info-block:nth-child(1):hover {
  background-color: rgba(130, 70, 175, 0.2);
}

.info-block:nth-child(3):hover {
  background-color: rgba(251, 216, 114, 0.2);
}

.info-block:nth-child(2):hover {
  background-color: rgba(205, 84, 91, 0.2);
}

.info-block:nth-child(1).active {
  border-left-color: var(--info);
}

.info-block:nth-child(3).active {
  border-left-color: var(--primary);
}

.info-block:nth-child(2).active {
  border-left-color: var(--coral);
}

.info-block:nth-child(1).active .btn-outline-dark {
  background-color: var(--info);
  color: #fff;
  border-color: var(--info);
}

.info-block:nth-child(3).active .btn-outline-dark {
  background-color: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.info-block:nth-child(2).active .btn-outline-dark {
  background-color: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.info-block:nth-child(1).active .text-secondary {
  color: var(--info) !important;
}

.info-block:nth-child(3).active .text-secondary {
  color: var(--primary) !important;
}

.info-block:nth-child(2).active .text-secondary {
  color: var(--coral) !important;
}

/* Button hover effects */
.info-block:nth-child(1) .btn-outline-dark:hover {
  background-color: var(--info);
  color: #fff;
  border-color: var(--info);
}

.info-block:nth-child(3) .btn-outline-dark:hover {
  background-color: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.info-block:nth-child(2) .btn-outline-dark:hover {
  background-color: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
∂ .info-block-title {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.info-image-container {
  position: relative;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-image {
  position: absolute;
  width: 90%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  object-fit: cover;
  max-height: 450px;
}

.info-image.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================
    SECTION NEWSLETTER (INLINE)
========================= */
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-top: -5px;
}

.p-30 {
  padding: 30px;
  padding-left: 30px !important;
}

.newsletter-form-container {
  background: #fff;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.formulaire newsletter-form-inline {
  display: flex;
  flex-direction: column;
}

.newsletter-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.7;
  z-index: 0;
}

/* =========================
    FAB STICKY NEWSLETTER BUTTON
========================= */
.newsletter-fab,
.linkedin-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--blue);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(205, 216, 120, 0.13);
  padding: 0 22px 0 12px;
  height: 56px;
  font-family: var(--font-family-sans-serif);
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  animation: fab-pop 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.newsletter-fab:hover,
.linkedin-fab:hover {
  background: var(--primary);
  transform: scale(1.06);
}

.linkedin-fab {
  background: var(--secondary);
  bottom: 100px;
  padding: 0 10px;
}

.linkedin-fab:hover {
  background: var(--secondary);
}

.fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 8px rgba(0, 20, 137, 0.07);
}

.fab-label {
  color: var(--dark);
  font-family: var(--font-family-sans-serif);
  font-weight: 700;
  letter-spacing: 0.01em;
}

@keyframes fab-pop {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
    NEWSLETTER MODAL
========================= */
/* Modal overlay */
.newsletter-modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.newsletter-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* Card */
.newsletter-modal .newsletter-card {
  background: #fff;
  border-radius: 20px;
  width: 95vw;
  max-width: 900px;
  padding: 0 0 32px 0;
  position: relative;
  overflow: hidden;
  animation: modal-in2 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes modal-in2 {
  0% {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Bandeau */
.newsletter-banner {
  background: var(--primary);
  padding: 40px 32px 32px 32px;
  position: relative;
  border-radius: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.banner-icon {
  position: absolute;
  right: 24px;
  top: 16px;
  opacity: 0.25;
  z-index: 0;
  font-size: 80px;
  transform: rotate(-10deg);
}

.banner-title {
  position: relative;
  z-index: 1;
  color: black;
  font-family: var(--font-family-serif);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.1;
}

.banner-title small {
  display: block;
  font-family: var(--font-family-sans-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 12px;
  color: black;
  letter-spacing: 0.01em;
  opacity: 0.9;
  line-height: 1.4;
}

/* Close button */
.newsletter-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: black;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
  opacity: 0.8;
}

.newsletter-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg);
  opacity: 1;
}

/* Form */
.newsletter-form2 {
  padding: 32px 32px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.newsletter-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.pill {
  display: flex;
  align-items: center;
  background: rgba(251, 216, 114, 0.15);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-family-sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  position: relative;
}

.pill:hover {
  background: rgba(251, 216, 114, 0.3);
  transform: translateY(-2px);
}

.pill input[type="checkbox"] {
  display: none;
}

.pill input[type="checkbox"]:checked + span,
.pill input[type="checkbox"]:checked ~ span {
  color: #fff;
}

.pill input[type="checkbox"]:checked ~ span {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  box-shadow: 0 3px 10px rgba(251, 216, 114, 1);
}

.pill input[type="checkbox"]:checked ~ span:before {
  content: "✓ ";
  font-size: 1em;
  margin-right: 4px;
}

.pill span {
  transition: all 0.2s ease;
  border-radius: 30px;
  padding: 8px 18px;
  margin: -8px -18px;
}

/* Champ email avec label flottant */
.newsletter-field {
  position: relative;
  margin-bottom: 0;
}

.newsletter-field input,
.newsletter-field textarea {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid rgba(251, 216, 114, 1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-family-sans-serif);
  color: var(--dark);
  background: #f8f9fa;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.newsletter-field input:focus,
.newsletter-field textarea:focus {
  border-color: var(--dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(130, 70, 175, 0.1);
}

.newsletter-field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1rem;
  font-family: var(--font-family-sans-serif);
  pointer-events: none;
  background: transparent;
  transition: all 0.2s ease;
  opacity: 0.7;
  padding: 0 4px;
}

.newsletter-field input:focus + label,
.newsletter-field input:not(:placeholder-shown) + label,
.newsletter-field textarea:focus + label,
.newsletter-field textarea:not(:placeholder-shown) + label {
  top: 0;
  left: 12px;
  font-size: 0.8rem;
  background: #f8f9fa;
  padding: 0 4px;
  opacity: 1;
  color: var(--dark);
  font-weight: 600;
}

.newsletter-field input:focus + label {
  background: #fff;
}

/* Consent */
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #666;
  font-family: var(--font-family-sans-serif);
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  padding: 5px 0;
}

.newsletter-consent input[type="checkbox"] {
  display: none;
}

.consent-custom {
  min-width: 22px;
  height: 22px;
  border: 1px solid rgba(251, 216, 114, 1);
  border-radius: 6px;
  background: #f8f9fa;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.newsletter-consent:hover .consent-custom {
  border-color: var(-primary);
}

.newsletter-consent input[type="checkbox"]:checked + .consent-custom {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 1px 3px rgba(251, 216, 114, 0.3);
}

.newsletter-consent input[type="checkbox"]:checked + .consent-custom:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}

.consent-custom:after {
  display: none;
}

.consent-text {
  margin-left: 2px;
  line-height: 1.4;
}

/* Submit button */
.newsletter-submit-btn2 {
  margin-top: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 0;
  font-family: var(--font-family-sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.newsletter-submit-btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.newsletter-submit-btn2:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(251, 216, 114, 0.3);
}

.newsletter-submit-btn2:hover::before {
  left: 100%;
}

.newsletter-submit-btn2:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(251, 216, 114, 1);
}

.newsletter-submit-btn2 svg {
  margin-right: 5px;
  font-size: 1.2em;
}

/* Social links (modal) */
.newsletter-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.newsletter-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: var(--dark);
  font-size: 1.4rem;
  transition: 0.2s all;
}

.newsletter-social .social-link:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

/* =========================
    FOOTER
========================= */
.site-footer {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--dark);
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 0;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding: 20px 0;
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--primary);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.75);
  color: var(--dark);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: white;
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-brand p {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.copyright {
  color: var(--dark);
  font-size: 0.9rem;
}

.footer-credits a {
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credits a:hover {
  color: var(--primary);
}

/* =========================
    INSTITUT HEADER CARD
========================= */
.content-header-breadcrumb {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.content-header-breadcrumb a {
  color: #495057;
  text-decoration: none;
  transition: color 0.2s;
}

.content-header-breadcrumb a:hover {
  color: var(--secondary);
}

.content-header-breadcrumb i {
  font-size: 0.7rem;
}

.content-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.content-card .content-tag {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.content-card h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.content-card p {
  font-size: 1.3rem;
  line-height: 1.7;
}

/* =========================
    CONTENT SECTION
========================= */
.content-block {
  position: relative;
}

.content-image-wrapper {
  position: relative;
  z-index: 1;
}

.content-image-wrapper img {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.content-image-wrapper:hover img {
  transform: translateY(-10px);
}

.content-image-pattern {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 10px;
  z-index: 1;
}

/* =========================
    VIDEO SECTION
========================= */
.video-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 30px;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  line-height: 0;
}

.video-container iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

.video-medium,
.video-medium iframe {
  height: 400px;
}

.secretary-info {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 40px;
}

/* =========================
    TEAM SECTION
========================= */
.team-section {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.member-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.03);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.member-card-featured {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  border-left: 4px solid var(--primary);
}

.member-header {
  padding: 15px 20px;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.member-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  position: relative;
  padding-bottom: 12px;
}

.member-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.member-title {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #495057;
}

.member-organization {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: auto;
}

/* =========================
    CONTENT ELEMENTS
========================= */
.content-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.custom-list {
  padding-left: 1.5rem;
  list-style-type: none;
}

.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* Quote Card Styling */
.quote-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary);
}

.quote-content {
  position: relative;
  padding-left: 20px;
}

.quote-content::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  left: -10px;
  top: -20px;
  opacity: 0.5;
}

.quote-content p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.quote-content cite {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--secondary);
  text-align: right;
}

/* =========================
    MEDIA QUERIES
========================= */
@media (max-width: 991.98px) {
  /* Navbar */
  .navbar {
    padding: 10px 0;
  }
  .navbar .container {
    border-radius: 15px;
    padding: 10px 15px;
  }
  .navbar-brand img {
    height: 50px;
  }
  .navbar-collapse {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 15px;
    margin-top: 15px;
  }
  .nav-menu {
    margin-left: 0;
  }
  .nav-menu .nav-item {
    margin: 5px 0;
  }
  .nav-menu .nav-link {
    padding: 10px 15px;
    border-radius: 10px;
  }
  .nav-menu .nav-link:hover {
    background-color: rgba(251, 216, 114, 0.2);
  }
  .search-container {
    margin: 15px 0;
    width: 100%;
    justify-content: center;
  }
  .search-input-container {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 0;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1030;
    height: 50px;
    border-radius: 4px;
  }
  .search-input-container.active {
    width: calc(100% - 30px);
    max-width: 500px;
  }
  .search-icon-box {
    margin: 0 auto;
  }
  .navbar-nav {
    text-align: center;
  }
  .btn-inscription {
    width: 100%;
    margin-top: 10px;
  }

  /* Hero */
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-images {
    margin-top: 50px;
  }

  /* Approach */
  .approach-title {
    font-size: 1.5rem;
  }

  /* Overlap Cards */
  .overlap-cards {
    margin-top: 30px;
  }

  /* JABD */
  .jabd-image-col {
    height: 300px;
    position: relative;
  }
  .jabd-image-container {
    position: relative;
    height: 100%;
  }
  .jabd-content {
    padding: 30px;
  }
  .jabd-title {
    font-size: 2rem;
  }

  /* Nos Prix */
  .nos-prix {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .info-image-container {
    min-height: 350px;
    margin-top: 40px;
  }
  .info-image {
    width: 100%;
    max-height: 350px;
  }

  /* Newsletter Section */
  .newsletter-form-container {
    margin-top: 30px;
    padding: 25px;
  }

  /* Content */
  .content-card .row {
    flex-direction: column-reverse;
  }
  .content-card img {
    border-radius: 0 !important;
    max-height: 350px;
    width: 100%;
  }
  .institut-badge {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
  .content-card h1 {
    font-size: 2.5rem;
  }

  /* Content Section */
  .content-section {
    padding: 60px 0;
  }

  .content-section p {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 2rem;
  }
  .content-image-wrapper {
    margin-top: 40px;
  }
  .video-container iframe {
    height: 400px;
  }

  /* Team */
  .member-card {
    margin-bottom: 25px;
    min-height: 200px;
  }
  .member-content {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  /* Navbar */
  .nav-menu {
    justify-content: center;
    margin-top: 20px;
  }
  .nav-link {
    margin: 0 10px;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-images {
    min-height: 350px;
  }

  /* JABD */
  .jabd-image-col {
    height: 250px;
  }
  .jabd-content {
    padding: 25px;
  }
  .jabd-title {
    font-size: 1.75rem;
  }
  /* .jabd-badge {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  } */
  .jabd-actions {
    flex-direction: column;
  }
  .jabd-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Nos Prix */
  .nos-prix {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .info-block {
    padding: 20px 25px;
  }
  .info-image-container {
    min-height: 300px;
  }
  .info-image {
    max-height: 300px;
  }

  /* Newsletter Section */
  .newsletter-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .newsletter-form-container {
    padding: 20px;
  }

  /* Content */
  .content-card h1 {
    font-size: 2rem;
  }
  .content-card p {
    font-size: 1rem;
  }

  /* Content Section */
  .content-section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .video-container iframe {
    height: 400px;
  }

  /* Team */
  .member-card {
    min-height: 180px;
  }
  .member-name {
    font-size: 1.1rem;
  }
  .member-content {
    padding: 15px;
  }

  /* Content elements */
  .quote-card {
    padding: 20px;
  }
  .quote-content p {
    font-size: 1rem;
  }
  .content-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  /* Newsletter Modal */
  .newsletter-modal .newsletter-card {
    padding: 0 0 24px 0;
    max-width: 90vw;
  }
  .newsletter-banner {
    padding: 30px 20px 25px 20px;
  }
  .banner-title {
    font-size: 1.8rem;
  }
  .banner-title small {
    font-size: 0.95rem;
  }
  .newsletter-form2 {
    padding: 24px 20px 0 20px;
    gap: 18px;
  }
  .pill {
    padding: 6px 14px;
    font-size: 0.9rem;
  }
  .pill span {
    padding: 6px 14px;
    margin: -6px -14px;
  }
  .newsletter-field input[type="email"] {
    padding: 14px 14px;
  }
  .newsletter-submit-btn2 {
    padding: 14px 0;
  }
}

@media (max-width: 575.98px) {
  /* Navbar Search */
  .search-input-container.active {
    width: calc(100% - 20px);
  }
}

/* =========================
    CAROUSEL SECTION
========================= */
.carousel-section {
  position: relative;
  overflow: hidden;
}

.carousel-subtitle {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #666;
}

.slick-carousel {
  margin: 0 -15px;
  padding: 20px 0 60px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.carousel-item {
    position: relative;
    margin: 0 15px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 1;
    width: 650px
}

.slick-center .carousel-item {
  transform: scale(1);
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.carousel-caption h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Slick Slider Custom Styling */
.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: var(--secondary);
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--secondary);
}

.slick-prev,
.slick-next {
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-prev i,
.slick-next i {
  color: var(--dark);
  font-size: 18px;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: var(--primary);
  transform: translateY(-30px);
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 280px;
  }

  .slick-prev {
    left: 10px;
  }

  .slick-next {
    right: 10px;
  }
}

/* =========================
    PROGRAMME TABLES
========================= */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.programme-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 16px;
}

.programme-table thead {
  background-color: var(--secondary);
  color: white;
}

.programme-table th,
.programme-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
}

.programme-table thead th {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.programme-table tbody th {
  width: 100px;
  color: var(--secondary);
  font-weight: 600;
  background-color: rgba(var(--secondary-rgb), 0.05);
  border-right: 1px solid #eaeaea;
}

.programme-table tbody tr:hover {
  background-color: rgba(var(--primary-rgb), 0.03);
}

.programme-table tbody tr:last-child th,
.programme-table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive styles for tables */
@media (max-width: 768px) {
  .programme-table {
    font-size: 14px;
  }

  .programme-table th,
  .programme-table td {
    padding: 12px 15px;
  }

  .programme-table tbody th {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .programme-section {
    padding: 60px 0;
  }

  .programme-table {
    font-size: 13px;
  }

  .programme-table th,
  .programme-table td {
    padding: 10px 12px;
  }

  .programme-table tbody th {
    width: 70px;
  }
}

/* =========================
    ARCHIVES SECTION
========================= */

.archives-container {
  margin-top: 30px;
}

.archive-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.archive-header {
  background-color: var(--secondary);
  color: white;
  padding: 20px;
  position: relative;
}

.archive-year {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.archive-date {
  font-size: 0.9rem;
  opacity: 0.8;
  display: block;
}

.archive-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.liste-stylisee {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.liste-stylisee li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.liste-stylisee li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

.archive-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: rgba(var(--secondary-rgb), 0.05);
  border-radius: 8px;
  color: var(--secondary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.archive-link:hover {
  background-color: var(--secondary);
  color: white;
  text-decoration: none;
}

.archive-link i {
  transition: transform 0.3s ease;
}

.archive-link:hover i {
  transform: translateX(5px);
}

/* Archive Search Styles */
.archives-search {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.archives-search-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.archives-search-label {
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 0;
  color: var(--secondary);
}

.archives-select-container {
  position: relative;
  flex-grow: 1;
  background-color: white;
  border-radius: 20px;
}

.archives-select {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  appearance: none;
  background-color: transparent;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.archives-select:focus {
  outline: none;
  border-color: var(--primary);
}

.archives-select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  pointer-events: none;
}

@media (max-width: 768px) {
  .archives-search-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .archives-search-label {
    margin-bottom: 10px;
  }

  .archives-select-container {
    width: 100%;
  }
}

.archives-select {
  padding-right: 40px;
}

/* Styles pour la section contact */
.contact-form-section .newsletter-card {
  border-radius: 12px;
  overflow: hidden;
}

.contact-info {
  color: #333;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-form-container {
  background-color: #fff;
}

.contact-form fieldset {
  border: none;
  padding: 0;
}

.contact-form legend {
  width: auto;
  margin-bottom: 1rem;
}

.contact-form .newsletter-field textarea {
  min-height: 120px;
  resize: vertical;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
}

/* Styles pour les icônes de contact */
.contact-item .contact-icon {
  color: #333;
}

/* Animation au survol des éléments du formulaire */
.contact-form .newsletter-field input:focus,
.contact-form .newsletter-field textarea:focus {
  border-color: var(--secondary);
}

.contact-form .newsletter-field input:focus + label,
.contact-form .newsletter-field textarea:focus + label {
  color: var(--secondary);
}

/* =========================
    Laureats SECTION
========================= */
.prix-tremolieres-section {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.critere-card {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.critere-item {
  display: flex;
  margin-bottom: 15px;
}

.critere-item:last-child {
  margin-bottom: 0;
}

.critere-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.critere-item p {
  margin-bottom: 0;
  font-size: var(--font-size-md);
}

.critere-note {
  display: flex;
  padding: 15px;
  background-color: rgba(251, 216, 114, 0.2);
  border-radius: 10px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.critere-note i {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.critere-note p {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.calendrier-card {
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.calendrier-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.calendrier-card img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-right: 20px;
  border-radius: 5px;
}

.calendrier-card h3 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.calendrier-card p {
  color: var(--dark);
  font-size: var(--font-size-md);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .calendrier-card {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .critere-item,
  .critere-note {
    flex-direction: column;
  }

  .critere-item i,
  .critere-note i {
    margin-bottom: 10px;
  }

  .btn-reglement {
    padding: 12px 15px;
  }
}

#rechercher-un-prix {
  scroll-margin-top: 70px;
}

.min-vh-30 {
  min-height: 30vh;
}

.min-vh-40 {
    min-height: 40vh;
}

.text-coral {
  color: var(--coral);
}
