@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Inter:wght@300;400;500;600&family=Oleo+Script&display=swap");

/* --- Variables ---
   Couleurs, polices, arrondis et transitions réutilisées partout.
   --- */
:root {
  --fond-bleu: #99CCFF;	/* couleur du fond de page, avant c'était #99D0FF */
  --noir: #000000;
  --bleu: #0000FF;
  --bleu-lumineux: #008CFF;
  --gris: #999999;
  --bleu-titre: #4433FF; /* avant c'était #3300CC; */
  --noir: #000000;
  --blanc: #FFFFFF;
  --surface3: #97DEFB; /*#B9F0FF; /* plus clair que le fond */

  --bg: #0a0a0a;
  --surface: #141414; /* grisé, comme dans les "boites"  */
  --surface2: #1c1c1c;
  --surfaceGoogle: #EEEECC; /* blanc très légèrement gris jaune pour le fond des avis Google pour ne pas trop trancher d'avec le noir ambiant */
  --red: #EE3300;  /* #E02800; /* = 240, 40, 0 */ /*(FF4400)*/
  --red-survol: #FF051D;
  --jaune: #FFFF69;
  --gold: #d4a017;
  --text: #edebe6; /* blanc légèrement grisé */
/*  --text-m: #8a8680; */
  --text-m: #FFC8C8;
  --border: #2a2a2a;
/*  --fh: "Barlow Condensed", sans-serif; */
  --fh: "Times Roman";
 /* --fb: "Inter", sans-serif; */
  --fb: "Times Roman";
  --fs: "Oleo Script", cursive;
  --r: 6px;
  --rl: 12px;
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  /* --t-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1); */
}

/* reset des marges intérieures et extérieures des différents éléments de notre page
pour nous assurer d’avoir un affichage cohérent d’un navigateur à l’autre */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   BODY & GLOBAL
   Style de base de la page : fond noir, police, couleur texte.
   Les liens (a) ont un style uniforme sur tout le site.
   ============================================================ */
.body {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  background-color: var(--fond-bleu); 
}

a:link {color: var(--noir);} /* noir */  
a:visited {color: var(--noir);}
a:hover {
	color: var(--bleu);   
	text-decoration: none; /* pour ne pas souligner les liens hypertextes */
	}  

/* ============================================================
   SCROLL REVEAL — Animation au défilement
   Les éléments avec classe .reveal apparaissent en fondu
   quand on scrolle jusqu'à eux (activé par JavaScript).
   ============================================================ */
@keyframes revealFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
}
.reveal.visible {
  animation: revealFade 2s ease-out forwards;
}


/***************************************************************************************/
/* ============================================================
   BANDEAU
   ============================================================ */
.bandeau {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("nouveau-bandeau2.jpg");
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}

.bandeau::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0) 100%);
}

@media (min-width: 620px) {
  .bandeau {
    height: 200px;
    background-image: url("nouveau-bandeau2.jpg");
  }
}

@media (min-width: 1200px) {
  .bandeau {
    height: 300px;
  }
}

.pays {
  position: absolute;
  left: 20px;
  top: 7px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blanc);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}
@media (min-width: 620px) {
  .pays {
    left: 70px;
    top: 18px;
    font-size: 50px;
    letter-spacing: 6px;
  }
}
@media (min-width: 1000px) {
  .pays {
    left: 120px;
    top: 18px;
    font-size: 70px;
  }
} 

.liberte {
  position: absolute;
  left: 145px;
  top: 40px;
  font-family: var(--fs);
  font-size: 20px;
  color: var(--blanc);
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}
@media (min-width: 620px) {
  .liberte {
    left: 300px;
    top: 82px;
    font-size: 40px;
  }
}
@media (min-width: 1000px) {
  .liberte {
    left: 370px;
    top: 92px;
    font-size: 48px;
  }
} 

/* ============================================================
   BLOC VIDE
   ============================================================ */
.bloc-vide {
  position: relative;
  height: 165px;
  width: 100%;
}

@media (min-width: 620px) {
  .bloc-vide {
    height: 275px;
  }
}

@media (min-width: 1200px) {
  .bloc-vide {
    height: 375px;
  }
}

.bloc-vide-bis {    			
	position: relative;
	height: 150px;
	width: 100%;
}
@media (min-width: 620px) {  
	.bloc-vide-bis {
		position: relative;
		height: 237px;
		width: 100%;
	}
}
@media (min-width: 1200px) {
  .bloc-vide-bis {
    height: 350px;
  }
} 
/* ============================================================
   SÉPARATEURS POSITIONNÉS
   ============================================================ */
