/*  Base : rÃ©initialisation et variables  */

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

:root {
  --primary: #70c500;
  --primary-dark: #55a500;
  --primary-light: #efffdc;

  --dark: #121713;
  --text: #202420;
  --text-light: #667066;

  --white: #ffffff;
  --light: #f8faf7;
  --border: #dce5d8;

  --yellow: #f3b536;

  --shadow-small: 0 8px 25px rgba(18, 23, 19, 0.08);
  --shadow-medium: 0 20px 45px rgba(18, 23, 19, 0.13);

  --container-width: 1180px;

  /* couleurs système */

    --body-bg: var(--white);
    --section-bg: var(--light);
    --card-bg: var(--white);

    --heading-color: var(--dark);

    --border-color: var(--border);

}



/* ==================================================
   MODE SOMBRE
================================================== */

body.dark-mode {


    --primary: #8be51c;
    --primary-dark: #70c500;
    --primary-light: #1c3310;


    --dark:#1c3310 ;

    --text:
        #d6dad4;

    --text-light:
        rgb(226, 226, 226);


    --white:
        white;


    --light:
        #0f130f;


    --border:
        #293229;


    --yellow:
        #ffc94d;



    --body-bg:
        #0c100c;


    --section-bg:
        #111611;


    --card-bg:
        #161b16;


    --heading-color:
        #ffffff;



    --shadow-small:
        0 8px 25px rgba(0,0,0,.35);


    --shadow-medium:
        0 20px 45px rgba(0,0,0,.45);

}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(112, 197, 0, 0.55);
  outline-offset: 3px;
}
/*  En-tÃªte et navigation  */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 9vh;
  padding: 15px 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.logo {
  height: 100%;
  border: none;
}
.logo a{
  border: none;
}

.logo img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border: none;

}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.25s ease;
}

.nav-link i {
  font-size: 10px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-dropdown,.nav-dropdown-call {
  position: relative;
}

.dropdown-menu,.dropdown-menu-call {
  position: absolute;
  top: calc(100% + 15px);
  left:50%;
  width: 230px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-small);
  background-color: var(--white);
  opacity: 0;
  transform: translate(-50%, 15px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  visibility: hidden;
}
/* .dropdown-menu-call {
  position: absolute;
  top: calc(100% + 15px);
  left:100%;
  width: 230px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-small);
  background-color: var(--white);
  opacity: 0;
  transform: translate(-50%, 15px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  visibility: hidden;
} */

.dropdown-menu::before,.dropdown-menu-call::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 22px;
}

.dropdown-menu a,.dropdown-menu-call a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.dropdown-menu a:hover,.dropdown-menu-call a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
.nav-dropdown-call:hover .dropdown-menu-call,
.nav-dropdown-call:focus-within .dropdown-menu-call {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.round-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 17px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.search-btn {
  background-color: #e3f5e8;
  color: var(--dark);
}

.theme-btn {
  background-color: var(--dark);
  color: var(--white);
}

.round-btn:hover {
  transform: translateY(-3px);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 16px;
  background-color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.contact-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--dark);
  font-size: 20px;
  color: var(--white);
}
/*  Section Hero  */
.hero {
  position: relative;
  overflow: visible;
  background: var(--white);
}

.hero-container {
  display: flex;
  width: 100%;
  height: 90vh;
}

.hero-left {
  position: relative;
  z-index: 3;
  overflow: visible;
  width: 38%;
  height: 100%;
  padding: 70px 0 0 85px;
}

.hero-label {
  display: inline-flex;
  margin-bottom: 35px;
  padding: 10px 70px;
  border: 1.5px solid var(--dark);
  border-radius: 999px;
  background-color: var(--border);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text);
}

.hero-left h1 {
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -2px;
  color: var(--dark);
}

.hero-left h1 span {
  color: var(--primary);
}

.hero-description {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.45;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-4px);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 62%;
  height: 100%;
}

/* .hero-right img {
  z-index: 2;
  width: 62%;
  height: 100%;
  object-fit: cover;
} */
.hero-right .img {
  z-index: 2;
  width: 62%;
  height: 100%;
  background-color: #fff;
}

/*  Section Ã‰vÃ©nements  */

.events {
  position: relative;
  overflow: hidden;
  padding: 20px 5%;
  background: var(--white);
}

.events::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(112, 197, 0, 0.07);
  pointer-events: none;
}

.events-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1350px);
  margin: 0 auto;
}

.events-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 40px;
}

.events-heading-content {
  max-width: 680px;
}

.events-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--primary-dark);
}

.events-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(112, 197, 0, 0.12);
  background: var(--primary);
}

.events-heading h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  color: var(--dark);
}

.events-heading h2 span {
  color: var(--primary-dark);
}

.events-heading p {
  max-width: 610px;
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.events-controls {
  display: flex;
  gap: 10px;
}

.event-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  font-size: 14px;
  color: var(--dark);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}

.event-button:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.events-slider {
  overflow: hidden;
  width: 100%;
}

.events-track {
  display: flex;
  gap: 20px;
  padding: 0 10px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.event-card {
  overflow: hidden;
  min-width: calc((100% - 48px) / 3);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.event-card:hover {
  border-color: rgba(112, 197, 0, 0.5);
  transform: translateY(-8px);
}

.event-image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 330px;
  background: var(--light);
}

.event-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(18, 23, 19, 0.42), transparent);
  pointer-events: none;
}

.event-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.045);
}

.event-status {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  padding: 9px 13px;
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(18, 23, 19, 0.12);
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--dark);
  backdrop-filter: blur(8px);
}

.event-content {
  padding: 23px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  margin-bottom: 14px;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-light);
}

.event-meta i {
  color: var(--primary-dark);
}

.event-content h3 {
  font-size: 19px;
  line-height: 1.3;
  color: var(--dark);
}

.event-content > p {
  min-height: 61px;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-light);
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.event-link i {
  color: var(--primary-dark);
}

.event-link:hover {
  gap: 15px;
  color: var(--primary-dark);
}

.events-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.event-dot {
  /* position: relative necessaire pour la surface de frappe ci-dessous */
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #ccd5c8;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
  cursor: pointer;
}

/* Surface de frappe de 44px sans agrandir le point visible.
   Meme procede que .tvs-dot : le point mesurait 8x8, tres en dessous
   du minimum recommande pour une cible tactile. L apparence ne change
   pas, seule la zone cliquable s elargit. */
.event-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 16px);
  height: 44px;
  transform: translate(-50%, -50%);
}

.event-dot.active {
  width: 28px;
  background: var(--primary-dark);
}

.events-footer {
  margin-top: 25px;
  text-align: center;
}

.events-all-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--dark);
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.events-all-link:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* stars */
.event-meta {
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-meta .fa-star {
    color: #f5b301;
    font-size: 14px;
}

.event-meta span {
    margin-left: 5px;
    font-size: 15px;
}

/*  Responsive : ajustements par largeur d'Ã©cran  */

@media (max-width: 1000px) {
  .event-card {
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 650px) {
  .events {
    padding: 75px 20px;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .events-controls {
    align-self: flex-end;
  }

  .event-card {
    min-width: 100%;
  }

  .event-image {
    height: 390px;
  }
}

@media (max-width: 430px) {
  .events {
    padding-inline: 15px;
  }

  .event-image {
    height: 340px;
  }

  .event-card {
    border-radius: 21px;
  }
}





/* ==================================================
   SECTION ÉVÉNEMENTS - VIDÉO ET INFORMATIONS
================================================== */

.bim-even {
  padding: 90px 20px;
  background: radial-gradient(
    circle at 83% 52%,
    rgba(112, 197, 0, 0.16),
    transparent 28%
  );
}

.bim-even-container {
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* En-tête */

.bim-even-header {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.bim-even-header > span {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bim-even-header h2 {
  margin: 12px 0;
  color: var(--dark);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
}

.bim-even-header h2 strong {
  color: var(--primary-dark);
}

.bim-even-header p {
  margin: 0;
  color: var(--dark);
  line-height: 1.7;
}

/* Mise en page principale */

.bim-even-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
  align-items: stretch;
  gap: 35px;
}

/* Vidéo */

.bim-even-video {
  overflow: hidden;
  min-height: 500px;
  border-radius: 20px;
  background: #042a41;
  box-shadow: 0 15px 40px rgba(4, 42, 65, 0.15);
}

.bim-even-video video {
  display: block;
  width: 100%;
  height: 100%;
  /* Vidéo entière, sans rognage (voir .testimonial-video). */
  object-fit: contain;
}

/* Liste des informations */

.bim-even-infos {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bim-even-info-card {
  display: flex;
  flex: 1;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--text-light);
  border-radius: 16px;
  background: var(--light);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bim-even-info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(4, 42, 65, 0.1);
}

.bim-even-info-icon {
  display: flex;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 20px;
}

.bim-even-info-content {
  flex: 1;
  min-width: 0;
}

.bim-even-info-content .bim-even-type {
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bim-even-info-content h3 {
  margin: 6px 0 8px;
  color: var(--primary-dark);
  font-size: 20px;
  line-height: 1.35;
}

.bim-even-info-content time {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 13px;
}

.bim-even-info-content time i {
  color: var(--primary);
}

.bim-even-info-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

.bim-even-empty {
  padding: 30px;
  border-radius: 15px;
  background: var(--light);
  color: var(--text-light);
  text-align: center;
}

/* Tablette */

@media (max-width: 900px) {
  .bim-even-layout {
    grid-template-columns: 1fr;
  }

  .bim-even-video {
    min-height: 400px;
  }

  .bim-even-info-card {
    flex: initial;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .bim-even {
    padding: 60px 15px;
  }

  .bim-even-header {
    margin-bottom: 35px;
  }

  .bim-even-video {
    min-height: 250px;
  }

  .bim-even-info-card {
    gap: 14px;
    padding: 18px;
  }

  .bim-even-info-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .bim-even-info-content h3 {
    font-size: 18px;
  }
}


/*  Section PrÃ©sentation  */

.about-details {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  padding: clamp(35px, 5vh, 70px) clamp(25px, 6vw, 110px);
  background-color: var(--white);
}

@supports (height: 100svh) {
  .about-details {
    height: 100svh;
  }
}

.about-container {
  display: grid;
  grid-template-columns: minmax(320px, 32%) minmax(650px, 68%);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  width: min(100%, 1600px);
  height: 100%;
  margin-inline: auto;
}

.about-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 480px;
}

.small-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.small-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary);
}

.about-content h2 {
  margin: 0;
  font-size: clamp(38px, 3.5vw, 62px);
  line-height: 1.04;
  color: var(--dark);
}

.about-content h2 span {
  display: block;
  color: var(--primary-dark);
}

.about-content p {
  max-width: 470px;
  margin-top: clamp(18px, 2.5vh, 28px);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  color: var(--text-light);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  margin-top: clamp(20px, 3vh, 30px);
  padding: 10px 14px 10px 22px;
  border-radius: 999px;
  background-color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
}

.about-link i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--dark);
}

.about-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-4px);
}

.about-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  isolation: isolate;
}

.about-visual::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  content: "";
  width: 80%;
  height: 55%;
  border-radius: 50%;
  background-color: rgba(91, 180, 45, 0.13);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.about-main-image {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: min(78%, 760px);
  max-height: 75vh;
  object-fit: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.about-feature {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  width: clamp(210px, 16vw, 280px);
  min-height: clamp(85px, 10vh, 105px);
  padding: clamp(13px, 1.5vw, 18px);
  border: 1px solid rgba(84, 167, 40, 0.14);
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(30, 75, 40, 0.09);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.about-feature:hover {
  border-color: var(--primary);
  box-shadow: 0 19px 42px rgba(30, 75, 40, 0.15);
}

.about-feature--trainers {
  top: 15%;
  left: 0;
}

.about-feature--certificate {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-feature--practice {
  top: 15%;
  right: 0;
}

.about-feature--employment {
  bottom: 15%;
  left: 0;
}

.about-feature--quality {
  right: 0;
  bottom: 15%;
}

.about-feature--environment {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-feature--certificate:hover,
.about-feature--environment:hover {
  transform: translateX(-50%) translateY(-6px);
}

.about-feature--trainers:hover,
.about-feature--practice:hover,
.about-feature--employment:hover,
.about-feature--quality:hover {
  transform: translateY(-6px);
}

.about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(84, 167, 40, 0.25);
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  font-size: 23px;
  color: var(--white);
}

.about-feature-icon--stars {
  gap: 2px;
  font-size: 12px;
  color: var(--yellow);
}

.about-feature-content {
  flex: 1;
}

.about-feature-content h3 {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.25;
  color: var(--dark);
}

.about-feature-content p {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-light);
}

@media screen and (max-width: 1250px) {
  .about-container {
    grid-template-columns: 35% 65%;
    gap: 15px;
    width: 94%;
  }

  .about-content h2 {
    font-size: 44px;
  }

  .about-visual {
    min-height: 620px;
  }

  .about-feature {
    width: 225px;
  }

  .about-main-image {
    width: 68%;
  }
}

@media screen and (max-width: 1000px) {
  .about-details {
    padding: 70px 25px;
  }

  .about-container {
    display: block;
    width: 100%;
    min-height: auto;
  }

  .about-content {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
  }

  .small-title {
    justify-content: center;
  }

  .about-content h2 span {
    display: inline;
  }

  .about-content p {
    max-width: 550px;
    margin-inline: auto;
  }

  .about-link {
    margin-inline: auto;
  }

  .about-visual {
    max-width: 850px;
    min-height: 650px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 760px) {
  .about-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    min-height: auto;
  }

  .about-main-image {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(100%, 620px);
    margin: -65px auto;
    transform: none;
  }

  .about-feature {
    position: static;
    width: 100%;
    min-height: 105px;
    transform: none;
  }

  .about-feature:hover,
  .about-feature--certificate:hover,
  .about-feature--environment:hover {
    transform: translateY(-5px);
  }

  .about-feature--trainers,
  .about-feature--certificate {
    grid-row: 1;
  }
}

@media screen and (max-width: 560px) {
  .about-details {
    padding: 60px 16px 40px;
  }

  .about-content {
    margin-bottom: 30px;
  }

  .about-content h2 {
    font-size: 37px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-visual {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .about-main-image {
    order: -1;
    width: 125%;
    max-width: none;
    margin: -75px -12.5% -85px;
  }

  .about-feature {
    min-height: 95px;
    padding: 14px;
    border-radius: 17px;
  }

  .about-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    font-size: 21px;
  }

  .about-feature-content h3 {
    font-size: 14px;
  }

  .about-feature-content p {
    font-size: 11px;
  }
}

/*  Section Contact  */

.contact-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 120vh;
  background: radial-gradient(
    circle at 83% 52%,
    rgba(112, 197, 0, 0.16),
    transparent 28%
  );
  isolation: isolate;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
}

.contact-section::before {
  top: -150px;
  left: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(112, 197, 0, 0.2);
}

.contact-section::after {
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background-color: rgba(18, 23, 19, 0.04);
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
}

.contact-heading > span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary);
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  color: var(--dark);
}

.contact-heading h2 strong {
  display: block;
  color: var(--primary-dark);
}

.contact-heading p {
  max-width: 590px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
}

.contact-container {
  display: flex;
  width: 100%;
  max-height: 90vh;
  padding: 0 50px;
  background: linear-gradient(
    155deg,
    rgba(18, 23, 19, 0.98),
    rgba(30, 46, 31, 0.96)
  );
}

.contact-info-card,
.contact-showcase {
  position: relative;
  box-shadow: var(--shadow-medium);
}

.contact-info-card {
  width: 70%;
  max-height: 90vh;
  padding: 20px 50px;
  color: var(--white);
}

.contact-info-intro h3 {
  margin-top: 9px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--white);
}

.contact-info-intro p {
  max-width: 440px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.67);
}

.contact-info-list {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 13px;
  margin-top: 35px;
  font-style: normal;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

a.contact-item:hover {
  border-color: rgba(112, 197, 0, 0.55);
  background-color: rgba(112, 197, 0, 0.09);
  transform: translateX(5px);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background-color: var(--primary);
  font-size: 18px;
  color: var(--dark);
}

.contact-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-item small {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--white);
}

.contact-item > i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
}

.contact-showcase {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-width: 30%;
  padding: 5px;
  margin: auto;
  border-radius: clamp(28px, 3vw, 42px);
  box-shadow: var(--shadow-medium);
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1300px;
  touch-action: pan-y;
}

