/* TOKENS */
:root {
  --blue:       #1DACD6;
  --blue-dark:  #1591B8;
  --blue-dark-2:#283891;
  --blue-light: #8ec8ed;
  --pink:       #E05478;
  --pink2:      #ec2d7c;
  --purple:     #534fa1;
  --purple-dk:     #273992;
  --orange:     #F5A623;
  --orange-dk:  #D48E10;
  --green:      #54b7a1;
  --navy:       #1A3A5C;
  --bg-light:   #EAF6FB;
  --white:      #FFFFFF;
  --text:       #1A3A5C;
  --border:     #C5E3F0;
  --radius-sm:  10px;
  --radius:     14px;
  --radius-lg:  20px;
  --font:       'Nunito', sans-serif;
  --max-xl:     1400px;
  --max-desktop:1100px;
}

/* Commun */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }


/* HEADER */
header {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 24px;
}

.header {
  display: block;
}
header .inner {
  display: block;
  max-width: var(--max-desktop);
  margin: 0 auto;
}


/* Logo */
.logo-area {
  display: inline-block;
  vertical-align: top;
  width:180px;
  padding: 15px 15px 15px 15px;
}
.logo-img {
  width: 150px;
}
.logo-img img {
  width: 100%;
  height: auto;
}

.header-center{
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 375px);
}
/* ACCESSIBILITY BAR */
.a11y-bar {
  display: inline-block;
  vertical-align: top;
  text-align: right;
  width:180px;
  padding: 25px 15px 15px 15px;
  background: var(--white);
}
.font-resize {
  display: block;
}
.btn-a-plus,
.btn-a-minus {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  width: 40px;
  display: inline-block;
}
.btn-a-plus img,
.btn-a-minus img {
  width: 28px;
  height: 28px;
}
.btn-sound {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: none;
  text-align: right;
  padding: 0 15px 0 0;
  transition: opacity 0.2s;
}
.btn-sound:hover { opacity: 0.8; }
.btn-sound img { width: 80px; height: 80px; }
#speaker-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 14px;
  margin-right: 5px;
}
#speaker-btn:hover {
  background: #eedaec;
}
#speaker-btn.active {
  background: #e8f0fe;
  border-color: #378ADD;
  color: #185FA5;
}
#speaker-btn.active:hover {
  background: #eedaec;
}

/* Nav */
nav {
  display: flex;
  width: 100%;
  gap: 28px;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 60px;
}
nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--pink); }
.nav-icon {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon img {
  width: 32px;
  height: 32px;
}


.header {
  width:100%;
  padding: 40px 0 0px;
}

.content-area{
  display: block;
  width: 100%;
  margin-top: 235px;
}

header.sticky {
    position: fixed !important;
    height: 120px;
    width: 100%;
    z-index: 999;
    margin: 0 0 0 0;
    padding: 0;
}
header.sticky .logo-area {
  width:180px;
  padding: 5px 15px 5px 15px;
}
header.sticky .header-inner {
  padding: 0;
}
header.sticky .logo-img {
  width: 80px;
}
header.sticky .header-center{
  width: calc(100% - 375px);
}
header.sticky nav {
  padding-top: 15px;
}
header.sticky .a11y-bar {
  width:180px;
  padding: 0 0 0 0;
}
header.sticky .btn-a-plus,
header.sticky .btn-a-minus {
  width: 35px;
}
header.sticky .btn-a-plus img,
header.sticky .btn-a-minus img {
  width: 25px;
  height: 25px;
}
header.sticky .btn-sound {
  width: 60px;
  height: 60px;
}
header.sticky .btn-sound img { width: 60px; height: 60px; }
header.sticky #speaker-btn {
  margin-right: 10px;
}