.separateur-haut {
  position: absolute;
  top: 101px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--bleu), transparent, var(--bleu));
}

@media (min-width: 620px) {
  .separateur-haut {
    top: 201px;
  }
}

@media (min-width: 1200px) {
  .separateur-haut {
    top: 301px;
  }
}

/* ============================================================
   FORMAT GENERAL DE LA PAGE
   ============================================================ */
.contenu-1000 {               /* pour un écran de moins de 320px  */ 
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-left: 3px;
	text-align: left; 
	color: var(--noir); 
	font-size: 15px;
}
@media (min-width: 320px) {  /* pour un écran d'au moins 320px mais moins de 620  */
	.contenu-1000 {
		padding: 15px;
		font-size: 17px;
	}
}
@media (min-width: 620px) {  /* pour un écran d'au moins 620px */
	.contenu-1000 {
		font-size: 18px;
		padding: 18px;
		max-width: 800px;
	}
}
@media (min-width: 1020px) { 
	.contenu-1000 {
		font-size: 20px;
		padding: 20px;
		max-width: 1000px;
	}
}

/* ============================================================
   contenu encadré informatif non cliquable
   ============================================================ */
.contenu-bulle {
  padding: 16px;
  background: var(--surface3);
  color: var(--noir);
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

@media (min-width: 620px) {
  .contenu-bulle {
    padding: 24px;
  }
}

@media (min-width: 1020px) {
  .contenu-bulle {
    padding: 28px;
  }
}

/* ============================================================
   FAQ / PROGRAMME SPÉCIAL
   ============================================================ */
.faq-page h1 {
  margin-bottom: 8px;
}

.faq-page h2 {
  scroll-margin-top: 95px;
  margin-top: 20px;
  /* margin-bottom: 8px; */
  padding-left: 10px;
  /* line-height: 1.15; */
}

.faq-quick-nav {
  margin: 6px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.faq-quick-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(140deg,
      rgba(230, 230, 255, 0.98),
      rgba(160, 160, 255, 0.98));
  color: var(--noir);
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-quick-nav a:hover {
  transform: translateY(-1px);
  border-color: #c8102e;
  background: linear-gradient(140deg,
      rgba(200, 16, 46, 0.35),
      rgba(20, 20, 20, 1));
  color: #fff;
}

.faq-page .contenu-programme-FAQ {
  position: relative;
  border: 1px solid rgba(0, 0, 255, 0.5);
  border-radius: 12px;
  border-top: 2px solid rgba(0, 0, 255, 0.9);
  background: linear-gradient(145deg,
      rgba(230, 230, 255, 0.98),
      rgba(160, 160, 255, 0.98));
  color: var(--noir);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  padding: 16px 14px;
  margin-bottom: 12px;
  text-align: left;
}

@media (min-width: 620px) {
  .faq-page {
    padding-top: 14px;
  }

  .faq-page h2 {
    margin-top: 26px;
  }

  .faq-quick-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
  }

  .faq-quick-nav a {
    min-height: 42px;
    font-size: 16px;
  }

  .faq-page .contenu-programme-FAQ {
    padding: 20px 18px;
    margin-bottom: 14px;
  }
}

@media (max-width: 619px) {
  .faq-page h2 {
    margin-top: 14px;
  }

  .faq-quick-nav a {
    font-size: 13px;
    min-height: 38px;
  }
}


/* ============================================================
   pour des bulles d'infos cliquables 
   ============================================================ */
.contenu-infos {
  padding: 14px 6px;
  background: var(--surface3);
  border-radius: var(--rl);
  border: 1px solid var(--border);
  border-top: 3px solid var(--bleu-lumineux);
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.contenu-infos:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
@media (min-width: 620px) {
  .contenu-infos {
    padding: 22px 20px;
    font-size: 22px;
  }
}
@media (min-width: 1020px) {
  .contenu-infos {
    padding: 26px 22px;
    font-size: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}



/**********************************************************************/
/* ------------------  STYLES DE PARAGRAPHES  ---------------         */
/* en cas de modification de la couleur, modifier aussi le "lien-paragraphe" ci-dessous */
.paragraphe {
  font-size: 26px;
  font-family: "Rouge Script";
  text-align: center;
  color: var(--noir);
}
@media (min-width: 620px) { /* pour un écran d'au moins 620px */
	.paragraphe {
	  font-size: 32px;
	}
}

.section-unique-1000	{ /* aucun effet si petit écran */
	padding: 0px;
}
@media (min-width: 620px) { /* pour un écran d'au moins 620px */
	.section-unique-1000	{ /* bloc de maximum 1000 de large, et avec des marges intérieures de 10 */
		max-width: 1000px;
		padding: 10px;
	}
}


/* ------------------  STYLES DE POLICE  ---------------         */
.titre1 {
  color: var(--bleu-titre);
  font-family: "Oleo Script";
  /*background-image: url("fond-titre-2.png"); 
  background-repeat: no-repeat; */
}

.titre-2 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--bleu-titre);
}
@media (min-width: 620px) {
	.titre-2 {
	  font-size: 36px;
	}
}

.police-centre {
  text-align: center;
}

/* boite de déco des titres de page quand il n'y a pas un bandeau */
.boitetitre {
  font-weight: bold;
  background-image: url("fond-menu-retraite.jpg"); 
  background-repeat: repeat-x; 
  font-size: 22px;
  padding: 8px;
  font-family: "Oleo Script";
  color: var(--blanc);
}
@media (min-width: 500px) {
	.boitetitre {
	  font-weight: bold;
	  background-image: url("fond-menu-retraite.jpg"); 
	  background-repeat: repeat-x; 
	  font-size: 24px;
	  padding: 10px;
	  font-family: "Oleo Script";
	  color: var(--blanc); 
	}
}
@media (min-width: 620px) { /* pour un écran d'au moins 620px */
	.boitetitre {
	  font-weight: bold;
	  background-image: url("fond-menu-retraite.jpg"); 
	  background-repeat: repeat-x; 
	  font-size: 34px;
	  padding-top: 10px;
	  padding-bottom: 10px;
	  padding-right: 30px;
	  padding-left: 30px;
	  font-family: "Oleo Script";
	  color: var(--blanc); 
	}
}

/* 153, 204, 255 correspond à --fond-bleu */
.paragraphe-intro {
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(153, 204, 255, 0.1),  rgba(220, 220, 255, 0.54),
      transparent 90%
    ),
	radial-gradient(
      circle at 10% 5%,
      rgba(153, 204, 255, 0.1),  rgba(220, 220, 255, 0.54),
      transparent 90%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 255, 0.5) 0%,
      rgba(153, 204, 255, 0.8) 20%,
      rgba(220, 220, 255, 1) 100%
    );
  border: 1px solid rgba(0, 0, 255, 0.28);
  border-radius: 16px;
  padding: 18px 14px 20px;
  margin-bottom: 24px;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.police-commentaire {
  font-size: 18px;
  text-align: center;
  font-family: "Times";
}