.phone-glow {
  position: absolute;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(112, 197, 0, 0.35),
    rgba(112, 197, 0, 0.08) 55%,
    transparent 72%
  );
  filter: blur(20px);
}

.phone-device {
  --phone-rx: 0deg;
  --phone-ry: -5deg;

  position: relative;
  z-index: 3;
  width: 285px;
  aspect-ratio: 9 / 19;
  padding: 10px;
  border: 1px solid #646b66;
  border-radius: 51px;
  box-shadow:
    -8px 5px 0 #080a08,
    -17px 15px 30px rgba(18, 23, 19, 0.22),
    0 35px 55px rgba(18, 23, 19, 0.3),
    inset 2px 0 3px rgba(255, 255, 255, 0.32),
    inset -2px 0 3px rgba(0, 0, 0, 0.8);
  background: linear-gradient(
    115deg,
    #161a17 0%,
    #555c57 14%,
    #111411 27%,
    #3c423e 50%,
    #0b0d0b 78%,
    #59605b 100%
  );
  transform-style: preserve-3d;
  transform: rotateX(var(--phone-rx)) rotateY(var(--phone-ry)) translateZ(0);
  transition:
    transform 120ms ease-out,
    box-shadow 0.25s ease;
  will-change: transform;
}

.phone-device:hover {
  box-shadow:
    -10px 7px 0 #080a08,
    -22px 18px 35px rgba(18, 23, 19, 0.25),
    0 42px 65px rgba(18, 23, 19, 0.34),
    inset 2px 0 3px rgba(255, 255, 255, 0.32),
    inset -2px 0 3px rgba(0, 0, 0, 0.8);
}

.phone-device::before {
  position: absolute;
  z-index: 8;
  top: 38px;
  left: 3px;
  content: "";
  width: 3px;
  height: calc(100% - 76px);
  border-radius: 20px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  pointer-events: none;
}

.phone-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  /* padding: 7px; */
  border: 2px solid #050705;
  border-radius: 41px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.06),
    inset 0 0 14px rgba(0, 0, 0, 0.8);
  background-color: #080b08;
}

.phone-screen {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background-color: #050805;
}

/* ==================================================
   INTERFACE À L’INTÉRIEUR DU TÉLÉPHONE
================================================== */

.phone-screen {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background-color: #ffffff;
}

.phone-app {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

/* Header fixe dans l’écran */

.phone-app-header {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  height: 62px;
  padding: 28px 15px 9px;

  border-bottom: 1px solid rgba(18, 23, 19, 0.08);
  background-color: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.phone-app-logo {
  display: flex;
  align-items: center;
  width: 95px;
  height: 26px;
}

.phone-app-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.phone-menu-button {
  display: grid;
  place-items: center;

  width: 23px;
  height: 23px;
  padding: 0;

  border: none;
  border-radius: 7px;
  background-color: var(--primary-light);

  font-size: 10px;
  color: var(--primary-dark);
}

/* Zone centrale contenant le GIF */

.phone-site-preview {
  position: absolute;
  z-index: 1;
  top: 62px;
  right: 0;
  bottom: 57px;
  left: 0;

  overflow: hidden;
  background-color: #f5f7f3;
}

/* ==================================================
   APERÇU DU SITE DANS LE TÉLÉPHONE
================================================== */

.phone-site-preview {
  position: absolute;
  z-index: 1;
  top: 62px;
  right: 0;
  bottom: 57px;
  left: 0;

  overflow: hidden;
  background-color: #ffffff;
}

.phone-scroll-track {
  display: flex;
  flex-direction: column;
  width: 100%;

  animation: phone-site-scroll 28s linear infinite;
  will-change: transform;
}

.phone-preview-page {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  color: #202420;
}

/* Arrête le défilement au survol */

.phone-site-preview:hover .phone-scroll-track {
  animation-play-state: paused;
}

/* Hero */

.phone-preview-hero {
  min-height: 275px;
  padding: 42px 18px 25px;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(112, 197, 0, 0.25),
      transparent 35%
    ),
    linear-gradient(145deg, #efffdc, #ffffff);
}

.phone-preview-label,
.phone-preview-kicker {
  display: inline-block;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #55a500;
}

.phone-preview-hero h2 {
  max-width: 180px;
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.05;
  color: #121713;
}

.phone-preview-hero p {
  max-width: 190px;
  margin-top: 12px;
  font-size: 9px;
  line-height: 1.6;
  color: #667066;
}

.phone-preview-button,
.phone-preview-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 16px;
  padding: 9px 13px;

  border-radius: 999px;
  background-color: #70c500;

  font-size: 7px;
  font-weight: 800;
  color: #ffffff;
}

/* Image principale */

.phone-preview-cover {
  height: 175px;
  overflow: hidden;
}

.phone-preview-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections générales */

.phone-preview-section {
  padding: 28px 16px;
  background-color: #ffffff;
}

.phone-preview-section--light {
  background-color: #f5f8f2;
}

.phone-preview-section h3 {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.2;
  color: #121713;
}

.phone-preview-section > p {
  margin-top: 8px;
  font-size: 8px;
  line-height: 1.6;
  color: #667066;
}

/* Statistiques */

.phone-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 17px;
}

.phone-preview-stats div {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px 4px;
  border-radius: 9px;
  background-color: #efffdc;
}

.phone-preview-stats strong {
  font-size: 12px;
  color: #55a500;
}

.phone-preview-stats span {
  margin-top: 2px;
  font-size: 6px;
  color: #667066;
}

/* Cartes des formations */

.phone-preview-course {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;

  margin-top: 13px;
  padding: 8px;

  border: 1px solid #dce5d8;
  border-radius: 12px;
  background-color: #ffffff;
}

.phone-preview-course img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.phone-preview-course div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.phone-preview-course span {
  font-size: 6px;
  font-weight: 800;
  text-transform: uppercase;
  color: #55a500;
}

.phone-preview-course h4 {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.2;
  color: #121713;
}

.phone-preview-course p {
  margin-top: 4px;
  font-size: 7px;
  line-height: 1.4;
  color: #667066;
}

/* Avantages */

.phone-preview-benefits {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.phone-preview-benefits div {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px;
  border-radius: 9px;
  background-color: #f5f8f2;

  font-size: 8px;
  font-weight: 700;
  color: #202420;
}

.phone-preview-benefits i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;

  border-radius: 7px;
  background-color: #70c500;
  color: #ffffff;
}

/* Contact */

.phone-preview-contact {
  padding: 35px 18px 45px;
  background: linear-gradient(145deg, #121713, #243425);
  text-align: center;
  color: #ffffff;
}

.phone-preview-contact > span:first-child {
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #70c500;
}

.phone-preview-contact h3 {
  margin-top: 7px;
  font-size: 18px;
  color: #ffffff;
}

.phone-preview-contact p {
  margin-top: 8px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.65);
}

/* Défilement infini */

@keyframes phone-site-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-scroll-track {
    animation: none;
  }
}

/* Footer fixe dans l’écran */

.phone-app-footer {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;

  height: 57px;
  padding: 8px 14px 15px;

  border-top: 1px solid rgba(18, 23, 19, 0.08);
  background-color: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.phone-footer-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;

  font-size: 7px;
  font-weight: 700;
  color: #7c847d;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.phone-footer-link i {
  font-size: 11px;
}

.phone-footer-link:hover,
.phone-footer-link.is-active {
  color: var(--primary-dark);
}

.phone-footer-link:hover {
  transform: translateY(-1px);
}

.phone-screen-shine {
  position: absolute;
  z-index: 12;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.14),
    transparent 24%,
    transparent 72%,
    rgba(255, 255, 255, 0.04)
  );

  pointer-events: none;
}

.phone-screen-shine {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.18),
    transparent 24%,
    transparent 72%,
    rgba(255, 255, 255, 0.05)
  );
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  z-index: 10;
  top: 7px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 110px;
  height: 28px;
  border-radius: 0 0 17px 17px;
  background-color: #050705;
  transform: translateX(-50%);
}

.phone-speaker {
  width: 38px;
  height: 4px;
  border-radius: 10px;
  background-color: #303632;
}

.phone-camera {
  width: 7px;
  height: 7px;
  border: 2px solid #1b2420;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(112, 197, 0, 0.22);
  background-color: #07180f;
}

.phone-home-bar {
  position: absolute;
  z-index: 10;
  bottom: 14px;
  left: 50%;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.85);
  transform: translateX(-50%);
}

.phone-button {
  position: absolute;
  z-index: -1;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to bottom, #555c57, #101310);
}

.phone-button--volume {
  top: 120px;
  left: -6px;
  height: 75px;
}

.phone-button--power {
  top: 145px;
  right: -6px;
  height: 90px;
  border-radius: 0 3px 3px 0;
}

@media screen and (max-width: 1000px) {
  .contact-showcase {
    width: 100%;
    max-width: 720px;
    min-height: 680px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 600px) {
  .contact-showcase {
    min-height: 640px;
    padding: 22px 15px;
    border-radius: 28px;
  }

  .phone-stage {
    width: 100%;
    height: 490px;
  }

  .phone-device {
    width: 235px;
    border-radius: 43px;
  }

  .phone-shell {
    border-radius: 35px;
  }

  .phone-screen {
    border-radius: 29px;
  }

  .phone-notch {
    width: 95px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-device,
  .phone-slide {
    transition: none;
  }
}

/*  Section Temoignages  */
/* ==========================================================
   SECTION TÉMOIGNAGES
========================================================== */

.testimonials {
  position: relative;
  overflow: hidden;

  padding: 100px 30px;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(112, 197, 0, 0.11),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(112, 197, 0, 0.08),
      transparent 25%
    ),
    var(--section-bg);
}


/* Décor */

.testimonials::before,
.testimonials::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.testimonials::before {

  top: 60px;
  right: 5%;

  width: 130px;
  height: 130px;

  border: 1px solid rgba(112, 197, 0, 0.18);
}

.testimonials::after {

  bottom: 50px;
  left: 3%;

  width: 70px;
  height: 70px;

  background: rgba(112, 197, 0, 0.08);
}


/* ==========================================================
   CONTAINER
========================================================== */

.testimonials-container {

  position: relative;

  z-index: 1;

  width: min(100%, 1350px);

  margin: 0 auto;
}


/* ==========================================================
   EN-TÊTE
========================================================== */

.testimonials-heading {

  max-width: 680px;

  margin: 0 auto 55px;

  text-align: center;
}


.testimonials-label {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 14px;

  font-size: 13px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.4px;

  color: var(--primary-dark);
}


.testimonials-label::before {

  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  box-shadow:
    0 0 0 6px rgba(112, 197, 0, 0.12);

  background: var(--primary);
}


.testimonials-heading h2 {

  margin: 0;

  font-size: clamp(32px, 4vw, 52px);

  line-height: 1.08;

  color: var(--heading-color);
}


.testimonials-heading h2 span {

  color: var(--primary-dark);
}


.testimonials-heading > p {

  max-width: 570px;

  margin: 18px auto 0;

  font-size: 15px;

  line-height: 1.7;

  color: var(--text-light);
}


/* ==========================================================
   LAYOUT VIDÉO + CAPTURE
========================================================== */

.testimonials-media-layout {

  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(350px, 0.75fr);

  align-items: start;

  gap: 35px;
}


/* ==========================================================
   COLONNE VIDÉO
========================================================== */

.testimonial-video-column {

  min-width: 0;
}


/* ==========================================================
   TITRES DES BLOCS
========================================================== */

.testimonial-media-heading {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 18px;
}


.testimonial-media-label {

  display: block;

  margin-bottom: 6px;

  font-size: 11px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1px;

  color: var(--primary-dark);
}


.testimonial-media-heading h3 {

  margin: 0;

  font-size: clamp(21px, 2.3vw, 29px);

  line-height: 1.2;

  color: var(--heading-color);
}


/* Badge */

.testimonial-media-badge {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  flex-shrink: 0;

  padding: 9px 14px;

  border: 1px solid var(--border);

  border-radius: 999px;

  background: var(--card-bg);

  color: var(--text-light);

  font-size: 11px;

  font-weight: 700;

  box-shadow: var(--shadow-small);
}


.testimonial-media-badge i {

  color: var(--primary);
}


.testimonial-media-badge.capture i {

  color: var(--primary-dark);
}


/* ==========================================================
   GRAND VIDÉO
========================================================== */

.testimonial-video-card {

  position: relative;

  overflow: hidden;

  width: 100%;

  aspect-ratio: 16 / 9;

  border: 1px solid var(--border);

  border-radius: 25px;

  background: #080b08;

  box-shadow: var(--shadow-medium);
}


.testimonial-video {

  display: block;

  width: 100%;
  height: 100%;

  /* « contain » et non « cover » : la vidéo est montrée ENTIÈRE.
     « cover » remplissait le cadre en rognant les bords, ce qui coupait
     le texte des vidéos portrait. Le fond sombre habille les bandes. */
  object-fit: contain;

  background: #080b08;
}


/* ==========================================================
   INFORMATIONS VIDÉO
========================================================== */

.testimonial-video-info {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 15px;

  padding: 14px 16px;

  border: 1px solid var(--border);

  border-radius: 16px;

  background: var(--card-bg);
}


.testimonial-video-avatar {

  display: grid;

  place-items: center;

  flex: 0 0 43px;

  width: 43px;
  height: 43px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--primary),
      var(--primary-dark)
    );

  color: var(--white);

  box-shadow:
    0 7px 18px rgba(85, 165, 0, 0.25);
}


.testimonial-video-info > div:last-child {

  display: flex;

  flex-direction: column;

  gap: 3px;
}


.testimonial-video-info strong {

  font-size: 14px;

  color: var(--heading-color);
}


.testimonial-video-info span {

  font-size: 11px;

  color: var(--text-light);
}


/* ==========================================================
   LISTE DES VIDÉOS
========================================================== */

.testimonial-video-list {

  margin-top: 25px;
}


.testimonial-video-list-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 13px;
}


.testimonial-video-list-header h4 {

  margin: 0 0 3px;

  font-size: 15px;

  color: var(--heading-color);
}


.testimonial-video-list-header span {

  font-size: 11px;

  color: var(--text-light);
}


/* ==========================================================
   3 PETITES VIDÉOS
========================================================== */

.testimonial-video-items {

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}


/* Petite carte */

.testimonial-video-item {

  display: flex;

  flex-direction: column;

  width: 100%;

  min-width: 0;

  padding: 0;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 17px;

  background: var(--card-bg);

  text-align: left;

  font-family: inherit;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.testimonial-video-item:hover {

  transform: translateY(-4px);

  border-color: rgba(112, 197, 0, 0.55);

  box-shadow: var(--shadow-small);
}


/* Carte active */

.testimonial-video-item.active {

  border: 2px solid var(--primary);

  box-shadow:
    0 8px 25px rgba(112, 197, 0, 0.18);
}


/* ==========================================================
   MINIATURE
========================================================== */

.testimonial-video-thumbnail {

  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: var(--dark);
}


.testimonial-video-thumbnail img {

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}


.testimonial-video-item:hover
.testimonial-video-thumbnail img {

  transform: scale(1.06);

  filter: brightness(0.85);
}


/* ==========================================================
   ICÔNE PLAY
========================================================== */

.testimonial-thumbnail-play {

  position: absolute;

  top: 50%;
  left: 50%;

  display: grid;

  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: var(--primary);

  color: var(--dark);

  transform: translate(-50%, -50%);

  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}


.testimonial-video-item:hover
.testimonial-thumbnail-play {

  transform:
    translate(-50%, -50%)
    scale(1.1);
}


.testimonial-video-item.active
.testimonial-thumbnail-play {

  background: var(--primary-dark);

  color: var(--white);
}


/* ==========================================================
   TEXTE DES PETITES VIDÉOS
========================================================== */

.testimonial-video-item-content {

  display: flex;

  flex-direction: column;

  gap: 4px;

  min-height: 65px;

  padding: 11px 12px;

  justify-content: center;
}


.testimonial-video-item-content strong {

  display: -webkit-box;

  overflow: hidden;

  font-size: 12px;

  line-height: 1.4;

  color: var(--heading-color);

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;
}


.testimonial-video-item-content span {

  font-size: 10px;

  color: var(--text-light);
}


/* ==========================================================
   COLONNE CAPTURE
========================================================== */

.testimonial-capture-column {

  min-width: 0;

  position: sticky;

  top: 100px;
}


/* ==========================================================
   CARTE CAPTURE
========================================================== */

.testimonial-capture-card {

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 25px;

  background: var(--card-bg);

  box-shadow: var(--shadow-medium);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.testimonial-capture-card:hover {

  transform: translateY(-5px);

  box-shadow:
    0 25px 55px rgba(18, 23, 19, 0.16);
}


/* ==========================================================
   IMAGE CAPTURE
========================================================== */

.testimonial-capture-image {

  position: relative;

  width: 100%;

  overflow: hidden;

  background: var(--dark);
}


.testimonial-capture-image::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 65%,
      rgba(0, 0, 0, 0.18)
    );

  pointer-events: none;
}