/* FOOTER */
.footer-band {
  padding: 24px 0 30px 0;
}
.footer-inner {
  max-width: 100%;
  margin: 0 auto;
}
.footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  background: var(--bg-light);
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.partner-icon { width: 65px; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.social-row a {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: background 0.2s;
}
.social-row a:hover { background: var(--blue-dark); }

.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-icon { width:45px; }

/* BREAKPOINTS
   xl  : ≥ 1280px  (grand écran)
   lg  : 1024–1279 (ordi classique) ← styles de base
   md  : 768–1023  (tablette)
   sm  : < 768     (mobile)
*/

/*  GRAND ÉCRAN (≥ 1280px)  */
@media (min-width: 1280px) {
  :root { --max-desktop: 1260px; }

  header { padding: 15px 60px 0; }
  .logo-img { width: 150px; }
  .header-center { width: calc(100% - 375px); }
  .a11y-bar { width: 180px; }
  .btn-a-plus img, .btn-a-minus img { width: 32px; height: 32px; }
  .btn-sound img { width: 80px; height: 80px; }
  .btn-sound { width: 80px; height: 80px; }

  nav { gap: 36px; }
  nav a { font-size: 0.85rem; }
  .nav-icon { width: 56px; }
  .nav-icon img { width: 36px; height: 36px; }

  .header { padding: 5px 0 5px; }

  .footer-band  { padding: 28px 0 30px 0; }
  .footer-partners { gap: 60px; }
  .trust-row    { gap: 48px; }
}

/*  PETIT ÉCRAN (≥ 1024px)  */
@media (min-width: 1024px) {
  .header { padding: 5px 0 5px; }

  header.sticky { height: 100px; }
  header.sticky .btn-a-plus img, header.sticky .btn-a-minus img { width: 22px; height: 22px; }
  header.sticky .btn-a-plus, header.sticky .btn-a-minus { width: 32px; }
  header.sticky .btn-sound { width: 55px; height: 55px; margin-right: 3px; }
  header.sticky .btn-sound img { width: 55px; height: 55px;}

}

/*  TABLETTE (768px – 1023px)  */
@media (max-width: 1023px) and (min-width: 768px) {


  header { padding: 10px 20px; gap: 16px; }

  .header { padding: 5px 0 5px; }
  .logo-img { width: 120px; }
  .header-center { width: calc(100% - 315px); }
  .a11y-bar { width: 120px; }
  .btn-a-plus img, .btn-a-minus img { width: 24px; height: 24px; }
  .btn-a-plus, .btn-a-minus { width: 34px; }
  .btn-sound { width: 55px; height: 55px; margin-right: 3px; }
  .btn-sound img { width: 55px; height: 55px;}
  nav { gap: 16px; padding-top: 50px;}
  nav a { font-size: 0.7rem; }
  .nav-icon { width: 40px; }
  .nav-icon img { width: 26px; height: 26px; }

  header.sticky { height: 100px; }
  header.sticky .header-center{
    width: calc(100% - 370px);
  }
  header.sticky nav {
    padding-top: 20px;
  }
  header.sticky .btn-a-plus img, header.sticky .btn-a-minus img { width: 22px; height: 22px; }
  header.sticky .btn-a-plus, header.sticky .btn-a-minus { width: 32px; }
  header.sticky .btn-sound { width: 55px; height: 55px; margin-right: 3px; }
  header.sticky .btn-sound img { width: 55px; height: 55px;}

  .footer-band  { padding: 18px 0 30px 0; }
  .footer-partners { gap: 20px; }
  .trust-row    { gap: 20px; }
}

/*  MOBILE (< 768px)  */
@media (max-width: 767px) {
  header { padding: 10px 14px; flex-wrap: nowrap; }
  header .inner{
    display: flex;
    flex-wrap: wrap;
  }
  header .logo-area{
    order: 1;
    width: calc(100% - 110px);
  }
  header .header-center{
    order: 3;
    width: 100%;
  }
  header .a11y-bar{
    order: 2;
    width: 110px;
  }

  .logo-img { width: 110px; margin-left: 50%; }
  .btn-a-plus img, .btn-a-minus img { width: 24px; height: 24px; }
  .btn-a-plus, .btn-a-minus { width: 34px; }
  .btn-sound { width: 55px; height: 55px; margin-right: 3px; }
  .btn-sound img { width: 55px; height: 55px;}
  header.sticky .btn-a-plus img, header.sticky .btn-a-minus img { width: 22px; height: 22px; }
  header.sticky .btn-a-plus, header.sticky .btn-a-minus { width: 32px; }
  header.sticky .btn-sound { width: 55px; height: 55px; margin-right: 3px; }
  header.sticky .btn-sound img { width: 55px; height: 55px;}

  .header { padding: 0 0 14px; }

  nav {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .nav-icon {
    width: 60px;
  }
  .nav-icon img {
    width: 52px;
    height: 52px;
  }

  /* Footer */
  .footer-band { padding: 16px 0 30px 0; }
  .footer-partners {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }
  .trust-row {
    gap: 12px;
    flex-direction: inherit;
    align-items: center;
  }
  .trust-item {
    margin: 0 35px 0 35px;
  }
  .trust-txt{ display: none;}

  header.sticky {
      position: absolute !important;
  }
}




[audio-play] {
  border-radius: 6px;
  transition: background 0.15s, outline 0.15s;
}
/*.audio-selecting a {
  pointer-events: none;
}
.audio-selecting [audio-play] a {
  cursor: pointer;
  outline: 1.5px dashed #aaa;
  outline-offset: 3px;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 44 44' fill='none' stroke='%23185FA5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='22' cy='22' r='21' fill='white' stroke='%23185FA5' stroke-width='1'/%3E%3Cg transform='translate(10,10)'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3C/g%3E%3C/svg%3E") 22 22, pointer;
}*/
.audio-selecting [audio-play] {
  cursor: pointer;
  outline: 1.5px dashed #aaa;
  outline-offset: 3px;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 44 44' fill='none' stroke='%23185FA5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='22' cy='22' r='21' fill='white' stroke='%23185FA5' stroke-width='1'/%3E%3Cg transform='translate(10,10)'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3C/g%3E%3C/svg%3E") 22 22, pointer;
}
.audio-selecting [audio-play]:hover {
  /*background: #f5f5f5;*/
  outline: 1.5px solid #666;
}
.audio-selecting [audio-play].audio-active {
  /*background: #e8f0fe;*/
  outline: 2px solid #378ADD;
}

#audio-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e8f0fe;
  border-top: 1px solid #378ADD;
  padding: 12px 20px;
  z-index: 1000;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#audio-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
#audio-banner-icon {
  width: 60px;
  flex-shrink: 0;
}
#audio-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  font-size: 14px;
  color: #185FA5;
}
#audio-banner-text strong {
  font-size: 15px;
}
#audio-banner-close {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #378ADD;
  background: white;
  color: #185FA5;
  font-size: 14px;
  cursor: pointer;
}
#audio-banner-close:hover {
  background: #378ADD;
  color: white;
}