.italique {
  font-style: italic;
}



/************************************************/
/* ------------------  MARGES  ---------------- */
.marge-int-gauche-20 {
  padding-left: 0px;  /* pas marge intérieure pour les petits écrans */
}  
@media (min-width: 400px) { /* pour un écran d'au moins 400px */
	.marge-int-gauche-20 {
	  padding-left: 20px;  /* marge intérieure à gauche de 20px */
	}  
}
	
/* bordure pour les titres H3 */
.bordure-verticale-H3 {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 5px solid var(--bleu-titre); 
  line-height: 1.15;
}
	
/*********************************************************************************************/
/* ------------------------- blocs divers et variés ---------------------------------------- */
/* RAPPEL : margin : marge extérieure, padding : marge intérieure 
					(important pour les blocs colorés, et pour les 2 la taille des marges est à ajouter à la taille déclarée) */
/* gestion taille des images */
.image-auto {
	max-width : 100%;
	height : auto;
}

/* bloc centré, notamment pour les images */
.centre {
  display: block;
  margin-left: auto;
  margin-right: auto;
}



/*************************************************/
/* ------------------  SECTIONS  --------------- */
.largeur-article-1 {
  flex: 1;
  margin: 0px;          /* marge extérieure partout de 0px */
  padding: 5px;         /* marge intérieure de 5px */        
  min-width: 300px;      /* largeur minimal du bloc : attention si trop grand alors sur les téléphones portables ça dépasse!!!! */
}  

.largeur-article-2 {
  flex: 1;
  margin: 0px;          /* marge extérieure partout de 0px */
  padding-bottom: 10px;         /* marge intérieure de 10px */
  padding-right: 15px;         
  min-width: 300px;      /* largeur minimal du bloc : attention si trop grand alors sur les téléphones portables ça dépasse!!!! */
}  