.testimonial-capture-image img {

  display: block;

  width: 100%;

  height: auto;

  min-height: 350px;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}


.testimonial-capture-card:hover
.testimonial-capture-image img {

  transform: scale(1.025);
}


/* ==========================================================
   DESCRIPTION CAPTURE
========================================================== */

.testimonial-capture-content {

  display: flex;

  align-items: flex-start;

  gap: 13px;

  padding: 20px;
}


.testimonial-capture-icon {

  display: grid;

  place-items: center;

  flex: 0 0 43px;

  width: 43px;
  height: 43px;

  border-radius: 13px;

  background: var(--primary-light);

  color: var(--primary-dark);

  font-size: 16px;
}


.testimonial-capture-content strong {

  display: block;

  margin-bottom: 5px;

  font-size: 14px;

  line-height: 1.4;

  color: var(--heading-color);
}


.testimonial-capture-content p {

  margin: 0;

  font-size: 12px;

  line-height: 1.6;

  color: var(--text-light);
}


/* ==========================================================
   MODE SOMBRE
========================================================== */

body.dark-mode .testimonial-video-card {

  border-color: var(--border);

  background: #050705;
}


body.dark-mode .testimonial-video-item {

  background: var(--card-bg);
}


body.dark-mode .testimonial-capture-card {

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35);
}


body.dark-mode .testimonial-capture-image {

  background: #080b08;
}


body.dark-mode .testimonial-media-badge {

  background: var(--card-bg);
}


/* ==========================================================
   TABLETTE
========================================================== */

@media (max-width: 1279px) {

  .testimonials-media-layout {

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .testimonial-capture-column {

    position: relative;

    top: auto;

    width: min(100%, 800px);

    margin: 0 auto;
  }


  .testimonial-capture-image img {

    max-height: 500px;

    object-fit: cover;
  }

}


/* ==========================================================
   TABLETTE PETITE
========================================================== */

@media (max-width: 700px) {

  .testimonials {

    padding: 75px 20px;
  }


  .testimonials-heading {

    margin-bottom: 40px;
  }


  .testimonial-media-heading {

    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }


  .testimonial-media-badge {

    align-self: flex-start;
  }


  .testimonial-video-items {

    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 10px;
  }


  .testimonial-video-item-content {

    padding: 9px;
  }


  .testimonial-video-item-content strong {

    font-size: 11px;
  }


  .testimonial-video-item-content span {

    font-size: 9px;
  }


  .testimonial-thumbnail-play {

    width: 32px;
    height: 32px;

    font-size: 11px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 520px) {

  .testimonials {

    padding:
      65px 15px;
  }


  .testimonials-heading h2 {

    font-size: 31px;
  }


  .testimonials-heading > p {

    font-size: 14px;
  }


  .testimonial-video-card {

    border-radius: 18px;
  }


  .testimonial-video-info {

    padding: 12px;

    border-radius: 14px;
  }


  .testimonial-video-items {

    grid-template-columns: 1fr;

    gap: 10px;
  }


  .testimonial-video-item {

    display: grid;

    grid-template-columns: 125px minmax(0, 1fr);

    align-items: stretch;

    border-radius: 14px;
  }


  .testimonial-video-thumbnail {

    height: 100%;

    aspect-ratio: auto;

    min-height: 80px;
  }


  .testimonial-video-item-content {

    min-height: 80px;

    padding: 10px 12px;
  }


  .testimonial-thumbnail-play {

    width: 32px;
    height: 32px;
  }


  .testimonial-capture-card {

    border-radius: 19px;
  }


  .testimonial-capture-image img {

    min-height: 250px;
  }


  .testimonial-capture-content {

    padding: 16px;
  }

}


/* ==========================================================
   TRÈS PETIT ÉCRAN
========================================================== */

@media (max-width: 380px) {

  .testimonial-video-item {

    grid-template-columns: 105px minmax(0, 1fr);
  }


  .testimonial-video-item-content strong {

    font-size: 10px;
  }

}























































/*  Pied de page  */

.footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(
    155deg,
    rgba(18, 23, 19, 0.98),
    rgba(30, 46, 31, 0.96)
  );
  color: var(--white);
  isolation: isolate;
}

.footer-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.footer-decoration--one {
  top: -180px;
  left: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(112, 197, 0, 0.2);
}

.footer-decoration--two {
  right: -160px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(112, 197, 0, 0.12), transparent 70%);
}

.footer-container {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.35fr)
    minmax(140px, 0.75fr)
    minmax(190px, 1fr)
    minmax(230px, 2fr);
  align-items: start;
  gap: clamp(30px, 3vw, 50px);
  width: min(90%, 1400px);
  margin-inline: auto;
  padding: clamp(65px, 7vw, 100px) 0 55px;
}

.footer-column {
  min-width: 0;
}
.logofooterContain{
  width: 100%;
}
.logofooterContain img{
  width: 30%;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 13px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
}

.footer-column h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 20px;
  background-color: var(--primary);
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  margin-bottom: 22px;
}

.footer-logo-main {
  font-size: 34px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
}

.footer-logo-main::first-letter {
  color: var(--primary);
}

.footer-logo-subtitle {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
}

.footer-about p {
  max-width: 320px;
  margin: 0 0 13px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-about .footer-mission {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: var(--white);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.footer-socials a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--dark);
  transform: translateY(-4px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  line-height: 1.4;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.67);
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.footer-links a i {
  width: 14px;
  font-size: 9px;
  text-align: center;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-style: normal;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.footer-contact-item:hover {
  border-color: rgba(112, 197, 0, 0.25);
  background-color: rgba(112, 197, 0, 0.07);
  transform: translateX(4px);
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background-color: var(--primary);
  font-size: 13px;
  color: var(--dark);
}

.footer-contact-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-contact-item small {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item strong {
  overflow-wrap: anywhere;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.83);
}

.footer-map-card {
  text-align: center;
  
  padding: 15px;
  border: 1px solid rgba(112, 197, 0, 0.2);
  border-radius: 23px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  backdrop-filter: blur(12px);
}

/* .footer-map-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin-bottom: 14px;
  border-radius: 14px;
  background-color: var(--primary);
  font-size: 19px;
  color: var(--dark);
} */

.footer-map-card small {
  text-align: start;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.46);
}

.footer-map-card strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--white);
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours > i {
  font-size: 16px;
  color: var(--primary);
}

.footer-hours span {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-hours strong {
  /* margin: 2px 0 0; */
  font-size: 12px;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  margin-top: 18px;
  padding: 10px 13px;
  border-radius: 12px;
  background-color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  color: var(--dark);
  transition:
    background-color 0.22s ease,
    transform 0.22s ease;
}

.footer-map-link:hover {
  background-color: #8ddd16;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0.17);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: min(90%, 1400px);
  min-height: 66px;
  margin-inline: auto;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-legal-links a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

.footer-legal-links span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary);
}

@media screen and (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }

  .footer-location {
    grid-column: span 2;
  }

  .footer-map-card {
    max-width: 500px;
  }
}

@media screen and (max-width: 760px) {
  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(90%, 650px);
  }

  .footer-about,
  .footer-location {
    grid-column: 1 / -1;
  }

  .footer-map-card {
    max-width: none;
  }
}