.title-bloc{
  display: inline-block;

}
.title-bloc h1, .title-bloc h2, .title-bloc h3, .title-bloc p{
  display: inline-block;
  clear: both;
}

/* map */
.map-grid{
  background-color: #1fa6de;
  border-radius: 25px;
  width: 100%;
  height: 70vh;
  margin-bottom: 25px;
}
.map-grid img{
  height: 70vh;
  margin: 0 auto 0 auto;
}

.map-legend{
  display: inline-block;
  width: 49%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.map-legend-pink{ color:#d18fb6; }
.map-legend-pink2{ color:#ec2d7c; }
.map-legend-green{ color:#54b7a1; }
.map-legend-blue{ color:#629a99; }
.map-legend-yellow{ color:#e0cc84; }
.map-legend-orange{ color:var(--orange); }

.boussole-bloc{
  width: 450px;
  background-color: #f9a937;
  color: #000000;
  border-radius: 15px;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px auto;

}
.boussole-bloc img{
  float: left;
  width: 75px;
  margin: 10px 15px 0 15px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 5px 24px 28px;
  background: var(--white);
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero p {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
}
.hero h3 {
  font-size: clamp(1.4rem, 3.8vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 6px;
}
/* CTA CARDS */
.cta-section {
  padding: 0 24px 28px;
}
.inner {
  max-width: var(--max-desktop);
  margin: 0 auto;
}
.inner-2col {
  max-width: calc(var(--max-desktop) / 1.5);
  margin: 0 auto;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cta-grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}
.cta-card {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.cta-card.blue   { background: var(--blue); }
.cta-card.pink   { background: var(--pink); }
.cta-card.pink2   { background: var(--pink2); }
.cta-card.orange { background: var(--orange); }
.cta-card.purple { background: var(--purple); }
.cta-card.purple-dk { background: var(--purple-dk); }
.card-icon { width: 100px; line-height: 1; }
.card-body{
  text-align: center;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.card-sub {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.cta-card-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
}
.cta-card-col-label {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 20px;
}
.cta-card-col-label:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

.cta-card-col-label.blue-light   { background: var(--blue-light); }
.cta-card-col-label.blue-dark   { background: var(--blue-dark); }
.cta-card-col-label.blue-dark-2   { background: var(--blue-dark-2); }
.cta-card-col-label.blue   { background: var(--blue); }
.cta-card-col-label.pink   { background: var(--pink); }
.cta-card-col-label.pink2   { background: var(--pink2); }
.cta-card-col-label.orange { background: var(--orange); }
.cta-card-col-label.green { background: var(--green); }
.cta-card-col-label.purple { background: var(--purple); }
.cta-card-col-label.purple-dk { background: var(--purple-dk); }

.cta-card-col-descript{
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}
.cta-card-col-descript-b{
  font-size: 1.5rem;
  color: var(--blue-dark);;
}

.cta-card-col-label .card-icon{
  margin: 0 auto 15px auto;
}

.cta-card-col-link-a{
  display: block;
  text-align: left;
  padding: 1px 5px 1px 5px;
}
.cta-card-col-link img{
  width: 30px;
  flex-shrink: 0;
}
.cta-card-col-link{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  padding: 1px 5px 1px 5px;
}

.label-blue  { color: var(--blue); }
.label-green { color: var(--green); }
.label-purple { color: var(--purple); }
.label-pink { color: var(--pink); }
.label-pink2 { color: var(--pink2); }
.label-orange { color: var(--orange); }
.label-orange-dk { color: var(--orange-dk); }

.cta-card-col-txt-a{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  padding: 1px 5px 1px 5px;
}
.cta-card-col-txt-b{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  padding: 1px 5px 1px 15px;
}
.cta-card-col-txt-b{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  padding: 1px 5px 1px 15px;
}
.back-btn img{
  width: 40px;
  flex-shrink: 0;
}
.back-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: left;
}


/* SEARCH */
.search-section {
  max-width: var(--max-desktop);
  margin: 0 auto;
  padding: 4px 24px 60px;
  text-align: center;
}
.search-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.search-bar {
  display: flex;
  border: 2px solid var(--navy);
  border-radius: 10px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 20px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--blue);
  background: var(--white);
}
.search-bar input::placeholder { color: var(--blue); opacity: 0.6; }
.search-bar button {
  background: var(--orange);
  border: none;
  padding: 11px 20px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-bar button:hover { background: var(--orange-dk); }

.search-bar img{
  width: 20px;
}

.search-bar-2 {
  display: flex;
  border: 2px solid var(--navy);
  border-radius: 10px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}
.search-bar-2 input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 20px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--blue);
  background: var(--white);
}
.search-bar-2 input::placeholder { color: var(--blue); opacity: 0.6; }
.search-section button {
  background: var(--blue);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;

}
.search-section-center{
  margin: 25px auto 25px auto;
}
.search-section button:hover { background: var(--orange-dk); }

.search-section img{
  width: 20px;
}

/* INFO CARDS */
.info-section {
  padding: 0 24px 32px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(29,172,214,0.15);
}
.info-icon { width: 50px; flex-shrink: 0; }
.info-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.info-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
}
.right-ico{
  margin-left: auto;
  width: 66px;
  flex-shrink: 0;
}
.right-ico img{
  display: inline-block;
  width: 30px;
}

.info-section-2 {
  padding: 0 24px 28px;
}
.info-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.info-card-2 {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-title-2 {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 1px 5px 1px 5px;
  color: var(--navy);
  line-height: 1.2;
}
.info-sub-2 {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: left;
  padding: 1px 5px 1px 5px;
  color: var(--blue);
}
.info-text-2 img{
  width: 30px;
  flex-shrink: 0;
}


.info-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* UTILITAIRES */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}


/*  GRAND ÉCRAN (≥ 1280px)  */
@media (min-width: 1280px) {

  .hero { padding: 5px 60px 36px; }

  .cta-section  { padding: 0 60px 36px; }
  .cta-grid     { gap: 24px; }
  .cta-card     { padding: 32px 28px; }
  .card-icon    { width: 100px; }
  .card-title   { font-size: 1.2rem; }
  .card-sub     { font-size: 0.95rem; }

  .search-section { padding: 4px 60px 36px; }
  .search-bar { max-width: 580px; }
  .dropdown { max-width: 580px; }
  .result-info { max-width: 580px; }

  .info-section { padding: 0 60px 40px; }
  .info-grid    { gap: 18px; }
  .info-card    { padding: 22px 20px; gap: 18px; }
  .info-icon    { width: 100px; }
  .info-title   { font-size: 1.2rem; }
  .info-sub     { font-size: 1.1rem; }



}

/*  PETIT ÉCRAN (≥ 1024px)  */
@media (min-width: 1024px) {

}

/*  TABLETTE (768px – 1023px)  */
@media (max-width: 1023px) and (min-width: 768px) {

  .hero { padding: 5px 20px 18px; }

  .cta-section { padding: 0 20px 20px; }
  .cta-grid    { gap: 10px; }
  .cta-card    { padding: 18px 14px; border-radius: var(--radius); }
  .card-icon   { width: 50px; }
  .card-title  { font-size: 0.9rem; }
  .card-sub    { font-size: 0.8rem; }

  .search-section { padding: 4px 20px 20px; }
  .search-bar     { max-width: 420px; }
  .dropdown { max-width: 420px; }
  .result-info { max-width: 420px; }

  .info-section { padding: 0 20px 24px; }
  .info-grid    { gap: 10px; }
  .info-card    { padding: 14px 12px; gap: 10px; }
  .info-icon    { font-size: 1.7rem; }
  .info-title   { font-size: 0.85rem; }
  .info-sub     { font-size: 0.75rem; }



}

/*  MOBILE (< 768px)  */
@media (max-width: 767px) {

  .content-area{
      margin-top: 300px;
  }

  .hero { padding: 5px 14px 14px; }

  /* CTA : 1 colonne, layout horizontal */
  .cta-section { padding: 0 14px 18px; }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cta-card {
    flex-direction: row;
    align-items: center;
    padding: 16px 18px;
    gap: 16px;
    border-radius: var(--radius);
  }
  .card-icon  { width: 50px; flex-shrink: 0; }
  .card-body  { display: flex; flex-direction: column; gap: 2px; }
  .card-body{ text-align: inherit; }
  .card-title { font-size: 0.95rem; }
  .card-sub   { font-size: 0.82rem; }

  /* Search */
  .search-section { padding: 4px 14px 30px; }
  .search-bar     { max-width: 100%; }
  .dropdown { max-width: 100%; }
  .result-info { max-width: 100%; }
  .search-bar input  { padding: 10px 14px; font-size: 0.85rem; }
  .search-bar button { padding: 10px 14px; font-size: 0.82rem; }

  /* Info : 1 colonne */
  .info-section { padding: 0 14px 22px; }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-card  { padding: 14px 14px; gap: 12px; }
  .info-icon  { font-size: 1.7rem; }

  .info-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-card-2 { padding: 14px 14px; gap: 12px; }

}

.field-area{
  margin: 0 0 25px 0;
}

.form-label{
  display: block;
  width: 100%;
}
.form-label-cel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 10px;
  background-color: var(--blue-dark-2);
  width: 100%;
  padding: 5px 15px 5px 15px;
}
.form-label-ico { width:35px; }
.form-label-txt { color: #FFFFFF; }

.form-field-span{
  width: 100%;
}

.form-field{
  border: 2px solid var(--blue-dark-2);
  border-radius: 10px;
  font-size: 1.5rem;
  color: #747474;
  padding: 5px 15px 5px 15px;
  float: none;
  width: 100%;
  margin-right: 0;
  box-sizing: border-box;
  color: var(--blue-dark-2);
}
.form-field-span textarea{
  height: 150px;
}
.form-field-span input, .form-field-span textarea {
  color: var(--blue-dark-2);
  opacity: 1;
}
.form-field-span input::placeholder, .form-field-span textarea::placeholder {
  color: #717797;
  opacity: 1;
}

.form-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 15px 10px 15px;
  color: #FFFFFF;
  border-radius: 10px;
  background-color: var(--blue-dark-2);
  border: 0;
}
.form-btn img{
  width: 30px;
}

.radio-btn {
  padding: 8px 20px;
  border: 1.5px solid #2563eb;
  background: #ffffff;
  color: #2563eb;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.15s, color 0.15s;
  user-select: none;
  margin: 0 15px 15px 0;
}

.radio-btn:hover {
  background: #eff6ff;
}

.radio-btn.selected {
  background: #bfdbfe;
  color: #1d4ed8;
  border-color: #1d4ed8;
}



/* Dropdown avec scroll */
.dropdown {
  position: relative;
  width:580px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  z-index: 100;
  display: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  margin: 0 auto;
}

.dropdown.open {
  display: block;
}

/* Zone scrollable limitée en hauteur */
.dropdown-scroll {
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Scrollbar fine et discrète */
.dropdown-scroll::-webkit-scrollbar { width: 5px; }
.dropdown-scroll::-webkit-scrollbar-track { background: transparent; }
.dropdown-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 99px; }
.dropdown-scroll::-webkit-scrollbar-thumb:hover { background: #bbb; }

/* Compteur en bas du dropdown si > 8 résultats */
.dropdown-footer {
  padding: 6px 12px;
  font-size: 12px;
  color: #aaa;
  border-top: 0.5px solid #eee;
  background: #fafafa;
  text-align: right;
  display: none;
}

.dd-item {
  padding: 9px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #1a1a18;
  border-bottom: 0.5px solid #f0f0f0;
  user-select: none;
}

.dd-item:last-child { border-bottom: none; }
.dd-item:hover, .dd-item.active { background: #f5f5f3; }

.dd-item .ville-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.dd-item .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  flex-shrink: 0;
}

.cp-label {
  font-size: 12px;
  color: #888;
}

.page-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
}

.p1 { background: #EAF3DE; color: #3B6D11; }
.p2 { background: #E6F1FB; color: #185FA5; }
.p3 { background: #FAEEDA; color: #854F0B; }
.p4 { background: #FBEAF0; color: #993556; }

.dd-empty {
  padding: 12px;
  font-size: 13px;
  color: #aaa;
  font-style: italic;
  text-align: center;
}

/* Info de résultat après sélection */
.result-info {
  margin: 12px auto;
  font-size: 13px;
  color: #555;
  min-height: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  width:580px;
}

.result-info .arrow { color: #aaa; }

.result-info a {
  color: #185FA5;
  text-decoration: underline;
  cursor: pointer;
}

.clear-btn {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  padding: 0;
  display: none;
  line-height: 1;
}

.clear-btn:hover { color: #555; }