.largeur-article-3 {
  flex: 15;
  margin: 0px;          /* marge extérieure partout de 0px */
  padding-bottom: 10px;         /* marge intérieure de 10px */
  padding-right: 15px;         
  min-width: 300px;      /* largeur minimal du bloc : attention si trop grand alors sur les téléphones portables ça dépasse!!!! */
}  

.largeur-article-4 {
  flex: 20;
  margin: 0px;          /* marge extérieure partout de 0px */
  padding-bottom: 10px;         /* marge intérieure de 10px */
  padding-right: 15px;         
  min-width: 300px;      /* largeur minimal du bloc : attention si trop grand alors sur les téléphones portables ça dépasse!!!! */
}  

.section {
  display: flex;
  flex-wrap: wrap;   /* pour s'afficher sur plusieurs lignes si besoin est */ 
  max-width: 1000px; /* largeur max de l'écran - ou du moins de cette section */
  /* align-items: center;    si on veut centrer verticalement les deux éléments */
}
	
/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll_to_top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  right: 20px;
  background: var(--bleu-lumineux);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px var(--bleu-titre);
  transition:
    transform var(--t),
    box-shadow var(--t),
    background var(--t),
    opacity 0.4s ease;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
#scroll_to_top.visible {
  opacity: 1;
  pointer-events: auto;
}
#scroll_to_top:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 30px var(--bleu);
  background: var(--bleu);
}
#scroll_to_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#scroll_to_top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   BOUTON CONTACT FLOTTANT
   ============================================================ */
.floating-contact {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bleu-lumineux);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 4px var(--bleu);
  transition:
    transform var(--t),
    box-shadow var(--t),
    background var(--t),
    opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  color: var(--noir) !important;
}
.floating-contact.visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-contact:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 35px var(--bleu);
  background: var(--bleu-titre);
  color: #fff  !important;
  text-decoration: none;
}
.floating-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--noir); /* donne la couleur noire à l'enveloppe à côté de "nous contacter" le bouton flottant */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.floating-contact:hover svg {
  stroke: #fff; /* donne la couleur blanche à l'enveloppe à côté de "nous contacter" le bouton flottant */
}
.floating-contact span {
  white-space: nowrap;
}
@media (max-width: 619px) {
  .floating-contact {
    padding: 14px;
    border-radius: 50%;
    bottom: 92px;
    left: 16px;
  }
  .floating-contact span {
    display: none;
  }
  #scroll_to_top {
    bottom: 92px;
    right: 16px;
  }
}

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.footer-site {
  background: #0d0d0d;
  border-top: 3px solid var(--bleu-lumineux);
  padding: 50px 24px 0;
  margin-top: 0;
}
.footer-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 48px;
  justify-content: space-around;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-title {
  color: var(--bleu-lumineux);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.footer-links li {
  margin-bottom: 7px;
}
.footer-links a {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-links a:hover {
  color: var(--bleu-lumineux);
}
.footer-contact-block {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.03);
}
.footer-contact-block p {
  color: var(--bleu-lumineux);
  font-size: 0.85rem;
  margin: 0 0 12px;
}
.footer-btn-contact {
  display: inline-block;
  background: var(--bleu-lumineux);
  color: var(--noir) !important;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.footer-btn-contact:hover {
  background: var(--fond-bleu);
  color: var(--noir) !important;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 5px 5px 5px var(--bleu-lumineux);
}
.footer-bottom {
  max-width: 100%;
  margin: 40px auto 0;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  color: var(--fond-bleu);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
@media (max-width: 619px) {
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }
  .footer-col {
    min-width: 0;
  }
}


/************************************************************/
/* ------------------  STYLES DE TABLEAUX  ---------------- */
.tab-police {
  font-size: 16px;
  text-align: center;
  font-family: var(--fb);
  color: var(--noir);
}
@media (min-width: 620px) {
  .tab-police {
    font-size: 20px;
    text-align: center;
    font-family: var(--fb);
    color: var(--noir);
  }
}
/* @media (max-width: 619px) {
  .tab-police {
    font-size: 11px;
  }
}  */
  
.tab1 {
  border-collapse: collapse; /* pour unifier entre elles les bordures des cases */
  table-layout: auto;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  min-width: 300px;
}

.tab1 td,
.tab1 th {
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 12px 8px;
  background-color: rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}
@media (min-width: 620px) {
  .tab1 td,
  .tab1 th {
    padding: 16px 12px;
  }
}

.tab1 td {
  background-color: rgba(255, 255, 255, 0.08);
}

.tab1 th {
  background-color: rgba(200, 16, 46, 0.4);
  color: var(--blanc);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.tab1 tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.12); /* blanc */
}

@media (max-width: 619px) {
  .tab1 {
  min-width: 0;
  table-layout: fixed;
  }
  .tab1 td,
  .tab1 th {
    padding: 6px 4px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
  }
}

/* ============================================================
   SECTION AVIS GOOGLE
   Grille de 4 avis réels, cliquables, redirigeant vers Google.
   ============================================================ */
.section-avis-google {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--bleu-lumineux);
  border-top: 1px solid var(--border);
  padding: 60px 20px 52px;
  box-sizing: border-box;
}
.sag-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.sag-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sag-title {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 5px;
}
.sag-rating-line {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sag-rating-line .sag-stars {
  color: #fbbc04;
  font-size: 19px;
  letter-spacing: 1px;
}
.sag-rating-line .sag-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--fb);
}
.sag-rating-line .sag-count {
  font-size: 17px;
  color: var(--text-m);
  font-family: var(--fb);
}
.sag-btn-all {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1.5px solid var(--bleu);
  background: var(--surface3);
  border-radius: var(--r);
  color: var(--bleu-titre);
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition:
    background var(--t),
    color var(--t);
}
.sag-btn-all:hover {
  background: var(--bleu-titre);
  color: #000 !important;
}
.sag-btn-all::after {
  display: none !important;
}