@media screen and (max-width: 520px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 60px 0 40px;
  }

  .footer-about,
  .footer-location {
    grid-column: auto;
  }

  .footer-column h3 {
    margin-bottom: 18px;
  }

  .footer-bottom-container {
    flex-direction: column;
    padding: 18px 0;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 320px) {
  .header {
    height: auto;
    min-height: 4rem;
    padding: 0.5rem 0.75rem;
  }

  .navbar {
    position: relative;
    gap: 0.5rem;
  }

  .logo {
    height: 2.75rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 7rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100svh - 5rem);
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active,
  .nav-menu.is-active,
  .nav-menu.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .dropdown-menu {
    position: static;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 20rem;
    margin-bottom: 0.35rem;
    padding: 0.35rem;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .contact-btn {
    display: none;
  }

  .round-btn,
  .menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-container {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-left {
    width: 100%;
    height: auto;
    padding: 2.25rem 0.75rem 1.5rem;
    text-align: center;
  }

  .hero-label {
    max-width: 100%;
    margin-bottom: 1.25rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.65rem;
    line-height: 1.35;
    text-align: center;
  }

  .hero-left h1 {
    font-size: clamp(1.75rem, 10vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.06rem;
  }

  .hero-left h1 br,
  .hero-description br {
    display: none;
  }

  .hero-description {
    margin-top: 1.15rem;
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
  }

  .btn {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 13rem;
  }

  .hero-right img {
    width: 100%;
    height: auto;
    max-height: 16rem;
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 3.5rem 0.75rem;
  }

  .events-heading h2,
  .contact-heading h2,
  .testimonials-heading h2 {
    font-size: 1.75rem;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .events-controls {
    align-self: flex-end;
  }

  .event-button {
    width: 2.65rem;
    height: 2.65rem;
  }

  .events-track {
    gap: 0.75rem;
    padding: 0;
  }

  .event-card {
    min-width: 100%;
    border-radius: 1.15rem;
  }

  .event-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .event-content {
    padding: 1rem;
  }

  .event-content > p {
    min-height: 0;
  }

  .about-details {
    overflow: visible;
    height: auto;
    min-height: 0;
    padding: 3.5rem 0.75rem;
  }

  .about-content {
    margin-bottom: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.85rem;
  }

  .about-main-image {
    width: 100%;
    max-width: 20rem;
    margin: -1.5rem auto -2.25rem;
  }

  .about-feature {
    min-height: 5.25rem;
    padding: 0.75rem;
  }

  .about-feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }

  .contact-section {
    min-height: 0;
    padding-top: 3.5rem;
  }

  .contact-heading {
    margin: 0 auto 1.75rem;
    padding-inline: 0.75rem;
  }

  .contact-heading p {
    font-size: 0.85rem;
  }

  .contact-container {
    flex-direction: column;
    max-height: none;
    padding: 1rem 0.75rem 1.5rem;
  }

  .contact-info-card {
    width: 100%;
    max-height: none;
    padding: 1rem 0;
  }

  .contact-info-intro h3 {
    font-size: 1.65rem;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .contact-item {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding: 0.7rem;
  }

  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-showcase {
    width: 100%;
    min-width: 0;
    min-height: 29rem;
    margin-top: 1rem;
    padding: 0;
  }

  .phone-stage {
    width: 100%;
    height: 28rem;
  }

  .phone-device {
    width: 12.25rem;
  }

  .testimonials-container {
    width: 100%;
  }

  .testimonials-heading {
    margin-bottom: 2rem;
  }

  .testimonials-layout,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card:first-child {
    grid-column: auto;
  }

  .testimonial-card,
  .testimonial-form-box {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .testimonial-form-heading {
    align-items: flex-start;
  }

  .testimonial-form-heading h3 {
    font-size: 1rem;
  }

  .testimonial-input input,
  .testimonial-input select,
  .testimonial-field textarea {
    font-size: 1rem;
  }

  .testimonial-input input,
  .testimonial-input select {
    padding-inline: 0.85rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: calc(100% - 1.5rem);
    padding: 3.5rem 0 2.5rem;
  }

  .footer-about,
  .footer-location {
    grid-column: auto;
  }

  .footer-map-card {
    padding: 1.1rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    width: calc(100% - 1.5rem);
    padding: 1rem 0;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


@media (min-width: 321px) and (max-width: 375px) {
  .header {
    height: auto;
    min-height: 4.15rem;
    padding: 0.55rem 0.85rem;
  }

  .navbar {
    position: relative;
    gap: 0.65rem;
  }

  .logo {
    height: 2.9rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 7.5rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100svh - 5rem);
    padding: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active,
  .nav-menu.is-active,
  .nav-menu.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.8rem;
    font-size: 0.82rem;
  }

  .dropdown-menu {
    position: static;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 20rem;
    margin-bottom: 0.4rem;
    padding: 0.35rem;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .contact-btn {
    display: none;
  }

  .round-btn,
  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-container {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-left {
    width: 100%;
    height: auto;
    padding: 2.5rem 1rem 1.75rem;
    text-align: center;
  }

  .hero-label {
    max-width: 100%;
    margin-bottom: 1.35rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.68rem;
    line-height: 1.35;
    text-align: center;
  }

  .hero-left h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.07rem;
  }

  .hero-left h1 br,
  .hero-description br {
    display: none;
  }

  .hero-description {
    margin-top: 1.25rem;
    font-size: 0.92rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.7rem;
  }

  .btn {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.8rem;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 14rem;
  }

  .hero-right img {
    width: 100%;
    height: auto;
    max-height: 18rem;
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 3.75rem 1rem;
  }

  .events-heading h2,
  .contact-heading h2,
  .testimonials-heading h2 {
    font-size: 1.9rem;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.9rem;
  }

  .events-controls {
    align-self: flex-end;
  }

  .event-button {
    width: 2.75rem;
    height: 2.75rem;
  }

  .events-track {
    gap: 0.85rem;
    padding: 0;
  }

  .event-card {
    min-width: 100%;
    border-radius: 1.25rem;
  }

  .event-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .event-content {
    padding: 1.1rem;
  }

  .event-content > p {
    min-height: 0;
  }

  .about-details {
    overflow: visible;
    height: auto;
    min-height: 0;
    padding: 3.75rem 1rem;
  }

  .about-content {
    margin-bottom: 1.65rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-main-image {
    width: 100%;
    max-width: 22rem;
    margin: -1.75rem auto -2.5rem;
  }

  .about-feature {
    min-height: 5.5rem;
    padding: 0.8rem;
  }

  .about-feature-icon {
    width: 2.85rem;
    height: 2.85rem;
    min-width: 2.85rem;
  }

  .contact-section {
    min-height: 0;
    padding-top: 3.75rem;
  }

  .contact-heading {
    margin: 0 auto 1.9rem;
    padding-inline: 1rem;
  }

  .contact-heading p {
    font-size: 0.88rem;
  }

  .contact-container {
    flex-direction: column;
    max-height: none;
    padding: 1.1rem 1rem 1.6rem;
  }

  .contact-info-card {
    width: 100%;
    max-height: none;
    padding: 1rem 0;
  }

  .contact-info-intro h3 {
    font-size: 1.75rem;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    margin-top: 1.6rem;
  }

  .contact-item {
    grid-template-columns: 2.65rem minmax(0, 1fr) auto;
    gap: 0.7rem;
    padding: 0.75rem;
  }

  .contact-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .contact-showcase {
    width: 100%;
    min-width: 0;
    min-height: 31rem;
    margin-top: 1rem;
    padding: 0;
  }

  .phone-stage {
    width: 100%;
    height: 30rem;
  }

  .phone-device {
    width: 13rem;
  }

  .testimonials-container {
    width: 100%;
  }

  .testimonials-heading {
    margin-bottom: 2.1rem;
  }

  .testimonials-layout,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card:first-child {
    grid-column: auto;
  }

  .testimonial-card,
  .testimonial-form-box {
    padding: 1.1rem;
    border-radius: 1.25rem;
  }

  .testimonial-form-heading h3 {
    font-size: 1.05rem;
  }

  .testimonial-input input,
  .testimonial-input select,
  .testimonial-field textarea {
    font-size: 1rem;
  }

  .testimonial-input input,
  .testimonial-input select {
    padding-inline: 0.9rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.15rem;
    width: calc(100% - 2rem);
    padding: 3.75rem 0 2.5rem;
  }

  .footer-about,
  .footer-location {
    grid-column: auto;
  }
.footer-map-card{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.footer-map{
    height:220px;
}

.footer-map iframe{
    width:100%;
    height:100%;
    border:0;
}

.footer-location-content{
    padding:20px;
}

.footer-map-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:20px;
    margin-bottom:15px;
}

.footer-hours{
    display:flex;
    gap:12px;
    margin:18px 0;
    align-items:flex-start;
}

.footer-map-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
}

.footer-map-link:hover{
    gap:16px;
}
  .footer-bottom-container {
    flex-direction: column;
    width: calc(100% - 2rem);
    padding: 1rem 0;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 376px) and (max-width: 480px) {
  .header {
    height: auto;
    min-height: 4.25rem;
    padding: 0.6rem 1rem;
  }

  .navbar {
    position: relative;
    gap: 0.75rem;
  }

  .logo {
    height: 3rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 8rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100svh - 5rem);
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active,
  .nav-menu.is-active,
  .nav-menu.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.85rem;
    font-size: 0.85rem;
  }

  .dropdown-menu {
    position: static;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 20rem;
    margin-bottom: 0.4rem;
    padding: 0.4rem;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .contact-btn {
    display: none;
  }

  .round-btn,
  .menu-toggle {
    width: 2.65rem;
    height: 2.65rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-container {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-left {
    width: 100%;
    height: auto;
    padding: 2.75rem 1.15rem 1.75rem;
    text-align: center;
  }

  .hero-label {
    max-width: 100%;
    margin-bottom: 1.4rem;
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    line-height: 1.35;
    text-align: center;
  }

  .hero-left h1 {
    font-size: clamp(2.05rem, 9vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.08rem;
  }

  .hero-left h1 br,
  .hero-description br {
    display: none;
  }

  .hero-description {
    margin-top: 1.35rem;
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.85rem;
  }

  .btn {
    width: 100%;
    min-height: 2.95rem;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 15rem;
  }

  .hero-right img {
    width: 100%;
    height: auto;
    max-height: 20rem;
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 4rem 1.15rem;
  }

  .events-heading h2,
  .contact-heading h2,
  .testimonials-heading h2 {
    font-size: 2rem;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .events-controls {
    align-self: flex-end;
  }

  .event-button {
    width: 2.85rem;
    height: 2.85rem;
  }

  .events-track {
    gap: 0.9rem;
    padding: 0;
  }

  .event-card {
    min-width: 100%;
    border-radius: 1.35rem;
  }

  .event-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .event-content {
    padding: 1.15rem;
  }

  .event-content > p {
    min-height: 0;
  }

  .about-details {
    overflow: visible;
    height: auto;
    min-height: 0;
    padding: 4rem 1.15rem;
  }

  .about-content {
    margin-bottom: 1.75rem;
  }

  .about-content h2 {
    font-size: 2.15rem;
  }

  .about-main-image {
    width: 100%;
    max-width: 24rem;
    margin: -2rem auto -2.75rem;
  }

  .about-feature {
    min-height: 5.75rem;
    padding: 0.85rem;
  }

  .about-feature-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
  }

  .contact-section {
    min-height: 0;
    padding-top: 4rem;
  }

  .contact-heading {
    margin: 0 auto 2rem;
    padding-inline: 1.15rem;
  }

  .contact-heading p {
    font-size: 0.9rem;
  }

  .contact-container {
    flex-direction: column;
    max-height: none;
    padding: 1.25rem 1.15rem 1.75rem;
  }

  .contact-info-card {
    width: 100%;
    max-height: none;
    padding: 1rem 0;
  }

  .contact-info-intro h3 {
    font-size: 1.85rem;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
  }

  .contact-item {
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.8rem;
  }

  .contact-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .contact-showcase {
    width: 100%;
    min-width: 0;
    min-height: 33rem;
    margin-top: 1rem;
    padding: 0;
  }

  .phone-stage {
    width: 100%;
    height: 32rem;
  }

  .phone-device {
    width: 13.75rem;
  }

  .testimonials-container {
    width: 100%;
  }

  .testimonials-heading {
    margin-bottom: 2.25rem;
  }

  .testimonials-layout,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .testimonial-card:first-child {
    grid-column: auto;
  }

  .testimonial-card,
  .testimonial-form-box {
    padding: 1.2rem;
    border-radius: 1.35rem;
  }

  .testimonial-input input,
  .testimonial-input select,
  .testimonial-field textarea {
    font-size: 1rem;
  }

  .testimonial-input input,
  .testimonial-input select {
    padding-inline: 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    width: calc(100% - 2.3rem);
    padding: 4rem 0 2.75rem;
  }

  .footer-about,
  .footer-location {
    grid-column: auto;
  }

  .footer-bottom-container {
    flex-direction: column;
    width: calc(100% - 2.3rem);
    padding: 1rem 0;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 481px) and (max-width: 576px) {
  .header {
    height: auto;
    min-height: 4.5rem;
    padding: 0.65rem 1.25rem;
  }

  .navbar {
    position: relative;
    gap: 0.8rem;
  }

  .logo {
    height: 3.15rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 8.5rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100svh - 5.5rem);
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active,
  .nav-menu.is-active,
  .nav-menu.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.9rem;
    font-size: 0.88rem;
  }

  .dropdown-menu {
    position: static;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 20rem;
    margin-bottom: 0.45rem;
    padding: 0.4rem;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-container {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-left {
    width: 100%;
    height: auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
  }

  .hero-label {
    margin-bottom: 1.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.72rem;
  }

  .hero-left h1 {
    font-size: clamp(2.25rem, 8.5vw, 2.75rem);
    letter-spacing: -0.1rem;
  }

  .hero-left h1 br,
  .hero-description br {
    display: none;
  }

  .hero-description {
    max-width: 30rem;
    margin: 1.5rem auto 0;
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 2rem;
  }

  .btn {
    min-height: 3rem;
    padding: 0.75rem 1.1rem;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 17rem;
  }

  .hero-right img {
    width: 100%;
    height: auto;
    max-height: 23rem;
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 4.25rem 1.5rem;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.15rem;
  }

  .events-controls {
    align-self: flex-end;
  }

  .events-track {
    padding: 0;
  }

  .event-card {
    min-width: 100%;
  }

  .event-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .event-content > p {
    min-height: 0;
  }

  .about-details {
    overflow: visible;
    height: auto;
    min-height: 0;
    padding: 4.25rem 1.5rem;
  }

  .about-main-image {
    width: 100%;
    max-width: 30rem;
    margin: -2rem auto -3rem;
  }

  .contact-section {
    min-height: 0;
    padding-top: 4.25rem;
  }

  .contact-heading {
    margin-bottom: 2.25rem;
    padding-inline: 1.5rem;
  }

  .contact-container {
    flex-direction: column;
    max-height: none;
    padding: 1.5rem;
  }

  .contact-info-card {
    width: 100%;
    max-height: none;
    padding: 1rem 0;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-showcase {
    width: 100%;
    min-width: 0;
    min-height: 35rem;
    margin-top: 1rem;
    padding: 0;
  }

  .phone-stage {
    width: 100%;
    height: 34rem;
  }

  .phone-device {
    width: 14.25rem;
  }

  .testimonials-layout,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:first-child {
    grid-column: auto;
  }

  .testimonial-input input,
  .testimonial-input select,
  .testimonial-field textarea {
    font-size: 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    width: calc(100% - 3rem);
  }

  .footer-about,
  .footer-location {
    grid-column: auto;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .header {
    height: auto;
    min-height: 4.75rem;
    padding: 0.75rem 1.75rem;
  }

  .navbar {
    position: relative;
  }

  .logo {
    height: 3.25rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 9rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100svh - 6rem);
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 1.15rem;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active,
  .nav-menu.is-active,
  .nav-menu.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.9rem 1rem;
  }

  .dropdown-menu {
    position: static;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 20rem;
    margin-bottom: 0.5rem;
    padding: 0.45rem;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-container {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-left {
    width: 100%;
    height: auto;
    padding: 3.5rem 2rem 2rem;
    text-align: center;
  }

  .hero-label {
    margin-bottom: 1.75rem;
    padding: 0.7rem 1.75rem;
  }

  .hero-left h1 {
    font-size: clamp(2.65rem, 7vw, 3.25rem);
  }

  .hero-left h1 br,
  .hero-description br {
    display: none;
  }

  .hero-description {
    max-width: 38rem;
    margin: 1.5rem auto 0;
    font-size: 1.05rem;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 2rem;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 20rem;
  }

  .hero-right img {
    width: min(100%, 45rem);
    height: auto;
    max-height: 28rem;
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 4.75rem 2rem;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .events-controls {
    align-self: flex-end;
  }

  .events-track {
    padding: 0;
  }

  .event-card {
    min-width: 100%;
  }

  .event-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .event-content > p {
    min-height: 0;
  }

  .about-details {
    overflow: visible;
    height: auto;
    min-height: 0;
    padding: 4.75rem 2rem;
  }

  .about-container {
    display: block;
    width: 100%;
  }

  .about-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-height: 0;
  }

  .about-main-image {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(100%, 38rem);
    margin: -3rem auto;
    transform: none;
  }

  .about-feature {
    position: static;
    width: 100%;
    min-height: 6.5rem;
    transform: none;
  }

  .about-feature--trainers,
  .about-feature--certificate {
    grid-row: 1;
  }

  .about-feature:hover,
  .about-feature--certificate:hover,
  .about-feature--environment:hover {
    transform: translateY(-0.3rem);
  }

  .contact-section {
    min-height: 0;
    padding-top: 4.75rem;
  }

  .contact-heading {
    padding-inline: 2rem;
  }

  .contact-container {
    flex-direction: column;
    max-height: none;
    padding: 2rem;
  }

  .contact-info-card {
    width: 100%;
    max-height: none;
    padding: 1.5rem 0;
  }

  .contact-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-item {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .contact-item > i {
    display: none;
  }

  .contact-icon {
    width: 3rem;
    height: 3rem;
  }

  .contact-showcase {
    width: 100%;
    min-width: 0;
    min-height: 39rem;
    margin-top: 1.5rem;
  }

  .phone-stage {
    width: 100%;
    height: 38rem;
  }

  .phone-device {
    width: 15rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:first-child {
    grid-column: auto;
  }

  .testimonial-input input,
  .testimonial-input select,
  .testimonial-field textarea {
    font-size: 1rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 4rem);
  }

  .footer-about,
  .footer-location {
    grid-column: 1 / -1;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .header {
    height: auto;
    min-height: 4.75rem;
    padding: 0.75rem 2rem;
  }

  .navbar {
    position: relative;
  }

  .logo {
    height: 3.25rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 9rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100svh - 6rem);
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active,
  .nav-menu.is-active,
  .nav-menu.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.9rem 1rem;
  }

  .dropdown-menu {
    position: static;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 20rem;
    margin-bottom: 0.5rem;
    padding: 0.45rem;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-container {
    height: auto;
    min-height: 36rem;
  }

  .hero-left {
    width: 46%;
    height: auto;
    padding: 4rem 0 3rem 2.25rem;
  }

  .hero-label {
    margin-bottom: 1.75rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.72rem;
  }

  .hero-left h1 {
    font-size: clamp(2.35rem, 4.5vw, 2.8rem);
    letter-spacing: -0.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-description br {
    display: none;
  }

  .hero-buttons {
    margin-top: 2rem;
  }

  .btn {
    padding-inline: 1rem;
  }

  .hero-right {
    width: 54%;
    height: auto;
  }

  .hero-right img {
    height: 100%;
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 5rem 2.5rem;
  }

  .events-track {
    padding: 0;
  }

  .event-card {
    min-width: calc((100% - 1.25rem) / 2);
  }

  .event-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .about-details {
    overflow: visible;
    height: auto;
    min-height: 0;
    padding: 5rem 2.5rem;
  }

  .about-visual {
    min-height: 40rem;
  }

  .about-main-image {
    width: min(68%, 36rem);
    max-height: none;
  }

  .about-feature {
    width: min(14rem, 31%);
  }

  .contact-section {
    min-height: 0;
    padding-top: 5rem;
  }

  .contact-heading {
    padding-inline: 2.5rem;
  }

  .contact-container {
    flex-direction: column;
    max-height: none;
    padding: 2.5rem;
  }

  .contact-info-card {
    width: 100%;
    max-height: none;
    padding: 1.5rem 0;
  }

  .contact-showcase {
    width: 100%;
    min-width: 0;
    min-height: 42rem;
    margin-top: 2rem;
  }

  .phone-stage {
    width: 100%;
    height: 41rem;
  }

  .phone-device {
    width: 16rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 5rem);
  }

  .footer-about,
  .footer-location {
    grid-column: 1 / -1;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .header {
    height: auto;
    min-height: 4.75rem;
    padding: 0.75rem 2.5rem;
  }

  .navbar {
    position: relative;
  }

  .logo {
    height: 3.25rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 9.5rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100svh - 6rem);
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active,
  .nav-menu.is-active,
  .nav-menu.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.9rem 1rem;
  }

  .dropdown-menu {
    position: static;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 20rem;
    margin-bottom: 0.5rem;
    padding: 0.45rem;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-container {
    height: auto;
    min-height: 39rem;
  }

  .hero-left {
    width: 43%;
    height: auto;
    padding: 4.5rem 0 3rem 3rem;
  }

  .hero-label {
    margin-bottom: 2rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }

  .hero-left h1 {
    font-size: clamp(2.55rem, 4vw, 3rem);
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-description br {
    display: none;
  }

  .hero-buttons {
    margin-top: 2.25rem;
  }

  .hero-right {
    width: 57%;
    height: auto;
  }

  .hero-right img {
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 5.25rem 3rem;
  }

  .event-card {
    min-width: calc((100% - 1.25rem) / 2);
  }

  .about-details {
    height: auto;
    min-height: 44rem;
    padding: 5.25rem 3rem;
  }

  .about-container {
    grid-template-columns: minmax(17rem, 35%) minmax(0, 65%);
  }

  .about-feature {
    width: min(13.5rem, 31%);
  }

  .contact-section {
    min-height: 0;
    padding-top: 5.25rem;
  }

  .contact-heading {
    padding-inline: 3rem;
  }

  .contact-container {
    width: calc(100% - 6rem);
    max-height: none;
    margin-inline: auto;
    padding: 2.5rem;
    border-radius: 2rem;
  }

  .contact-info-card {
    width: 64%;
    max-height: none;
    padding: 1.5rem 2rem 1.5rem 0;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-showcase {
    width: 36%;
    min-width: 0;
    min-height: 40rem;
  }

  .phone-stage {
    height: 39rem;
  }

  .phone-device {
    width: 15rem;
  }

  .footer-container {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    width: calc(100% - 6rem);
  }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .header {
    height: auto;
    min-height: 4.9rem;
    padding: 0.85rem clamp(2rem, 3vw, 3rem);
  }

  .navbar {
    max-width: 86rem;
    margin-inline: auto;
  }

  .logo {
    height: 3.25rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 9.5rem;
  }

  .nav-list {
    gap: clamp(1rem, 1.7vw, 1.5rem);
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .nav-actions {
    gap: 0.65rem;
  }

  .contact-btn {
    min-width: 7.5rem;
    padding-inline: 1rem;
  }

  .hero-container {
    height: auto;
    min-height: 42rem;
    max-width: 90rem;
    margin-inline: auto;
  }

  .hero-left {
    width: 40%;
    height: auto;
    padding: 5rem 0 3rem clamp(2.5rem, 5vw, 4.5rem);
  }

  .hero-label {
    margin-bottom: 2rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }

  .hero-left h1 {
    font-size: clamp(2.7rem, 3.7vw, 3.25rem);
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-buttons {
    margin-top: 2.5rem;
  }

  .hero-right {
    width: 60%;
    padding-top:50px;
    padding: 10px;
    height: auto;
  }

  .hero-right img {
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 5.5rem 4rem;
  }

  .about-details {
    height: auto;
    min-height: 46rem;
    padding: 5.5rem 4rem;
  }

  .about-container {
    grid-template-columns: minmax(19rem, 34%) minmax(0, 66%);
  }

  .about-feature {
    width: min(14rem, 31%);
  }

  .contact-section {
    min-height: 0;
    padding-top: 5.5rem;
  }

  .contact-heading {
    padding-inline: 4rem;
  }

  .contact-container {
    width: calc(100% - 8rem);
    max-height: none;
    margin-inline: auto;
    padding: 2.75rem;
    border-radius: 2.25rem;
  }

  .contact-info-card {
    width: 64%;
    max-height: none;
    padding: 1.5rem 2.5rem 1.5rem 0;
  }

  .contact-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-showcase {
    width: 36%;
    min-width: 0;
    min-height: 42rem;
  }

  .phone-stage {
    height: 41rem;
  }

  .phone-device {
    width: 15.5rem;
  }

  .footer-container,
  .footer-bottom-container {
    width: calc(100% - 8rem);
  }
}
@media (min-width: 1441px) and (max-width: 1920px) {
  .header {
    height: auto;
    min-height: 5rem;
    padding: 0.9rem clamp(4rem, 5vw, 6rem);
  }

  .navbar {
    max-width: 110rem;
    margin-inline: auto;
  }

  .logo {
    height: 3.4rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 10rem;
  }

  .nav-list {
    gap: clamp(1.5rem, 2.2vw, 2.75rem);
  }

  .hero-container {
    height: auto;
    min-height: 48rem;
    max-width: 120rem;
    margin-inline: auto;
  }

  .hero-left {
    width: 40%;
    height: auto;
    padding: 6rem 0 4rem clamp(4rem, 5vw, 6rem);
  }

  .hero-label {
    padding: 0.7rem 2.5rem;
  }

  .hero-left h1 {
    font-size: clamp(3rem, 3.1vw, 3.75rem);
  }

  .hero-right {
    width: 60%;
    height: auto;
  }

  .hero-right img {
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 6rem clamp(4rem, 5vw, 6rem);
  }

  .about-details {
    height: auto;
    min-height: 50rem;
    padding: 6rem clamp(4rem, 5vw, 6rem);
  }

  .contact-section {
    min-height: 0;
    padding-top: 6rem;
  }

  .contact-heading {
    padding-inline: clamp(4rem, 5vw, 6rem);
  }

  .contact-container {
    width: calc(100% - clamp(8rem, 10vw, 12rem));
    max-width: 110rem;
    max-height: none;
    margin-inline: auto;
    padding: 3rem;
    border-radius: 2.5rem;
  }

  .contact-info-card {
    width: 64%;
    max-height: none;
    padding: 2rem 3rem 2rem 0;
  }

  .contact-showcase {
    width: 36%;
    min-width: 0;
    min-height: 44rem;
  }

  .phone-stage {
    height: 43rem;
  }

  .phone-device {
    width: 16.5rem;
  }

  .footer-container,
  .footer-bottom-container {
    max-width: 110rem;
  }
}
@media (min-width: 1921px) and (max-width: 2560px) {
  html {
    font-size: 17px;
  }

  .header {
    height: auto;
    min-height: 5.25rem;
    padding: 1rem clamp(5rem, 6vw, 8rem);
  }

  .navbar {
    max-width: 128rem;
    margin-inline: auto;
  }

  .logo {
    height: 3.6rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 11rem;
  }

  .nav-list {
    gap: clamp(2rem, 2.5vw, 3.25rem);
  }

  .nav-link,
  .contact-btn {
    font-size: 0.85rem;
  }

  .round-btn {
    width: 2.9rem;
    height: 2.9rem;
    font-size: 1rem;
  }

  .hero-container {
    height: auto;
    min-height: 54rem;
    max-width: 135rem;
    margin-inline: auto;
  }

  .hero-left {
    width: 40%;
    height: auto;
    padding: 7rem 0 5rem clamp(5rem, 6vw, 8rem);
  }

  .hero-label {
    padding: 0.8rem 2.75rem;
    font-size: 0.85rem;
  }

  .hero-left h1 {
    font-size: clamp(3.5rem, 3vw, 4.25rem);
  }

  .hero-description {
    font-size: 1.15rem;
  }

  .hero-right {
    width: 60%;
    height: auto;
  }

  .hero-right img {
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 7rem clamp(6rem, 7vw, 9rem);
  }

  .events-container,
  .testimonials-container {
    max-width: 120rem;
  }

  .events-heading p,
  .testimonials-heading > p {
    font-size: 0.95rem;
  }

  .event-image {
    height: 24rem;
  }

  .event-content h3 {
    font-size: 1.2rem;
  }

  .event-content > p,
  .event-link {
    font-size: 0.8rem;
  }

  .about-details {
    height: auto;
    min-height: 56rem;
    padding: 7rem clamp(6rem, 7vw, 9rem);
  }

  .about-container {
    max-width: 120rem;
  }

  .about-feature {
    width: clamp(14rem, 15vw, 18rem);
  }

  .about-feature-icon {
    width: 3.3rem;
    height: 3.3rem;
    min-width: 3.3rem;
  }

  .contact-section {
    min-height: 0;
    padding-top: 7rem;
  }

  .contact-heading {
    padding-inline: clamp(6rem, 7vw, 9rem);
  }

  .contact-container {
    width: calc(100% - clamp(12rem, 14vw, 18rem));
    max-width: 120rem;
    max-height: none;
    margin-inline: auto;
    padding: 3.5rem;
    border-radius: 2.75rem;
  }

  .contact-info-card {
    width: 62%;
    max-height: none;
    padding: 2.5rem 3.5rem 2.5rem 0;
  }

  .contact-showcase {
    width: 38%;
    min-width: 0;
    min-height: 48rem;
  }

  .phone-stage {
    height: 47rem;
  }

  .phone-device {
    width: 17.5rem;
  }

  .footer-container,
  .footer-bottom-container {
    max-width: 120rem;
  }

  .footer-links a,
  .footer-about p {
    font-size: 0.8rem;
  }
}
@media (min-width: 2561px) {
  html {
    font-size: 20px;
  }

  .header {
    height: auto;
    min-height: 5.75rem;
    padding: 1.1rem clamp(7rem, 7vw, 12rem);
  }

  .navbar {
    max-width: 150rem;
    margin-inline: auto;
  }

  .logo {
    height: 3.9rem;
  }

  .logo img {
    width: auto;
    height: 100%;
    max-width: 12rem;
  }

  .nav-list {
    gap: clamp(2.5rem, 2.7vw, 4rem);
  }

  .nav-link,
  .contact-btn {
    font-size: 0.9rem;
  }

  .round-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.05rem;
  }

  .hero-container {
    height: auto;
    min-height: 62rem;
    max-width: 155rem;
    margin-inline: auto;
  }

  .hero-left {
    width: 40%;
    height: auto;
    padding: 8rem 0 6rem clamp(7rem, 7vw, 12rem);
  }

  .hero-label {
    padding: 0.9rem 3rem;
    font-size: 0.9rem;
  }

  .hero-left h1 {
    font-size: clamp(4rem, 2.8vw, 5rem);
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .hero-right {
    width: 60%;
    height: auto;
  }

  .hero-right img {
    object-fit: contain;
  }

  .events,
  .testimonials {
    padding: 8rem clamp(8rem, 8vw, 14rem);
  }

  .events-container,
  .testimonials-container {
    max-width: 140rem;
  }

  .events-heading p,
  .testimonials-heading > p {
    font-size: 1rem;
  }

  .event-image {
    height: 27rem;
  }

  .event-content h3 {
    font-size: 1.25rem;
  }

  .event-content > p,
  .event-link {
    font-size: 0.85rem;
  }

  .about-details {
    height: auto;
    min-height: 64rem;
    padding: 8rem clamp(8rem, 8vw, 14rem);
  }

  .about-container {
    max-width: 140rem;
  }

  .about-feature {
    width: clamp(15rem, 14vw, 20rem);
    min-height: 7rem;
  }

  .about-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
  }

  .contact-section {
    min-height: 0;
    padding-top: 8rem;
  }

  .contact-heading {
    padding-inline: clamp(8rem, 8vw, 14rem);
  }

  .contact-container {
    width: calc(100% - clamp(16rem, 16vw, 28rem));
    max-width: 140rem;
    max-height: none;
    margin-inline: auto;
    padding: 4rem;
    border-radius: 3rem;
  }

  .contact-info-card {
    width: 62%;
    max-height: none;
    padding: 3rem 4rem 3rem 0;
  }

  .contact-showcase {
    width: 38%;
    min-width: 0;
    min-height: 54rem;
  }

  .phone-stage {
    height: 53rem;
  }

  .phone-device {
    width: 19rem;
  }

  .footer-container,
  .footer-bottom-container {
    max-width: 140rem;
  }

  .footer-links a,
  .footer-about p {
    font-size: 0.85rem;
  }
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

body.search-open {
  overflow: hidden;
}

/*  Recherche et contrÃ´les d'interface  */

.search-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: clamp(1rem, 4vw, 3rem);
  background-color: rgba(8, 12, 9, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.search-overlay[hidden] {
  display: none;
}

.search-dialog {
  width: min(100%, 48rem);
  margin-top: clamp(3rem, 10vh, 7rem);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
  background-color: var(--white);
  animation: search-dialog-in 0.25s ease-out;
}

@keyframes search-dialog-in {
  from {
    opacity: 0;
    transform: translateY(-1rem) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.search-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.search-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--primary-dark);
}

.search-dialog h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.15;
  color: var(--dark);
}

.search-close {
  flex: 0 0 2.75rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background-color: var(--light);
  font-size: 1.05rem;
  color: var(--dark);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.search-close:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: rotate(5deg);
}

.site-search-form {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.5rem;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background-color: var(--light);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(112, 197, 0, 0.12);
}

.search-input-group > i {
  flex: 0 0 auto;
  color: var(--primary-dark);
}

.search-input-group input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1rem;
  color: var(--text);
}

.search-input-group input::placeholder {
  color: var(--text-light);
}

.search-input-group button {
  min-height: 2.75rem;
  padding: 0.65rem clamp(0.8rem, 3vw, 1.35rem);
  border-radius: 0.75rem;
  background-color: var(--primary);
  font-size: clamp(0.72rem, 2.5vw, 0.85rem);
  font-weight: 800;
  color: var(--white);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.search-input-group button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-0.1rem);
}

.search-help {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.search-results {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.search-results:empty {
  display: none;
}

.search-result-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background-color: var(--white);
  text-align: left;
  color: var(--text);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.search-result-button:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateX(0.25rem);
}

.search-result-button span {
  overflow-wrap: anywhere;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.search-result-button i {
  flex: 0 0 auto;
  color: var(--primary-dark);
}

.search-message {
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: 0.85rem;
  background-color: var(--light);
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-light);
}

.search-target-flash {
  animation: search-target-flash 1.15s ease;
}

@keyframes search-target-flash {
  0%,
  100% {
    box-shadow: none;
  }

  40% {
    box-shadow: inset 0 0 0 0.2rem rgba(112, 197, 0, 0.45);
  }
}

body,
.header,
.hero,
.events,
.about-details,
.testimonials,
.event-card,
.about-feature,
.testimonial-card,
.search-dialog {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

body.dark-mode {
  background-color: #0d120e;
  color: #cdd3cc;
  color-scheme: dark;
}

body.dark-mode .header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background-color: rgba(13, 18, 14, 0.88);
}

body.dark-mode .hero,
body.dark-mode .events,
body.dark-mode .about-details {
  background-color: #0d120e;
}

body.dark-mode .testimonials {
  background:
    radial-gradient(circle at 10% 15%, rgba(112, 197, 0, 0.1), transparent 28%),
    radial-gradient(
      circle at 90% 85%,
      rgba(112, 197, 0, 0.07),
      transparent 25%
    ),
    #111712;
}

body.dark-mode .nav-link,
body.dark-mode .hero-left h1,
body.dark-mode .hero-label,
body.dark-mode .events-heading h2,
body.dark-mode .about-content h2,
body.dark-mode .contact-heading h2,
body.dark-mode .testimonials-heading h2,
body.dark-mode .testimonials-title h3,
body.dark-mode .search-dialog h2 {
  color: #c5d1be;
}

body.dark-mode .hero-description,
body.dark-mode .events-heading p,
body.dark-mode .about-content p,
body.dark-mode .contact-heading p,
body.dark-mode .testimonials-heading > p,
body.dark-mode .testimonial-card blockquote,
body.dark-mode .search-help {
  color: #aeb9ac;
}

body.dark-mode .nav-menu,
body.dark-mode .dropdown-menu,
body.dark-mode .dropdown-menu-call,
body.dark-mode .event-card,
body.dark-mode .about-feature,
body.dark-mode .testimonial-card,
body.dark-mode .testimonials-count,
body.dark-mode .search-dialog,
body.dark-mode .search-result-button {
  border-color: #313d33;
  background-color: #171e18;
  color: #c7cfc5;
}

body.dark-mode .dropdown-menu a,
body.dark-mode .dropdown-menu-call a,
body.dark-mode .event-content h3,
body.dark-mode .about-feature-content h3,
body.dark-mode .testimonial-author h4,
body.dark-mode .testimonials-count strong,
body.dark-mode .search-result-button {
  color: #f2f6f0;
}

body.dark-mode .dropdown-menu a:hover,
body.dark-mode .search-result-button:hover {
  background-color: #213017;
  color: #7fc222;
}

body.dark-mode .event-content > p,
body.dark-mode .event-meta span,
body.dark-mode .about-feature-content p,
body.dark-mode .testimonial-author p,
body.dark-mode .testimonials-count span {
  color: #aeb9ac;
}

body.dark-mode .event-status {
  background-color: rgba(23, 30, 24, 0.92);
  color: #cad4c6;
}

body.dark-mode .btn-outline,
body.dark-mode .event-button,
body.dark-mode .search-close {
  border-color: #344036;
  background-color: #171e18;
  color: #f4f7f2;
}

body.dark-mode .btn-outline:hover,
body.dark-mode .event-button:hover,
body.dark-mode .search-close:hover {
  border-color: var(--primary-dark);
  background-color: var(--primary-dark);
  color: #ffffff;
}

body.dark-mode .btn-primary,
body.dark-mode .contact-btn,
body.dark-mode .testimonial-submit,
body.dark-mode .search-input-group button {
  color: #ffffff;
}

body.dark-mode .about-link,
body.dark-mode .events-all-link {
  background-color: var(--primary-dark);
  color: #ffffff;
}

body.dark-mode .theme-btn {
  background-color: var(--yellow);
  color: #101510;
}

body.dark-mode .search-input-group,
body.dark-mode .search-message {
  border-color: #344036;
  background-color: #101611;
  color: #e9efe7;
}

body.dark-mode .search-input-group input {
  color: #f4f7f2;
}

body.dark-mode .search-input-group input::placeholder {
  color: #8f9b8e;
}

body.dark-mode .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .search-dialog,
  .search-target-flash {
    animation: none;
  }
}

.hero-label {
  background-color: transparent;
}

@media (min-width: 1201px) {
  .nav-menu,
  body.dark-mode .nav-menu {
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
  }
}

main > section {
  margin-block: 0;
}

.events,
.about-details,
.contact-section,
.testimonials {
  height: auto;
  min-height: 0;
}

.events {
  padding: clamp(2.5rem, 3.5vw, 4rem) clamp(1rem, 5vw, 6rem)
    clamp(2rem, 3vw, 3rem);
}

.events-heading {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.events-dots {
  margin-top: clamp(1.25rem, 2vw, 1.875rem);
}

.events-footer {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.about-details {
  padding-block: clamp(2.5rem, 4vw, 4.5rem);
}

.about-container,
.about-visual {
  height: auto;
}

.contact-section {
  padding-top: clamp(2.5rem, 4vw, 4.5rem);
}

.contact-container,
.contact-info-card {
  max-height: none;
}

.contact-heading {
  width: min(100%, 47.5rem);
  max-width: 47.5rem;
  margin: 0 auto clamp(2rem, 3vw, 3rem);
  padding-inline: 1rem;
  text-align: center;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(2.125rem, 4vw, 3.625rem);
  line-height: 1.08;
}

.contact-heading h2 strong {
  display: block;
  color: var(--primary-dark);
}

.contact-heading p {
  margin-top: 1rem;
}

.testimonials {
  padding: clamp(3rem, 4.5vw, 5rem) clamp(1rem, 5vw, 6rem);
}

.testimonials-heading {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

@media (min-width: 993px) {
  .hero-container {
    height: auto;
    min-height: calc(100vh - 5rem);
    min-height: calc(100svh - 5rem);
  }

  .hero-left {
    padding-top: 4.375rem;
    padding-bottom: 1.5rem;
  }

  .hero-right {
    align-self: stretch;
  }

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .events {
    padding-top: 1.25rem;
  }

  .contact-showcase {
    min-height: clamp(38rem, 40vw, 46rem);
  }

  .phone-stage {
    height: clamp(37rem, 39vw, 45rem);
  }

  .contact-heading {
    padding-inline: 0;
  }
}

.contact-info-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-item--wide {
  grid-column: 1 / -1;
  grid-template-columns:
    clamp(3.25rem, 4vw, 4rem)
    minmax(0, 1fr)
    auto;
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
  min-height: clamp(5.5rem, 7vw, 6.5rem);
  padding: clamp(0.9rem, 1.5vw, 1.25rem);
}

.contact-item--wide .contact-icon {
  width: clamp(3.25rem, 4vw, 4rem);
  height: clamp(3.25rem, 4vw, 4rem);
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-item--wide strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.875rem, 1.25vw, 1.05rem);
  color: var(--white);
}

.contact-phone-window {
  display: block;
  overflow: hidden;
  min-width: 0;
  height: 1.5em;
}

.contact-phone-number {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  will-change: opacity, transform;
}

.contact-phone-card.is-changing .contact-phone-number {
  opacity: 0;
  transform: translateY(0.65rem);
}

.contact-social-link {
  grid-template-columns:
    clamp(3.25rem, 4vw, 4rem)
    minmax(0, 1fr)
    auto
    auto;
  gap: clamp(0.75rem, 1.3vw, 1rem);
  width: 100%;
  min-height: clamp(5.5rem, 7vw, 6.5rem);
  margin-top: 1rem;
  padding: clamp(0.9rem, 1.5vw, 1.25rem);
  border-color: rgba(112, 197, 0, 0.32);
  background-color: rgba(112, 197, 0, 0.09);
}

a.contact-social-link:hover {
  border-color: rgba(112, 197, 0, 0.72);
  background-color: rgba(112, 197, 0, 0.15);
  transform: translateY(-0.2rem);
}

.contact-social-link small {
  margin-bottom: 0.125rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-social-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.875rem, 1.25vw, 1.05rem);
  color: var(--white);
}

.contact-social-platforms {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.2vw, 1rem);
  min-width: 0;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--primary);
}

.contact-social-link > i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

#reseaux-sociaux {
  scroll-margin-top: 6rem;
}
@media (max-width: 320px) {
  .contact-item--wide,
  .contact-social-link {
    grid-template-columns: 2.7rem minmax(0, 1fr) auto;
    gap: 0.6rem;
    min-height: 4.75rem;
    padding: 0.7rem;
  }

  .contact-item--wide .contact-icon,
  .contact-social-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.75rem;
  }

  .contact-item--wide strong,
  .contact-social-link strong {
    font-size: 0.72rem;
  }

  .contact-social-platforms {
    grid-column: 2 / -1;
    gap: 0.8rem;
  }

  .contact-social-link > i {
    display: none;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  .contact-item--wide,
  .contact-social-link {
    grid-template-columns: 2.8rem minmax(0, 1fr) auto;
    gap: 0.65rem;
    min-height: 4.9rem;
    padding: 0.75rem;
  }

  .contact-item--wide .contact-icon,
  .contact-social-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.8rem;
  }

  .contact-item--wide strong,
  .contact-social-link strong {
    font-size: clamp(0.75rem, 3.4vw, 0.85rem);
  }

  .contact-social-platforms {
    grid-column: 2 / -1;
  }

  .contact-social-link > i {
    display: none;
  }
}
@media (min-width: 376px) and (max-width: 480px) {
  .contact-item--wide,
  .contact-social-link {
    grid-template-columns: 2.9rem minmax(0, 1fr) auto;
    gap: 0.7rem;
    min-height: 5rem;
    padding: 0.8rem;
  }

  .contact-item--wide .contact-icon,
  .contact-social-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 0.8rem;
  }

  .contact-item--wide strong,
  .contact-social-link strong {
    font-size: clamp(0.8rem, 3.4vw, 0.9rem);
  }

  .contact-social-platforms {
    grid-column: 2 / -1;
  }

  .contact-social-link > i {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 576px) {
  .contact-item--wide,
  .contact-social-link {
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 0.75rem;
    min-height: 5.15rem;
    padding: 0.85rem;
  }

  .contact-item--wide .contact-icon,
  .contact-social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
  }

  .contact-social-platforms {
    grid-column: 2 / -1;
  }

  .contact-social-link > i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-phone-number {
    transition: none;
  }
}

.contact-info-intro {
  text-align: center;
}

.contact-info-intro p {
  margin-inline: auto;
}

.contact-phone-card {
  min-height: clamp(7rem, 9vw, 8.5rem);
}

.contact-phone-window {
  display: flex;
  align-items: center;
  height: clamp(2.3rem, 4vw, 3.5rem);
}

.contact-phone-card .contact-phone-number {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.025em;
  white-space: nowrap;
  color: var(--primary);
}
@media (max-width: 320px) {
  .contact-phone-card {
    min-height: 6rem;
  }

  .contact-phone-card .contact-phone-number {
    font-size: 1.35rem;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  .contact-phone-card {
    min-height: 6.2rem;
  }

  .contact-phone-card .contact-phone-number {
    font-size: 1.5rem;
  }
}
@media (min-width: 376px) and (max-width: 480px) {
  .contact-phone-card {
    min-height: 6.4rem;
  }

  .contact-phone-card .contact-phone-number {
    font-size: 1.65rem;
  }
}
@media (min-width: 481px) and (max-width: 576px) {
  .contact-phone-card .contact-phone-number {
    font-size: 1.8rem;
  }
}

/*  Section FAQ  */

.faq-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(4rem, 6svh, 6rem) clamp(1rem, 4vw, 5.5rem);
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(112, 197, 0, 0.11),
      transparent 25rem
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(243, 181, 54, 0.1),
      transparent 22rem
    ),
    var(--light, #f8faf7);
}

.faq-section::before,
.faq-section::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.faq-section::before {
  top: 6rem;
  left: -5rem;
  width: 10rem;
  height: 10rem;
  border: 1.5rem solid rgba(112, 197, 0, 0.08);
}

.faq-section::after {
  right: -3rem;
  bottom: 5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(243, 181, 54, 0.08);
}

.faq-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.faq-heading {
  width: min(100%, 42.5rem);
  margin: 0 auto clamp(2.25rem, 4vw, 3.125rem);
  text-align: center;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0875rem;
  color: var(--primary-dark, #55a500);
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark, #121713);
}

.faq-heading h2 strong {
  display: block;
  color: var(--primary-dark, #55a500);
}

.faq-heading p {
  width: min(100%, 35.625rem);
  margin: 1.125rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light, #667066);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}

.faq-tabs {
  position: relative;
  top: auto;
  display: grid;
  align-content: start;
  gap: 0.45rem;
  height: 100%;
  padding: 0.7rem;
  border: 1px solid var(--border, #dce5d8);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-small, 0 8px 25px rgba(18, 23, 19, 0.08));
  background-color: var(--white, #ffffff);
}

.faq-tab {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.8rem;
  width: 100%;
  min-height: 4.5rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background-color: transparent;
  text-align: left;
  color: var(--text, #202420);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.faq-tab > i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.8rem;
  background-color: var(--primary-light, #efffdc);
  font-size: 1rem;
  color: var(--primary-dark, #55a500);
  transition:
    color 0.22s ease,
    background-color 0.22s ease;
}

.faq-tab span {
  align-self: end;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.faq-tab small {
  align-self: start;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light, #667066);
}

.faq-tab:hover {
  background-color: var(--primary-light, #efffdc);
  color: var(--primary-dark, #55a500);
  transform: translateX(0.15rem);
}

.faq-tab.is-active {
  border-color: var(--dark, #121713);
  box-shadow: 0 0.75rem 1.5rem rgba(18, 23, 19, 0.16);
  background-color: var(--dark, #121713);
  color: var(--white, #ffffff);
}

.faq-tab.is-active > i {
  background-color: var(--primary, #70c500);
  color: var(--dark, #121713);
}

.faq-tab.is-active small {
  color: rgba(255, 255, 255, 0.62);
}

.faq-tab:focus-visible,
.faq-question:focus-visible,
.faq-help-link:focus-visible {
  outline: 0.2rem solid var(--yellow, #f3b536);
  outline-offset: 0.18rem;
}

.faq-content {
  display: flex;
  min-width: 0;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel {
  width: 100%;
  min-height: 100%;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid var(--border, #dce5d8);
  border-radius: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-medium, 0 20px 45px rgba(18, 23, 19, 0.13));
  background-color: var(--white, #ffffff);
  animation: faq-panel-in 0.35s ease both;
}

@keyframes faq-panel-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.4rem clamp(0.3rem, 1.5vw, 0.8rem) clamp(1.1rem, 2.5vw, 1.6rem);
  border-bottom: 1px solid var(--border, #dce5d8);
}

.faq-panel-heading span:first-child {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark, #55a500);
}

.faq-panel-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
  color: var(--dark, #121713);
}

.faq-panel-heading .faq-panel-number {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(112, 197, 0, 0.16);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: clip;
  border: 1px solid var(--border, #dce5d8);
  border-radius: 1rem;
  background-color: var(--light, #f8faf7);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(112, 197, 0, 0.55);
}

.faq-item[open] {
  border-color: var(--primary, #70c500);
  box-shadow: 0 0.8rem 1.8rem rgba(18, 23, 19, 0.08);
  background-color: var(--white, #ffffff);
  transform: translateY(-0.1rem);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 1rem clamp(0.9rem, 2vw, 1.35rem);
  list-style: none;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 800;
  line-height: 1.45;
  color: var(--text, #202420);
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: "";
}

.faq-item[open] .faq-question {
  color: var(--primary-dark, #55a500);
}

.faq-toggle {
  position: relative;
  flex: 0 0 2.25rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border, #dce5d8);
  border-radius: 50%;
  background-color: var(--white, #ffffff);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.12rem;
  border-radius: 99px;
  background-color: currentColor;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-toggle {
  border-color: var(--primary-dark, #55a500);
  background-color: var(--primary-dark, #55a500);
  color: var(--white, #ffffff);
  transform: rotate(180deg);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 clamp(3.95rem, 7vw, 4.6rem) clamp(1.15rem, 2.5vw, 1.5rem)
    clamp(0.9rem, 2vw, 1.35rem);
  font-size: clamp(0.87rem, 1.4vw, 0.96rem);
  line-height: 1.75;
  color: var(--text-light, #667066);
}

.faq-help {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.2rem);
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1rem, 2.5vw, 1.4rem);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-small, 0 8px 25px rgba(18, 23, 19, 0.08));
  background:
    linear-gradient(120deg, rgba(112, 197, 0, 0.12), transparent 45%),
    var(--dark, #121713);
  color: var(--white, #ffffff);
}

.faq-help-icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background-color: var(--primary, #70c500);
  font-size: 1.1rem;
  color: var(--dark, #121713);
}

.faq-help span {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 800;
}

.faq-help p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.faq-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  background-color: var(--primary, #70c500);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  color: var(--dark, #121713);
  transition:
    background-color 0.22s ease,
    transform 0.22s ease;
}

.faq-help-link:hover {
  background-color: var(--yellow, #f3b536);
  transform: translateY(-0.15rem);
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-tabs {
    position: static;
    grid-template-columns: repeat(5, minmax(9.5rem, 1fr));
    overflow-x: auto;
    height: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .faq-tab {
    min-width: 9.5rem;
  }

  .faq-content {
    display: block;
  }

  .faq-panel {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding-inline: 0.8rem;
  }

  .faq-heading h2 strong {
    display: inline;
  }

  .faq-tabs {
    margin-inline: -0.8rem;
    padding-inline: 0.8rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
  }

  .faq-panel {
    padding: 0.8rem;
    border-radius: 1.3rem;
  }

  .faq-panel-heading {
    align-items: center;
  }

  .faq-panel-heading .faq-panel-number {
    font-size: 2.5rem;
  }

  .faq-question {
    gap: 0.7rem;
    min-height: 4.15rem;
  }

  .faq-toggle {
    flex-basis: 2rem;
    width: 2rem;
    height: 2rem;
  }

  .faq-answer p {
    padding-right: 1rem;
  }

  .faq-help {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .faq-help-link {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .faq-section {
    padding-inline: 0.65rem;
  }

  .faq-heading h2 {
    font-size: 1.85rem;
  }

  .faq-tabs {
    margin-inline: -0.65rem;
    padding-inline: 0.65rem;
  }

  .faq-tab {
    grid-template-columns: 2.3rem minmax(0, 1fr);
    column-gap: 0.65rem;
    min-width: 8.8rem;
  }

  .faq-tab > i {
    width: 2.3rem;
    height: 2.3rem;
  }

  .faq-panel {
    padding: 0.6rem;
  }

  .faq-panel-heading {
    padding-inline: 0.4rem;
  }

  .faq-panel-heading h3 {
    font-size: 1.2rem;
  }

  .faq-panel-heading .faq-panel-number {
    display: none;
  }

  .faq-question {
    padding-inline: 0.8rem;
    font-size: 0.84rem;
  }

  .faq-answer p {
    padding: 0 0.8rem 1rem;
    font-size: 0.82rem;
  }

  .faq-help {
    padding: 0.9rem;
  }
}

body.dark-mode .faq-section {
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(112, 197, 0, 0.08),
      transparent 25rem
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(243, 181, 54, 0.06),
      transparent 22rem
    ),
    #0d120e;
}

body.dark-mode .faq-heading h2,
body.dark-mode .faq-panel-heading h3 {
  color: #f5f8f3;
}

body.dark-mode .faq-heading p,
body.dark-mode .faq-answer p {
  color: #aeb9ac;
}

body.dark-mode .faq-tabs,
body.dark-mode .faq-panel,
body.dark-mode .faq-item[open] {
  border-color: #313d33;
  background-color: #171e18;
  color: white;
}

body.dark-mode .faq-item {
  border-color: #313d33;
  background-color: #111712;
}

body.dark-mode .faq-item[open] {
  border-color: var(--primary, #70c500);
}

body.dark-mode .faq-question {
  color: #edf3eb;
}

body.dark-mode .faq-item[open] .faq-question {
  color: #9be337;
}

body.dark-mode .faq-toggle {
  border-color: #3a473c;
  background-color: #202921;
}

body.dark-mode .faq-item[open] .faq-toggle {
  border-color: var(--primary-dark, #55a500);
  background-color: var(--primary-dark, #55a500);
}

body.dark-mode .faq-panel-heading {
  border-bottom-color: #313d33;
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-tab,
  .faq-item,
  .faq-answer,
  .faq-toggle,
  .faq-toggle::before,
  .faq-toggle::after,
  .faq-help-link {
    animation: none;
    transition: none;
  }
}
/* style du logo sur FAQ */
.logoContain1{
  width: 100%;
  height: 350px;
  display: flex;
  padding:0;
  justify-content: center;
  /* border:2px solid red; */

}
.logoContain iframe{
  width: 200%;
  height: 250px;
}

:root {
  --section-title-size: clamp(32px, 4vw, 50px);
}

.events-heading h2,
.about-content h2,
.contact-heading h2,
.testimonials-heading h2,
.faq-heading h2 {
  font-size: var(--section-title-size);
  line-height: 1.08;
}

@media (max-width: 320px) {
  :root {
    --section-title-size: 1.75rem;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  :root {
    --section-title-size: 1.9rem;
  }
}

@media (min-width: 376px) and (max-width: 480px) {
  :root {
    --section-title-size: 2rem;
  }
}

body.dark-mode .faq-tabs .faq-tab {
  color: #ffffff;
}

body.dark-mode .faq-tabs .faq-tab > span {
  color: #ffffff;
  opacity: 1;
  -webkit-text-fill-color: #ffffff;
}

.contact-section {
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
}



/* ajout */
/* ==========================================================
   PAGE BLOG
   ========================================================== */

.blog-page {
  min-height: 100vh;
  background-color: var(--light);
}

.blog-container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.blog-hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(112, 197, 0, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--white),
      var(--primary-light)
    );
  text-align: center;
}

.blog-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(112, 197, 0, 0.35);
  border-radius: 999px;
  background-color: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
}

.blog-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: var(--dark);
}

.blog-hero h1 strong {
  color: var(--primary);
}

.blog-hero p {
  max-width: 680px;
  margin-inline: auto;
  font-size: 17px;
  color: var(--text-light);
}

.blog-result-count {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.blog-content {
  padding: 80px 0 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 25px;
  box-shadow: var(--shadow-small);
  background-color: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-7px);
}

.blog-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: var(--primary-light);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 48px;
  color: var(--primary);
}

.blog-card-category {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background-color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
}

.blog-card-body {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  color: var(--text-light);
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta i {
  color: var(--primary-dark);
}

.blog-card h2 {
  margin-bottom: 13px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--dark);
}

.blog-card-body > p {
  color: var(--text-light);
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 55px;
}

.pagination-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.pagination-button:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.pagination-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.pagination-current {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

.blog-empty {
  max-width: 650px;
  margin-inline: auto;
  padding: 60px 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background-color: var(--white);
  text-align: center;
}

.blog-empty-icon {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  place-items: center;
  background-color: var(--primary-light);
  font-size: 34px;
  color: var(--primary-dark);
}

.blog-empty h2 {
  margin-bottom: 10px;
  color: var(--dark);
}

.blog-empty p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.blog-empty a {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: var(--primary);
  font-weight: 800;
  color: var(--dark);
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .blog-container {
    width: min(100% - 28px, var(--container-width));
  }

  .blog-hero {
    padding: 65px 0 55px;
  }

  .blog-content {
    padding: 55px 0 75px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-media {
    height: 210px;
  }

  .blog-pagination {
    flex-wrap: wrap;
    gap: 13px;
  }

  .pagination-current {
    width: 100%;
    order: -1;
    text-align: center;
  }
}

/* ==========================================================
   FORMULAIRE DE CONTACT
   ========================================================== */

.contact-form-section {
  padding: 100px 0;
  scroll-margin-top: 110px;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(112, 197, 0, 0.15),
      transparent 28%
    ),
    var(--light);
}

.contact-form-container {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(450px, 1fr);
  gap: 70px;
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

/* Présentation */

.contact-form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(112, 197, 0, 0.35);
  border-radius: 999px;
  background-color: var(--white);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-dark);
}

.contact-form-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  color: var(--dark);
}

.contact-form-intro h2 strong {
  color: var(--primary);
}

.contact-form-intro > p {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
}

.contact-form-benefits {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.contact-form-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.contact-form-benefits i {
  color: var(--primary-dark);
}

/* Carte */

.contact-form-card {
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-medium);
  background-color: var(--white);
}

.contact-form-messages {
  margin-bottom: 22px;
}

.contact-form-alert {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 14px 16px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form-alert--success {
  border: 1px solid rgba(112, 197, 0, 0.4);
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.contact-form-alert--error {
  border: 1px solid rgba(190, 40, 40, 0.3);
  background-color: #fff1f1;
  color: #a62929;
}

/* Champs */

.contact-message-form {
  position: relative;
  display: grid;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-field {
  display: grid;
  gap: 8px;
}

.contact-form-field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
}

.contact-form-field label > span {
  color: #b62929;
}

.contact-form-field label small {
  margin-left: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background-color: var(--light);
  color: var(--text);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.contact-form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(112, 197, 0, 0.14);
  background-color: var(--white);
}

.contact-form-error,
.contact-form-errors {
  font-size: 12px;
  font-weight: 700;
  color: #ad2727;
}

/* Champ anti-robot */

.contact-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bouton */

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 13px;
  background-color: var(--primary);
  font-weight: 800;
  color: var(--dark);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.contact-form-submit:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form-notice {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  text-align: center;
  color: var(--text-light);
}

.contact-form-notice i {
  margin-top: 2px;
  color: var(--primary-dark);
}

/* Responsive */

@media (max-width: 950px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-form-intro {
    text-align: center;
  }

  .contact-form-intro > p {
    margin-inline: auto;
  }

  .contact-form-benefits {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .contact-form-section {
    padding: 65px 0;
  }

  .contact-form-container {
    width: min(100% - 28px, var(--container-width));
  }

  .contact-form-card {
    padding: 24px 20px;
    border-radius: 21px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.testimonial-empty {
  grid-column: 1 / -1;
  padding: 40px 25px;
  border: 1px dashed var(--border);
  border-radius: 20px;
  text-align: center;
  color: var(--text-light);
}

.testimonial-empty > i {
  margin-bottom: 12px;
  font-size: 35px;
  color: var(--primary);
}

.testimonial-empty h4 {
  margin-bottom: 7px;
  color: var(--dark);
}

.testimonial-form-messages {
  margin-bottom: 18px;
}

.testimonial-form-message {
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-form-message.is-success {
  border: 1px solid rgba(112, 197, 0, 0.4);
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.testimonial-form-message.is-error,
.testimonial-field-error {
  color: #a62929;
}

.testimonial-form-message.is-error {
  border: 1px solid rgba(190, 40, 40, 0.3);
  background-color: #fff1f1;
}

.testimonial-field-error {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
}

/* ==========================================================
   MODE SOMBRE — SECTION CONTACT
   ========================================================== */

.contact-section,
.contact-form-section,
.contact-form-label,
.contact-form-card,
.contact-form-field input,
.contact-form-field textarea {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Section principale du contact */
body.dark-mode .contact-section {
  background:
    radial-gradient(
      circle at 83% 52%,
      rgba(112, 197, 0, 0.1),
      transparent 30%
    ),
    #0d120e;
}

body.dark-mode .contact-section::before {
  border-color: rgba(112, 197, 0, 0.18);
}

body.dark-mode .contact-section::after {
  background-color: rgba(112, 197, 0, 0.05);
}

/* En-tête du contact */
body.dark-mode .contact-heading > span {
  color: #9be337;
}

body.dark-mode .contact-heading h2 {
  color: #f5f8f3;
}

body.dark-mode .contact-heading p {
  color: #aeb9ac;
}

/* Conteneur des coordonnées */
body.dark-mode .contact-container {
  background: linear-gradient(
    155deg,
    rgba(15, 21, 16, 0.99),
    rgba(24, 37, 25, 0.98)
  );
}

/* Cartes téléphone, email et réseaux sociaux */
body.dark-mode .contact-item {
  border-color: rgba(255, 255, 255, 0.11);
  background-color: rgba(255, 255, 255, 0.045);
}

body.dark-mode a.contact-item:hover {
  border-color: rgba(112, 197, 0, 0.55);
  background-color: rgba(112, 197, 0, 0.1);
}

/* Section du formulaire */
body.dark-mode .contact-form-section {
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(112, 197, 0, 0.1),
      transparent 30%
    ),
    #111712;
}

/* Étiquette “Écrivez-nous” */
body.dark-mode .contact-form-label {
  border-color: #3b5830;
  background-color: #171e18;
  color: #9be337;
}

/* Titre du formulaire */
body.dark-mode .contact-form-intro h2 {
  color: #f5f8f3;
}

/* Paragraphes secondaires */
body.dark-mode .contact-form-intro > p,
body.dark-mode .contact-form-field label small,
body.dark-mode .contact-form-notice {
  color: #aeb9ac;
}

/* Avantages et labels */
body.dark-mode .contact-form-benefits span,
body.dark-mode .contact-form-field label {
  color: #e9efe7;
}

body.dark-mode .contact-form-benefits i,
body.dark-mode .contact-form-notice i {
  color: #9be337;
}

/* Carte contenant le formulaire */
body.dark-mode .contact-form-card {
  border-color: #313d33;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.28);
  background-color: #171e18;
}

/* Champs du formulaire */
body.dark-mode .contact-form-field input,
body.dark-mode .contact-form-field textarea {
  border-color: #344036;
  background-color: #101611;
  color: #f4f7f2;
}

/* Textes indicatifs des champs */
body.dark-mode .contact-form-field input::placeholder,
body.dark-mode .contact-form-field textarea::placeholder {
  color: #8f9b8e;
}

/* Champs sélectionnés */
body.dark-mode .contact-form-field input:focus,
body.dark-mode .contact-form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(112, 197, 0, 0.14);
  background-color: #131b14;
}

/* Message de succès */
body.dark-mode .contact-form-alert--success {
  border-color: rgba(112, 197, 0, 0.38);
  background-color: #213017;
  color: #b4ec67;
}

/* Message d’erreur */
body.dark-mode .contact-form-alert--error {
  border-color: rgba(238, 119, 119, 0.3);
  background-color: #2a1818;
  color: #ffb0b0;
}

body.dark-mode .contact-form-error,
body.dark-mode .contact-form-errors {
  color: #ff9d9d;
}

/* ==========================================================
   MODE SOMBRE — FORMULAIRE DE CONTACT
   ========================================================== */

/* Arrière-plan général */
html body.dark-mode .contact-form-section {
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(112, 197, 0, 0.1),
      transparent 30%
    ),
    #111712 !important;
}

/* Petit badge “Écrivez-nous” */
body.dark-mode .contact-form-label {
  border-color: #3b5830;
  background-color: #171e18;
  color: #9be337;
}

/* Titre principal */
body.dark-mode .contact-form-intro h2 {
  color: #f5f8f3;
}

body.dark-mode .contact-form-intro h2 strong {
  color: var(--primary);
}

/* Description */
body.dark-mode .contact-form-intro > p {
  color: #aeb9ac;
}

/* Liste des avantages */
body.dark-mode .contact-form-benefits span {
  color: #e9efe7;
}

body.dark-mode .contact-form-benefits i {
  color: #9be337;
}

/* Carte du formulaire */
body.dark-mode .contact-form-card {
  border-color: #313d33;
  background-color: #171e18;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

/* Titres des champs */
body.dark-mode .contact-form-field label {
  color: #e9efe7;
}

body.dark-mode .contact-form-field label small {
  color: #aeb9ac;
}

/* Inputs et textarea */
body.dark-mode .contact-form-field input,
body.dark-mode .contact-form-field textarea {
  border-color: #344036;
  background-color: #101611;
  color: #f4f7f2;
}

/* Placeholders */
body.dark-mode .contact-form-field input::placeholder,
body.dark-mode .contact-form-field textarea::placeholder {
  color: #8f9b8e;
}

/* Champs actifs */
body.dark-mode .contact-form-field input:focus,
body.dark-mode .contact-form-field textarea:focus {
  border-color: var(--primary);
  background-color: #131b14;
  box-shadow: 0 0 0 4px rgba(112, 197, 0, 0.14);
}

/* Message situé sous le bouton */
body.dark-mode .contact-form-notice {
  color: #aeb9ac;
}

body.dark-mode .contact-form-notice i {
  color: #9be337;
}

/* Message de succès */
body.dark-mode .contact-form-alert--success {
  border-color: rgba(112, 197, 0, 0.38);
  background-color: #213017;
  color: #b4ec67;
}

/* Messages d’erreur */
body.dark-mode .contact-form-alert--error {
  border-color: rgba(238, 119, 119, 0.3);
  background-color: #2a1818;
  color: #ffb0b0;
}

body.dark-mode .contact-form-error,
body.dark-mode .contact-form-errors {
  color: #ff9d9d;
}

/* ==========================================================
   ARTICLES DYNAMIQUES DANS LA SECTION ÉVÉNEMENTS
   ========================================================== */

/* Le titre de la carte devient cliquable */
.event-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.event-content h3 a:hover {
    color: var(--primary);
}

/* Image absente */
.event-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
    gap: 12px;
    color: var(--primary);
    background:
        linear-gradient(
            135deg,
            rgba(102, 204, 0, 0.12),
            rgba(102, 204, 0, 0.03)
        );
}

.event-image-placeholder i {
    font-size: 3rem;
}

.event-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Empêche le résumé de rendre les cartes trop hautes */
.event-content > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* État vide */
.events-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 760px;
    min-height: 260px;
    margin: 30px auto 0;
    padding: 45px 30px;
    text-align: center;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-light);
}

.events-empty-icon {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
    color: var(--primaryn);
    font-size: 2rem;
    background-color: rgba(102, 204, 0, 0.12);
    border-radius: 50%;
}

.events-empty h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 1.5rem;
}

.events-empty p {
    max-width: 500px;
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

/* ==========================================================
   MODE SOMBRE
   ========================================================== */

body.dark-mode .event-content h3 a {
    color: #f4f6f2;
}

body.dark-mode .event-content h3 a:hover {
    color: var(--primary);
}

body.dark-mode .event-image-placeholder {
    color: var(--primary);
    background:
        linear-gradient(
            135deg,
            rgba(102, 204, 0, 0.16),
            rgba(255, 255, 255, 0.02)
        ),
        #181c18;
}

body.dark-mode .events-empty {
    background-color: #171a17;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

body.dark-mode .events-empty h3 {
    color: #f4f6f2;
}

body.dark-mode .events-empty p {
    color: #aeb5ad;
}

/* ==========================================================
   MODE SOMBRE — LIEN VOIR LES DÉTAILS
   ========================================================== */

body.dark-mode .event-link,
body.dark-mode .event-link i {
    color: #ffffff;
}

body.dark-mode .event-link:hover,
body.dark-mode .event-link:hover i {
    color: var(--primary);
}

/* Avis écrits dynamiques - administration PHP */
.testimonial-written-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:30px}
.testimonial-written-card{background:#fff;border:1px solid rgba(16,55,35,.12);border-radius:18px;padding:22px;box-shadow:0 12px 34px rgba(17,60,38,.08)}
.testimonial-written-stars{display:flex;gap:4px;margin-bottom:12px;color:#138a4b}
.testimonial-written-card p{margin:0 0 16px;line-height:1.7;color:#34443b}
.testimonial-written-card footer{display:flex;flex-direction:column;gap:3px}.testimonial-written-card footer span{font-size:.88rem;color:#748078}
@media(max-width:900px){.testimonial-written-grid{grid-template-columns:1fr}}

/* ==========================================================
   CORRECTION 2026 - SECTION TÉMOIGNAGES
   Cette partie est volontairement regroupée à la fin du CSS
   pour être facile à retrouver et à modifier.
   ========================================================== */
.testimonials {
  background:
    radial-gradient(circle at 12% 15%, rgba(112, 197, 0, .22), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(85, 165, 0, .18), transparent 30%),
    linear-gradient(135deg, #eef8e8 0%, #f8faf6 48%, #e2f2d7 100%);
}

.testimonial-media-heading,
.testimonial-video-info,
.testimonial-capture-card,
.testimonial-video-item,
.testimonial-media-badge {
  border-color: rgba(85, 165, 0, .24);
}

.testimonial-video-info,
.testimonial-capture-card,
.testimonial-video-item,
.testimonial-media-badge {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 40px rgba(26, 65, 31, .09);
}

.testimonial-written-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.testimonial-written-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(139, 229, 28, .25);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(139, 229, 28, .16), transparent 38%),
    linear-gradient(145deg, #172019, #202c23);
  box-shadow: 0 18px 42px rgba(18, 32, 21, .18);
  color: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-written-card::before {
  content: "“";
  position: absolute;
  top: -18px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 1;
  color: rgba(139, 229, 28, .12);
  pointer-events: none;
}

.testimonial-written-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(18, 32, 21, .24);
}

.testimonial-written-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
  color: #8be51c;
}

.testimonial-written-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: #edf4eb;
}

.testimonial-written-card footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.testimonial-written-card footer strong {
  color: #ffffff;
  font-size: 15px;
}

.testimonial-written-card footer span {
  font-size: 13px;
  color: #a8bfaa;
}

body.dark-mode .testimonials {
  background:
    radial-gradient(circle at 12% 15%, rgba(112, 197, 0, .13), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(85, 165, 0, .10), transparent 30%),
    #101611;
}

body.dark-mode .testimonial-video-info,
body.dark-mode .testimonial-capture-card,
body.dark-mode .testimonial-video-item,
body.dark-mode .testimonial-media-badge {
  background: #182019;
  border-color: #314034;
}

@media (max-width: 1000px) {
  .testimonial-written-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .testimonial-written-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-written-card {
    min-height: auto;
  }
}

/* ==========================================================
   V3 - CTA SITE OFFICIEL + SLIDER PREMIUM TÉMOIGNAGES
   ========================================================== */
.btn-official-site{display:inline-flex;align-items:center;justify-content:center;gap:9px;border:1px solid rgba(255,255,255,.22);background:#172219;color:#fff;box-shadow:0 14px 35px rgba(15,34,20,.18)}.btn-official-site:hover{background:#253629;color:#a9ef55;transform:translateY(-2px)}.premium-testimonial-slider{margin-top:44px;padding:28px;border:1px solid rgba(78,118,84,.2);border-radius:28px;background:linear-gradient(145deg,#111a13,#1d2a20);box-shadow:0 26px 70px rgba(16,35,21,.22);overflow:hidden}.premium-testimonial-topbar{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:24px}.premium-testimonial-topbar>div:first-child{display:flex;flex-direction:column;gap:5px}.premium-testimonial-topbar span{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;color:#8be51c}.premium-testimonial-topbar strong{font-size:1.05rem;color:#fff}.premium-testimonial-controls{display:flex;gap:8px}.premium-testimonial-controls button{display:grid;width:42px;height:42px;place-items:center;border:1px solid rgba(255,255,255,.14);border-radius:50%;background:rgba(255,255,255,.06);color:#fff;cursor:pointer;transition:.2s ease}.premium-testimonial-controls button:hover{border-color:#8be51c;color:#8be51c;transform:translateY(-2px)}.premium-testimonial-viewport{overflow:hidden;border-radius:22px}.premium-testimonial-track{display:flex;transition:transform .55s cubic-bezier(.22,.8,.25,1)}.premium-testimonial-slide{position:relative;flex:0 0 100%;min-height:280px;padding:38px;border:1px solid rgba(139,229,28,.16);border-radius:22px;background:radial-gradient(circle at 92% 8%,rgba(139,229,28,.16),transparent 32%),linear-gradient(135deg,#1c2820,#233328);color:#fff}.premium-testimonial-quote{position:absolute;top:28px;right:32px;font-size:3.3rem;color:rgba(139,229,28,.12)}.premium-testimonial-stars{display:flex;gap:6px;margin-bottom:22px;color:#9dec3e}.premium-testimonial-slide blockquote{max-width:850px;margin:0;font-size:clamp(1.25rem,2.5vw,1.8rem);line-height:1.55;font-weight:650;color:#f3f8f1}.premium-testimonial-slide footer{display:flex;align-items:center;gap:14px;margin-top:30px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1)}.premium-testimonial-avatar{display:grid!important;width:48px;height:48px;place-items:center;border-radius:50%;background:#8be51c;color:#172019!important;font-size:1rem!important}.premium-testimonial-slide footer div{display:flex;flex-direction:column;gap:3px}.premium-testimonial-slide footer strong{color:#fff}.premium-testimonial-slide footer span{font-size:13px;text-transform:none;letter-spacing:0;color:#aebdad}.premium-testimonial-dots{display:flex;justify-content:center;gap:8px;margin-top:18px}.premium-testimonial-dots button{width:8px;height:8px;padding:0;border:0;border-radius:999px;background:#536056;cursor:pointer;transition:.25s ease}.premium-testimonial-dots button.is-active{width:28px;background:#8be51c}@media(max-width:650px){.premium-testimonial-slider{padding:18px}.premium-testimonial-topbar{align-items:flex-start}.premium-testimonial-slide{min-height:330px;padding:28px 24px}.hero-buttons{flex-wrap:wrap}.btn-official-site{width:100%}}

/* Résultats AJAX de la recherche MySQL */
.search-result-db{text-decoration:none}.search-result-db>span{display:flex;flex:1;flex-direction:column;gap:3px}.search-result-db strong{font-size:.92rem;color:inherit}.search-result-db small{font-size:.76rem;font-weight:500;line-height:1.45;color:var(--text-light)}body.dark-mode .search-result-db small{color:#aeb5ad}

/* ==========================================================
   V4 - SLIDER TÉMOIGNAGES PREMIUM : 3 CARTES VISIBLES
   ========================================================== */

.premium-testimonial-slider {
  position: relative;
  margin-top: 46px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(145, 225, 50, .16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(145,225,50,.13), transparent 25rem),
    radial-gradient(circle at 100% 100%, rgba(145,225,50,.08), transparent 22rem),
    linear-gradient(145deg, #0e1711 0%, #17251b 56%, #122019 100%);
  box-shadow: 0 30px 80px rgba(10, 27, 14, .26);
}

.premium-testimonial-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 30px 30px;
}

.premium-testimonial-topbar,
.premium-testimonial-viewport,
.premium-testimonial-dots {
  position: relative;
  z-index: 1;
}

.premium-testimonial-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 0 2px;
}

.premium-testimonial-topbar > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.premium-testimonial-topbar > div:first-child > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #98df3e;
}

.premium-testimonial-topbar > div:first-child > strong {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.35;
  color: #f5f8f4;
}

.premium-testimonial-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.premium-testimonial-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #eef5ec;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease;
}

.premium-testimonial-controls button:hover {
  border-color: rgba(152,223,62,.48);
  background: rgba(152,223,62,.09);
  color: #b4ee69;
  transform: translateY(-2px);
}

.premium-testimonial-viewport {
  overflow: hidden;
  width: 100%;
  padding: 13px 2px 18px;
  scroll-behavior: smooth;
}

.premium-testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  transform: none !important;
  transition: none !important;
}

.premium-testimonial-slide {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  flex-direction: column;
  min-width: 0;
  min-height: 325px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(142,220,47,.10), transparent 13rem),
    linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 16px 42px rgba(4, 15, 7, .16);
  color: #fff;
  opacity: .92;
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.2,.78,.24,1), border-color .35s ease, background .35s ease, box-shadow .35s ease, opacity .35s ease;
}

.premium-testimonial-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 58px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: rgba(151,225,61,.48);
  transition: width .35s ease, background .35s ease;
}

.premium-testimonial-slide.is-featured {
  z-index: 2;
  border-color: rgba(151,225,61,.36);
  background:
    radial-gradient(circle at 100% 0%, rgba(151,225,61,.18), transparent 14rem),
    linear-gradient(155deg, rgba(255,255,255,.105), rgba(255,255,255,.05));
  box-shadow: 0 23px 54px rgba(2, 14, 6, .28);
  opacity: 1;
  transform: translateY(-9px);
}

.premium-testimonial-slide.is-featured::after {
  width: 92px;
  background: #99e63d;
}

.premium-testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.premium-testimonial-index {
  display: inline-grid !important;
  width: 38px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  color: #87958a !important;
}

.premium-testimonial-stars {
  display: flex;
  gap: 4px;
  margin: 0;
  font-size: 11px;
  color: #a5e955;
}

.premium-testimonial-quote {
  position: static;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 13px;
  background: rgba(151,225,61,.1);
  font-size: 17px;
  color: #9ae53f;
}

.premium-testimonial-slide blockquote {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  max-width: none;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
  font-weight: 650;
  line-height: 1.68;
  letter-spacing: -.012em;
  color: #edf3ec;
}

.premium-testimonial-slide footer {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.premium-testimonial-avatar {
  display: grid !important;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(158,231,68,.42);
  border-radius: 15px;
  background:
    linear-gradient(145deg, #a4eb4b, #64ae09);
  box-shadow: 0 9px 22px rgba(92,164,7,.19);
  font-size: 14px !important;
  font-weight: 950 !important;
  color: #13200f !important;
}

.premium-testimonial-slide footer > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.premium-testimonial-slide footer strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}

.premium-testimonial-slide footer > div > span {
  overflow: hidden;
  font-size: 10px !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  text-overflow: ellipsis;
  text-transform: none !important;
  white-space: nowrap;
  color: #8fa092 !important;
}

.premium-testimonial-verified {
  display: grid !important;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 14px !important;
  color: #93dd38 !important;
}

.premium-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 5px;
}

.premium-testimonial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #526058;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.premium-testimonial-dots button.is-active {
  width: 27px;
  background: #98e13e;
}

@media (max-width: 1024px) {
  .premium-testimonial-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 700px) {
  .premium-testimonial-slider {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .premium-testimonial-topbar {
    align-items: flex-start;
  }

  .premium-testimonial-topbar > div:first-child > strong {
    font-size: 1rem;
  }

  .premium-testimonial-controls button {
    width: 40px;
    height: 40px;
  }

  .premium-testimonial-slide {
    flex-basis: 100%;
    min-height: 305px;
    padding: 23px;
  }

  .premium-testimonial-slide.is-featured {
    transform: none;
  }
}

/* V4.1 - Visuel individuel de chaque témoignage */
.premium-testimonial-photo {
  position: relative;
  height: 138px;
  margin: -10px -10px 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
  background: #111c15;
}

.premium-testimonial-photo img,
.premium-testimonial-photo-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.premium-testimonial-photo img {
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.75,.25,1), filter .35s ease;
}

.premium-testimonial-slide:hover .premium-testimonial-photo img {
  transform: scale(1.045);
}

.premium-testimonial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8,17,11,.58), transparent 62%);
}

.premium-testimonial-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 24%, rgba(158,232,70,.24), transparent 9rem),
    linear-gradient(135deg, #203126, #111d15);
}

.premium-testimonial-photo-placeholder span {
  position: relative;
  z-index: 1;
  display: grid !important;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(171,238,92,.34);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(170,236,91,.22), rgba(109,178,25,.1));
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
  font-size: 1.7rem !important;
  font-weight: 950 !important;
  color: #c9f58f !important;
}

.premium-testimonial-photo-placeholder i {
  position: absolute;
  right: 17px;
  bottom: 12px;
  font-size: 2.8rem;
  color: rgba(171,238,92,.08);
}

.premium-testimonial-photo-badge {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(13,24,16,.74);
  backdrop-filter: blur(10px);
  font-size: 8px !important;
  font-weight: 850 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  color: #dbe8da !important;
}

.premium-testimonial-photo-badge i {
  color: #9be542;
}

.premium-testimonial-slide {
  min-height: 475px;
}

@media (max-width: 700px) {
  .premium-testimonial-photo {
    height: 155px;
  }

  .premium-testimonial-slide {
    min-height: 470px;
  }
}

/* ==========================================================
   V6 - TÉMOIGNAGES : CAROUSEL COVERFLOW PREMIUM 3 CARTES
========================================================== */
.premium-testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(154, 229, 63, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 8%, rgba(153,230,61,.14), transparent 24rem),
    radial-gradient(circle at 88% 90%, rgba(88,153,29,.10), transparent 22rem),
    linear-gradient(145deg, #0b120d, #132019 50%, #0d1710);
  box-shadow: 0 34px 90px rgba(8, 22, 11, .32);
  isolation: isolate;
}

.premium-testimonial-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.premium-testimonial-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
}

.premium-testimonial-heading-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.premium-testimonial-heading-copy > span {
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: #9ee84a !important;
}

.premium-testimonial-heading-copy > strong {
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.3rem) !important;
  line-height: 1.35;
  color: #f4f8f2 !important;
}

.premium-testimonial-navigation {
  display: flex;
  align-items: center;
  gap: 14px;
}

.premium-testimonial-counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 76px;
  font-variant-numeric: tabular-nums;
}

.premium-testimonial-counter strong {
  font-size: 1.2rem !important;
  color: #a8ec55 !important;
}

.premium-testimonial-counter span,
.premium-testimonial-counter em {
  font-size: .76rem !important;
  font-style: normal;
  color: rgba(255,255,255,.46) !important;
}

.premium-testimonial-controls button {
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.premium-testimonial-viewport {
  position: relative;
  overflow: visible;
  min-height: 570px;
  padding: 28px 0 20px;
  perspective: 1600px;
  perspective-origin: 50% 42%;
}

.premium-testimonial-track {
  position: relative;
  display: block;
  width: 100%;
  min-height: 520px;
  transform-style: preserve-3d;
}

.premium-testimonial-slide {
  position: absolute;
  top: 8px;
  left: 50%;
  display: flex;
  width: min(34%, 410px);
  min-height: 500px;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 95% 4%, rgba(151,225,61,.12), transparent 13rem),
    linear-gradient(155deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 22px 55px rgba(1, 9, 4, .25);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.82) translateZ(-180px);
  transition:
    transform .72s cubic-bezier(.2,.78,.2,1),
    opacity .5s ease,
    filter .5s ease,
    border-color .5s ease,
    box-shadow .5s ease;
  will-change: transform, opacity;
}

.premium-testimonial-slide.is-prev,
.premium-testimonial-slide.is-next,
.premium-testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.premium-testimonial-slide.is-prev {
  z-index: 1;
  transform: translateX(-146%) rotateY(9deg) scale(.91) translateZ(-75px);
  filter: saturate(.86) brightness(.82);
}

.premium-testimonial-slide.is-active {
  z-index: 3;
  border-color: rgba(159,232,72,.40);
  box-shadow: 0 34px 75px rgba(2, 14, 6, .40), 0 0 0 1px rgba(156,229,69,.06) inset;
  opacity: 1;
  transform: translateX(-50%) rotateY(0deg) scale(1.015) translateZ(22px);
  filter: none;
}

.premium-testimonial-slide.is-next {
  z-index: 1;
  transform: translateX(46%) rotateY(-9deg) scale(.91) translateZ(-75px);
  filter: saturate(.86) brightness(.82);
}

.premium-testimonial-slide.is-hidden {
  z-index: 0;
  opacity: 0;
  transform: translateX(-50%) scale(.78) translateZ(-220px);
}

.premium-testimonial-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.045) 47%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}

.premium-testimonial-slide.is-active:hover::before {
  transform: translateX(120%);
}

.premium-testimonial-slide.is-active::after {
  width: 110px;
  background: linear-gradient(90deg, #90df36, #c4f782);
}

.premium-testimonial-photo {
  height: 155px;
  margin: -7px -7px 20px;
  border-radius: 18px;
}

.premium-testimonial-slide.is-active .premium-testimonial-photo {
  box-shadow: 0 18px 34px rgba(0,0,0,.2);
}

.premium-testimonial-slide blockquote {
  -webkit-line-clamp: 4;
  font-size: clamp(.93rem, 1.15vw, 1.05rem);
}

.premium-testimonial-dots {
  margin-top: 2px;
}

.premium-testimonial-dots button {
  height: 5px;
  background: rgba(255,255,255,.18);
}

.premium-testimonial-dots button.is-active {
  width: 34px;
  background: linear-gradient(90deg, #7fcb24, #b9ef75);
}

@media (max-width: 1050px) {
  .premium-testimonial-viewport {
    min-height: 540px;
  }

  .premium-testimonial-slide {
    width: min(45%, 390px);
    min-height: 470px;
  }

  .premium-testimonial-slide.is-prev {
    transform: translateX(-128%) rotateY(8deg) scale(.88);
  }

  .premium-testimonial-slide.is-next {
    transform: translateX(28%) rotateY(-8deg) scale(.88);
  }
}

@media (max-width: 760px) {
  .premium-testimonial-slider {
    padding: 20px 14px;
    border-radius: 26px;
  }

  .premium-testimonial-topbar {
    align-items: flex-start;
  }

  .premium-testimonial-counter {
    display: none;
  }

  .premium-testimonial-viewport {
    min-height: 530px;
    overflow: hidden;
  }

  .premium-testimonial-track {
    min-height: 500px;
  }

  .premium-testimonial-slide {
    width: min(88%, 390px);
    min-height: 470px;
  }

  .premium-testimonial-slide.is-prev {
    opacity: .28;
    transform: translateX(-132%) scale(.83);
  }

  .premium-testimonial-slide.is-active {
    transform: translateX(-50%) scale(1);
  }

  .premium-testimonial-slide.is-next {
    opacity: .28;
    transform: translateX(32%) scale(.83);
  }
}

/* V13 - état vide des vidéos désormais entièrement gérées depuis MySQL */
.managed-video-empty {
  min-height: 320px;
  width: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 32px;
  border: 1px dashed rgba(112,197,0,.24);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(112,197,0,.055), rgba(10,18,13,.035));
  text-align: center;
  color: var(--text);
}
.managed-video-empty i { font-size: 2rem; color: var(--primary); }
.managed-video-empty strong { font-size: 1.05rem; color: var(--dark); }
.managed-video-empty span { color: var(--text); opacity: .72; }
body.dark-mode .managed-video-empty strong { color: #fff; }

/* ==========================================================
   V25 — FANATSARANA NY HAFAINGANANA (Core Web Vitals)
   Natao mba tsy hiovaova ny pejy rehefa tonga ny sary (CLS).
   ========================================================== */

/* Sary sy horonan-tsary rehetra : mitazona ny endriny */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Sary lehibe indrindra (LCP) : voatokana ny toerany mialoha */
.hero-visual {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;   /* 1280x720 */
  display: block;
}

/* Sary avy amin'ny base : manokana toerana alohan'ny hahatongavany */
.event-image img,
.tvs-slide-media img,
.premium-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================
   LIEN D'EVITEMENT (accessibilite)
   Hors ecran tant qu'il n'a pas le focus ; il apparait des que
   l'utilisateur appuie sur Tab en arrivant sur la page.
   ========================================================== */
.lien-evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: #8be51c;
  color: #0d120e;
  font-weight: 700;
  border-radius: 0 0 10px 0;
  text-decoration: none;
}

.lien-evitement:focus {
  left: 0;
  outline: 3px solid #fff;
  outline-offset: -3px;
}