.sag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.sag-card {
  background: var(--fond-bleu);
  border-radius: var(--rl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  border: 1px solid var(--bleu);   
  height: 100%;
  transition:
    transform var(--t),
    border-color var(--t),
    box-shadow var(--t);
}
.sag-card:hover {
  transform: translateY(-3px);
  border: 3px solid; 
  border-color: var(--bleu-lumineux);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.sag-card::after {
  display: none !important;
}

.sag-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sag-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}
.sag-reviewer-name {
  display: block;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 600;
  color: var(--noir); 
}
.sag-reviewer-info {
  display: block;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--noir); 
  margin-top: 2px;
}
.sag-card-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.sag-card-star-icons {
  color: var(--bleu);
  font-size: 15px;
  letter-spacing: 0.5px;
}
.sag-card-date {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--noir); 
}
.sag-card-text {
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.65;
  color: var(--noir); 
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  flex-grow: 1;
}

.sag-cta-wrap {
  text-align: center;
  padding-top: 8px;
}
.sag-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--surface3);
  color: #202124 !important;
  font-family: var(--fb);
  font-size: 22px;
  font-weight: 700;
  border-radius: var(--r);
  text-decoration: none !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.sag-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
  color: #202124 !important;
}
.sag-cta-btn::after {
  display: none !important;
}
.sag-tagline {
  margin-top: 14px;
  font-family: var(--fb);
  font-size: 18px;
  color: var(--text-m);
  font-style: italic;
}

@media (max-width: 619px) {
  .section-avis-google {
    padding: 40px 16px 36px;
  }
  .sag-grid {
    grid-template-columns: 1fr;
  }
  .sag-title {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .sag-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sag-cta-btn {
    padding: 13px 24px;
    font-size: 13px;
  }
}

/* ============================================================
   SECTION ÉTAPES — COMMENT RÉSERVER (reservation.php)
   ============================================================ */
.resa-section {
  background: var(--bleu-lumineux);
  padding: 0 32px 80px;
  position: relative;
}

/* Fond subtil : ligne de séparation en haut */
.resa-section::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 16, 46, 0.4),
    transparent
  );
  margin-bottom: 0;
}

/* -- Intro -- */
.resa-intro {
  text-align: center;
  padding: 56px 20px 64px;
}
.resa-subtitle {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 600;
  color: var(--bleu);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5); /* fine ombre noire à moitié transparente */
}
.resa-subtitle-main {
  display: block;
  font-family: var(--fh);
  font-size: 38px;
  font-weight: 800;
  color: var(--blanc);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}
.resa-divider {
  width: 40px;
  height: 3px;
  background: var(--bleu);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* -- Grille 4 colonnes -- */
.resa-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  max-width: 1080px;
  margin: 0 auto 36px;
  gap: 0 18px;
}

/* Ligne fine entre les cercles */
.resa-flow::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(12.5% + 6px);
  right: calc(12.5% + 6px);
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

/* -- Colonne étape -- */
.resa-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* -- Cercle numéroté -- */
.resa-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bleu-titre);
  color: var(--blanc);
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.18);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s;
}
.resa-step:hover .resa-circle {
  transform: scale(1.08);
  box-shadow:
    0 0 0 6px rgba(200, 16, 46, 0.18),
    0 6px 22px rgba(200, 16, 46, 0.35);
}

/* -- Carte -- */
.resa-card {
  margin-top: 24px;
  background: var(--fond-bleu);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 30px 22px 28px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s,
    box-shadow 0.32s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Lueur rouge en haut de chaque carte */
.resa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(200, 16, 46, 0.1) 0%,
    transparent 100%
  );
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  transition: opacity 0.32s;
  opacity: 0.7;
}
.resa-step:hover .resa-card::before {
  opacity: 1;
}

.resa-step:hover .resa-card {
  transform: translateY(-7px);
  border-color: rgba(200, 16, 46, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(200, 16, 46, 0.12);
}

/* Bloc icône — carré arrondi avec gradient rouge */
.resa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.22),
    rgba(200, 16, 46, 0.06)
  );
  border: 1px solid rgba(200, 16, 46, 0.2);
  margin-bottom: 20px;
  transition:
    background 0.3s,
    border-color 0.3s;
  position: relative;
  z-index: 1;
}
.resa-step:hover .resa-icon {
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.35),
    rgba(200, 16, 46, 0.12)
  );
  border-color: rgba(200, 16, 46, 0.4);
}
.resa-icon i {
  font-size: 20px;
  color: var(--bleu);
}

.resa-title {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 700;
  color: var(--bleu-titre);
  margin: 0 0 10px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.resa-desc {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--noir);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 32ch;
}

/* -- Badges réassurance -- */
.resa-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto 48px;
}
.resa-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: var(--fb);
  font-size: 12.5px;
  color: var(--noir);
  white-space: nowrap;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.resa-badge-item:hover {
  border-color: rgba(200, 16, 46, 0.3);
  color: #ccc;
}
.resa-badge-item i {
  color: var(--bleu);
  font-size: 12px;
}

/* -- CTA -- */
.resa-cta-wrap {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.resa-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bleu-lumineux);
  color: #000 !important;
  text-decoration: none !important;
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 20px 60px;
  border-radius: 6px;
  transition:
    background 0.2s,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s;
  box-shadow: 0 4px 32px rgba(200, 16, 46, 0.38);
}
.resa-cta-btn::after {
  display: none !important;
}
.resa-cta-btn:hover {
  background: var(--bleu-titre); 
  transform: translateY(-3px);
  box-shadow: 0 14px 48px rgba(200, 16, 46, 0.5);
  color: #fff !important;
}
.resa-cta-sub {
  margin: 16px 0 0;
  font-family: var(--fb);
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.04em;
}
.resa-cta-sub a {
  color: fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.resa-cta-sub a:hover {
  color: var(--red);
}

/* -- Tablette 2 × 2 -- */
@media (max-width: 860px) {
  .resa-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .resa-flow::before {
    display: none;
  }
  .resa-subtitle-main {
    font-size: 30px;
  }
}

/* -- Mobile -- */
@media (max-width: 520px) {
  .resa-section {
    padding: 0 16px 64px;
  }
  .resa-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .resa-intro {
    padding: 40px 0 48px;
  }
  .resa-subtitle-main {
    font-size: 26px;
  }
  .resa-cta-btn {
    padding: 18px 36px;
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}

/************************************************************************************/
/* --------------------------------- MENU ----------------------------------------- */
/************************************************************************************/
.lien-menu-h,
.lien-menu-h:link,
.lien-menu-h:visited {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--fond-bleu);
  text-decoration: none;
  transition: color var(--t);
}
.lien-menu-h:hover {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 320px) {
  .lien-menu-h,
  .lien-menu-h:link,
  .lien-menu-h:visited {
    font-size: 12px;
  }
}
@media (min-width: 620px) {
  .lien-menu-h,
  .lien-menu-h:link,
  .lien-menu-h:visited {
    font-size: 17px;
  }
}

/* ============================================================
   NAVIGATION
   Menu horizontal sous le bandeau. Fond semi-transparent flou.
   .sous = sous-menus déroulants au survol.
   .lien-menu-h = style des liens du menu.
   Généré par presentation-mt-tel.php (ne pas modifier le HTML).
   ============================================================ */
nav {
  width: 100%;
  position: absolute;
  top: 103px;
  left: 0;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid #e53e3e;
  box-shadow: 0 4px 20px rgba(229, 62, 62, 0.15);
  z-index: 100;
}

@media (min-width: 620px) {
  nav {
    top: 203px;
  }
}

@media (min-width: 1200px) {
  nav {
    top: 303px;
  }
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  flex: 1 1 auto;
  text-align: center;
  position: relative;
}

nav ul li a {
  display: block;
  padding: 18px 8px;
  transition: all 0.3s ease;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #e2e8f0;
  font-size: 11px;
}

@media (min-width: 620px) {
  nav ul li a {
    font-size: 13px;
    padding: 20px 10px;
    letter-spacing: 1.5px;
  }
}

@media (min-width: 1020px) {
  nav ul li a {
    font-size: 14px;
    padding: 24px 15px;
  }
}

nav ul li a:hover {
  color: var(--blanc);
  background: rgba(229, 62, 62, 0.15);
  text-shadow: 0 0 12px rgba(229, 62, 62, 0.4);
}

.sous {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  z-index: 200;
  flex-direction: column;
  overflow: hidden;
}

nav ul li:hover .sous {
  display: flex;
}

.sous li {
  text-align: left;
}

.sous a {
  display: block;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #cbd5e1;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sous a:hover {
  background: rgba(229, 62, 62, 0.12);
  color: var(--blanc);
  padding-left: 28px;
  border-bottom-color: transparent;
}

/* --------------------------------------------
   MENU HAMBURGER — caché par défaut sur desktop
-------------------------------------------- */
#nav-toggle {
  display: none;
}

.sub-toggle {
  display: none;
}

#nav-close {
  display: none;
}

#nav-overlay {
  display: none;
}

li.nav-m-only {
  display: none;
}

@media (max-width: 619px) {

  /* -- Barre nav mobile -- */
  nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 12px;
    min-height: 44px;
    z-index: 1000;
  }

  #nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 0;
    background: var(--blanc);
    border: 1px solid #d7d7d7;
    cursor: pointer;
    border-radius: 8px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition:
      background 0.2s,
      border-color 0.2s,
      transform 0.2s,
      box-shadow 0.2s;
  }

  #nav-toggle:hover,
  #nav-toggle:focus {
    background: var(--blanc);
    border-color: #bdbdbd;
    transform: translateY(-1px);
    outline: none;
  }

  #nav-toggle span {
    display: block;
    width: 18px;
    height: 2.4px;
    background: #2a2a2a;
    border-radius: 3px;
    transition:
      transform 0.24s ease,
      opacity 0.24s ease,
      background 0.24s ease;
  }

  #site-nav.nav-open #nav-toggle {
    background: var(--blanc);
    border-color: #b3b3b3;
  }

  #site-nav.nav-open #nav-toggle span {
    background: #1f1f1f;
  }

  #site-nav.nav-open #nav-toggle span:nth-child(1) {
    transform: translateY(6.8px) rotate(45deg);
  }

  #site-nav.nav-open #nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  #site-nav.nav-open #nav-toggle span:nth-child(3) {
    transform: translateY(-6.8px) rotate(-45deg);
  }

  /* -- Overlay -- */
  #nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* -- Panel blanc 95vw slide depuis la gauche -- */
  #nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 95vw;
    max-width: 400px;
    background: var(--blanc);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 68px;
    margin: 0;
    box-shadow: 6px 0 32px rgba(0, 0, 0, 0.18);
  }

  #site-nav.nav-open #nav-menu {
    transform: translateX(0);
  }

  /* -- Bouton X cercle gris -- */
  #nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    color: #333;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  #nav-close:hover {
    background: #f5f5f5;
    border-color: var(--gris);
  }

  /* -- Items visibles sur mobile -- */
  li.nav-m-only {
    display: block;
  }

  nav #nav-menu li {
    flex: none;
    text-align: left;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    list-style: none;
  }

  nav #nav-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: none;
    transition:
      background 0.15s,
      color 0.15s;
    text-decoration: none;
  }

  nav #nav-menu li a::after {
    content: ">";
    color: #cc0000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 8px;
  }

  nav #nav-menu li a:hover {
    background: #f9f9f9;
    color: #cc0000;
  }

  /* -- Li Detail par stage -- */
  nav #nav-menu li.has-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  nav #nav-menu li.has-sub a {
    flex: 1;
  }

  nav #nav-menu li.has-sub a::after {
    display: none;
  }

  nav #nav-menu li.has-sub .sous {
    flex: 0 0 100%;
  }

  .sub-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 56px;
    background: none;
    border: none;
    color: #cc0000;
    font-size: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .sub-toggle::before {
    content: ">";
    color: #cc0000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }

  li.sub-open .sub-toggle {
    transform: rotate(90deg);
  }

  /* -- Sous-menu accordeon -- */
  #nav-menu .sous {
    display: none;
    position: static;
    width: 100%;
    transform: none;
    left: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #f9f9f9;
    border-top: 1px solid #eeeeee;
    padding: 4px 0;
  }

  #nav-menu li.sub-open .sous {
    display: flex;
    flex-direction: column;
  }

  #nav-menu .sous li {
    text-align: left;
    border-bottom: 1px solid #efefef;
    list-style: none;
  }

  #nav-menu .sous a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px 13px 32px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition:
      background 0.15s,
      color 0.15s;
  }

  #nav-menu .sous a::after {
    content: ">";
    color: #cc0000;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }

  #nav-menu .sous a:hover {
    color: #cc0000;
    background: #f0f0f0;
  }

  #nav-menu .sous a b,
  #nav-menu .sous a strong {
    color: inherit;
    font-weight: 700;
  }

  /* -- Bloc Google Avis -- */
  .nav-m-google {
    border-bottom: none;
  }

  .nav-m-google a {
    display: block;
    padding: 0;
    text-decoration: none;
  }

  .nav-m-google a::after {
    display: none;
  }

  .nav-m-google a:hover {
    background: transparent;
  }

  .google-block {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    margin: 15px;
    transition: box-shadow 0.2s;
  }

  .nav-m-google a:hover .google-block {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .google-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .google-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-transform: none;
    letter-spacing: 0;
  }

  .google-stars-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
  }

  .google-stars {
    color: #fbbc04;
    font-size: 17px;
    letter-spacing: 1px;
  }

  .google-score {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
  }

  .google-count {
    font-size: 13px;
    color: #777;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }

  .google-italic {
    font-size: 12px;
    color: #666;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .google-name {
    font-size: 11px;
    color: var(--gris);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }

  /* -- Bouton CTA -- */
  .nav-m-cta {
    border-bottom: none;
    padding: 0;
  }

  .nav-m-cta a {
    display: block;
    background: linear-gradient(135deg, #e00000 0%, #8b0000 100%);
    color: #fff;
    margin: 12px 15px 22px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(180, 0, 0, 0.45);
    overflow: hidden;
    position: relative;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .nav-m-cta a::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: rgba(255, 255, 255, 0.13);
    transform: skewX(-18deg);
    transition: left 0.5s ease;
    pointer-events: none;
  }

  .nav-m-cta a::after {
    display: none;
  }

  .nav-m-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(180, 0, 0, 0.55);
    color: #fff;
  }

  .nav-m-cta a:hover::before {
    left: 120%;
  }

  .cta-inner {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    gap: 12px;
  }

  .cta-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
  }

  .cta-text {
    flex: 1;
    text-align: left;
  }

  .cta-sub {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: none;
    margin-bottom: 3px;
  }

  .cta-main {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
  }

  .cta-arrow {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    line-height: 1;
  }

  .nav-m-cta a:hover .cta-arrow {
    transform: translateX(4px);
  }
}


/*******************************************************/
/* pour les cartes : */
/*******************************************************/
/* Bangkok */
.Bangkok {
  position: absolute;
  top: 570px;
  left: 374px;
  background: url(puce09b.gif);}
.Bangkok:hover {
  background: url(puce02b.gif);}

.Bangkok-photo {
  position: absolute;
  top: 595px;
  left: 160px;}

/* Chiang Mai */
.Chiang_Mai {
  position: absolute;
  top: 153px;
  left: 254px;
  background: url(puce09b.gif);}
.Chiang_Mai:hover {
  background: url(puce02b.gif);}

.Chiang_Mai-photo {
  position: absolute;
  top: 174px;
  left: 271px;}

/* près de Koh Samet */
.SSB {
  position: absolute;
  top: 659px;
  left: 447px;
  background: url(puce09b.gif);}
.SSB:hover {
  background: url(puce02b.gif);}

.SSB-photo {
  position: absolute;
  top: 680px;
  left: 477px;}

/* Ayutthaya */
.Ayutthaya {
  position: absolute;
  top: 518px;
  left: 381px;
  background: url(puce09b.gif);}
.Ayutthaya:hover {
  background: url(puce02b.gif);}


