/* ==========================================================================
   AZUR & MOI — Travel Planner Côte d'Azur
   Feuille de style principale — design "Riviera moderne"
   --------------------------------------------------------------------------
   Univers : éditorial, jeune, premium. Grands titres serif expressifs,
   navigation flottante, dégradés coucher de soleil, cartes très arrondies.
   --------------------------------------------------------------------------
   SOMMAIRE
   1.  Variables (couleurs, typographies, espacements)
   2.  Reset & base
   3.  Utilitaires (conteneurs, boutons, badges, titres de section)
   4.  Header & navigation (barre flottante en pilule)
   5.  Hero
   6.  Sections génériques
   7.  Cartes (destinations, séjours, services, expériences, guides, blog)
   8.  Étapes "Comment ça marche"
   9.  Offres / tarifs & tableau comparatif
   10. Témoignages
   11. FAQ accordéon
   12. Bandeau d'appel à l'action
   13. Formulaires (contact + créer mon séjour multi-étapes)
   14. Pied de page
   15. Bouton WhatsApp flottant
   16. Animations
   17. Responsive
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES — modifier ici pour changer l'identité visuelle
   ========================================================================== */
:root {
  /* Couleurs principales — palette inspirée French Riviera Pass */
  --encre:       #004661;   /* bleu pétrole profond — titres, footer */
  --marine:      #004661;   /* alias conservé pour compatibilité */
  --azur:        #00988f;   /* turquoise — accent principal */
  --azur-vif:    #8ad1ce;   /* aqua clair — dégradés */
  --azur-fonce:  #00776f;   /* survol */
  --corail:      #fbd141;   /* jaune soleil — boutons d'action */
  --corail-fonce:#f2c324;   /* survol des boutons */
  --terracotta:  #fbd141;   /* alias conservé */
  --soleil:      #fbd141;   /* jaune soleil */
  --olive:       #7a8450;
  --sable:       #fff1e8;   /* fond pêche clair — sections chaudes */
  --creme:       #fffaf5;   /* fond général */
  --texte:       #33535f;
  --texte-doux:  #64777f;
  --blanc:       #ffffff;
  --bordure:     #f0dfd2;

  /* Typographies */
  --font-titres: "Fraunces", Georgia, serif;
  --font-texte:  "Plus Jakarta Sans", "Segoe UI", Helvetica, Arial, sans-serif;

  /* Dégradé signature (mer → soleil couchant) */
  --degrade-signature: linear-gradient(120deg, var(--azur) 0%, var(--azur-vif) 45%, var(--soleil) 100%);

  /* Divers */
  --radius:      24px;
  --radius-sm:   14px;
  --ombre:       0 12px 34px rgba(0, 70, 97, 0.09);
  --ombre-forte: 0 24px 60px rgba(0, 70, 97, 0.16);
  --transition:  all 0.3s cubic-bezier(0.25, 0.6, 0.3, 1);
  --largeur-max: 1200px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px; /* compense la barre flottante lors des ancres */
}

body {
  font-family: var(--font-texte);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texte);
  background-color: var(--creme);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--azur);
  color: var(--blanc);
}

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

a {
  color: var(--azur);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--azur-fonce);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-titres);
  color: var(--encre);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: 1.4rem; }

/* ==========================================================================
   3. UTILITAIRES
   ========================================================================== */
.conteneur {
  width: min(var(--largeur-max), 92%);
  margin-inline: auto;
}

/* --- Boutons — pilules avec flèche animée --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.95rem 2.1rem;
  border-radius: 100px;
  font-family: var(--font-texte);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

/* Flèche discrète qui glisse au survol */
.btn::after {
  content: "→";
  font-family: var(--font-texte);
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-principal {
  background-color: var(--corail);
  color: var(--encre);
  box-shadow: 0 10px 24px rgba(251, 209, 65, 0.4);
}

.btn-principal:hover {
  background-color: var(--corail-fonce);
  color: var(--encre);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(251, 209, 65, 0.5);
}

.btn-secondaire {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondaire:hover {
  background-color: var(--blanc);
  color: var(--encre);
}

.btn-contour {
  background-color: transparent;
  color: var(--encre);
  border-color: rgba(0, 70, 97, 0.25);
}

.btn-contour:hover {
  border-color: var(--encre);
  background-color: var(--encre);
  color: var(--blanc);
}

.btn-terracotta {
  background-color: var(--corail);
  color: var(--encre);
  box-shadow: 0 10px 24px rgba(251, 209, 65, 0.4);
}

.btn-terracotta:hover {
  background-color: var(--corail-fonce);
  color: var(--encre);
  transform: translateY(-2px);
}

.btn-petit {
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
}

/* --- Badge / étiquette de section --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  color: var(--azur);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

/* Petit trait avant le badge, style éditorial */
.badge::before {
  content: "";
  width: 28px;
  height: 2px;
  background-color: var(--azur);
  border-radius: 2px;
}

.entete-section .badge {
  justify-content: center;
}

/* --- En-tête de section --- */
.entete-section {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.entete-section p {
  color: var(--texte-doux);
  font-size: 1.08rem;
  margin-top: 0.9rem;
}

/* --- Grilles génériques --- */
.grille-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grille-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.grille-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ==========================================================================
   4. HEADER & NAVIGATION — barre flottante en pilule
   ========================================================================== */
.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--largeur-max), 94%);
  z-index: 1000;
  background-color: rgba(255, 250, 245, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 70, 97, 0.07);
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(0, 70, 97, 0.07);
  transition: var(--transition);
}

.header.scrolle {
  box-shadow: 0 12px 34px rgba(0, 70, 97, 0.13);
  background-color: rgba(255, 250, 245, 0.94);
}

.header .conteneur {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 1.6rem 0 2rem;
}

.logo {
  font-family: var(--font-titres);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--encre);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--azur);
  font-style: italic;
}

.nav-liste {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-liste a {
  color: var(--encre);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}

.nav-liste a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: var(--azur);
  transition: var(--transition);
}

.nav-liste a:hover::after,
.nav-liste a.actif::after {
  width: 100%;
}

.nav-liste a.actif {
  color: var(--azur);
}

/* Le bouton CTA du menu : pas de soulignement ni de flèche (compact) */
.nav-liste a.btn::after { display: none; }

/* --- Burger (mobile) --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--encre);
  transition: var(--transition);
}

.burger.ouvert span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.ouvert span:nth-child(2) { opacity: 0; }
.burger.ouvert span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   5. HERO — grand dégradé "mer & soleil couchant" avec halos animés
   ========================================================================== */
.hero {
  min-height: 96vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  color: var(--blanc);
  /* Photo Unsplash libre de droits — remplacer l'URL par votre propre photo si souhaité */
  background-image:
    linear-gradient(160deg, rgba(0, 70, 97, 0.78) 0%, rgba(0, 70, 97, 0.42) 45%, rgba(0, 152, 143, 0.35) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-color: #004661; /* repli avant chargement de la photo */
}

/* Halos lumineux flottants, pour donner de la vie au fond */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  pointer-events: none;
}

.hero::before {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(138, 209, 206, 0.8), transparent 70%);
  animation: flotter 9s ease-in-out infinite alternate;
}

.hero::after {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: 12%;
  background: radial-gradient(circle, rgba(251, 209, 65, 0.55), transparent 70%);
  animation: flotter 11s ease-in-out infinite alternate-reverse;
}

.hero-contenu {
  max-width: 760px;
  position: relative;
  z-index: 1;
  animation: apparition 0.9s ease both; /* entrée en douceur au chargement */
}

.hero .surtitre {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--blanc);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.4rem;
  max-width: 580px;
}

.hero-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero réduit pour les pages intérieures */
.hero-page {
  min-height: 52vh;
  padding: 170px 0 70px;
  text-align: center;
}

.hero-page .hero-contenu {
  max-width: 780px;
  margin-inline: auto;
}

.hero-page p {
  margin-inline: auto;
}

/* ==========================================================================
   6. SECTIONS GÉNÉRIQUES
   ========================================================================== */
.section {
  padding: 6rem 0;
}

.section-sable {
  background-color: var(--sable);
}

.section-marine {
  background-color: var(--encre);
  position: relative;
  overflow: hidden;
}

/* Halo azur discret dans les sections sombres */
.section-marine::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -260px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 152, 143, 0.35), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.section-marine .conteneur {
  position: relative;
  z-index: 1;
}

.section-marine h2,
.section-marine h3 {
  color: var(--blanc);
}

.section-marine p {
  color: rgba(255, 255, 255, 0.82);
}

.section-marine .badge {
  color: var(--soleil);
}

.section-marine .badge::before {
  background-color: var(--soleil);
}

/* --- Bloc concept (texte + visuel) --- */
.bloc-duo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bloc-duo .visuel {
  border-radius: var(--radius);
  min-height: 460px;
  box-shadow: var(--ombre-forte);
  /* Photo par défaut (préparatifs de voyage) — REMPLACER par vos propres photos,
     soit ici, soit avec style="background-image:url(...)" sur chaque .visuel */
  background-image:
    linear-gradient(180deg, rgba(0, 70, 97, 0) 60%, rgba(0, 70, 97, 0.35) 100%),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1200&q=75");
  background-color: #d8ecea;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transform: rotate(1.5deg);
  transition: var(--transition);
}

.bloc-duo .visuel:hover {
  transform: rotate(0deg) scale(1.01);
}

.bloc-duo .visuel::after {
  content: attr(data-legende);
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  right: 1.1rem;
  color: var(--blanc);
  font-size: 0.82rem;
  opacity: 0.9;
  background: rgba(0, 70, 97, 0.35);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
}

.liste-atouts {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.85rem;
}

.liste-atouts li {
  padding-left: 2.2rem;
  position: relative;
}

.liste-atouts li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--degrade-signature);
  color: var(--blanc);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   7. CARTES
   ========================================================================== */
.carte {
  background-color: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.carte:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-forte);
}

/* Visuel de carte — remplacer les dégradés par de vraies photos */
.carte-img {
  height: 225px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* Léger zoom du visuel au survol de la carte */
.carte:hover .carte-img {
  transform: scale(1.05);
}

.carte-img .etiquette {
  background-color: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(6px);
  color: var(--encre);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

/* Visuels de cartes — photos Unsplash libres de droits, réparties par ambiance.
   REMPLACER librement chaque URL par vos propres photos.
   Le voile foncé posé en bas assure la lisibilité des étiquettes. */
.img-mer, .img-sable, .img-terracotta, .img-olive,
.img-soleil, .img-marine, .img-lavande, .img-corail {
  background-color: #d8ecea; /* repli avant chargement de la photo */
}

/* Crique turquoise vue du ciel */
.img-mer        { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.35) 100%), url("https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=900&q=70"); }
/* Piscine & farniente — bien-être */
.img-sable      { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.35) 100%), url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=900&q=70"); }
/* Grande tablée conviviale */
.img-terracotta { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.35) 100%), url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?auto=format&fit=crop&w=900&q=70"); }
/* Randonnée & grand air */
.img-olive      { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.35) 100%), url("https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=900&q=70"); }
/* Plage, palmiers & soleil */
.img-soleil     { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.35) 100%), url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=900&q=70"); }
/* Lagon & hydravion — luxe */
.img-marine     { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.4) 100%), url("https://images.unsplash.com/photo-1512100356356-de1b84283e18?auto=format&fit=crop&w=900&q=70"); }
/* Amis au coucher du soleil */
.img-lavande    { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.35) 100%), url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=900&q=70"); }
/* Table gastronomique */
.img-corail     { background-image: linear-gradient(180deg, rgba(0,70,97,0) 55%, rgba(0,70,97,0.35) 100%), url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=900&q=70"); }

.carte-corps {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--blanc);
  position: relative;
  z-index: 1; /* passe au-dessus du visuel zoomé */
}

.carte-corps h3 {
  margin-bottom: 0.6rem;
}

.carte-corps p {
  color: var(--texte-doux);
  font-size: 0.95rem;
  flex-grow: 1;
}

.carte-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.carte-tags span {
  background-color: var(--sable);
  color: var(--texte);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.28rem 0.85rem;
  border-radius: 100px;
}

.carte-corps .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Carte service (avec pictogramme) */
.carte-service {
  background-color: var(--blanc);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--ombre);
  transition: var(--transition);
  border: 1px solid transparent;
}

.carte-service:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-forte);
  border-color: rgba(0, 152, 143, 0.2);
}

.carte-service .picto {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(0, 152, 143, 0.12), rgba(251, 209, 65, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.carte-service:hover .picto {
  transform: rotate(-6deg) scale(1.08);
}

.carte-service h3 {
  font-size: 1.22rem;
  margin-bottom: 0.6rem;
}

.carte-service p {
  color: var(--texte-doux);
  font-size: 0.95rem;
}

/* ==========================================================================
   8. ÉTAPES "COMMENT ÇA MARCHE" — grands numéros en dégradé
   ========================================================================== */
.etapes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.etape {
  text-align: left;
  position: relative;
  background-color: var(--blanc);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.9rem;
  box-shadow: var(--ombre);
  transition: var(--transition);
}

.etape:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-forte);
}

.etape .numero {
  font-family: var(--font-titres);
  font-size: 3.4rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, var(--azur), var(--corail));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--azur); /* repli navigateurs anciens */
  display: inline-block;
}

.etape h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.etape p {
  color: var(--texte-doux);
  font-size: 0.92rem;
}

/* ==========================================================================
   9. OFFRES / TARIFS & COMPARATIF
   ========================================================================== */
.grille-offres {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.carte-offre {
  background-color: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 2.3rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.carte-offre:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-forte);
}

/* L'offre vedette passe en bleu nuit, façon carte premium */
.carte-offre.mise-en-avant {
  background-color: var(--encre);
  border-color: var(--encre);
  box-shadow: var(--ombre-forte);
}

.carte-offre.mise-en-avant h3,
.carte-offre.mise-en-avant .prix {
  color: var(--blanc);
}

.carte-offre.mise-en-avant .offre-cible,
.carte-offre.mise-en-avant .prix small {
  color: rgba(255, 255, 255, 0.65);
}

.carte-offre.mise-en-avant ul li {
  color: rgba(255, 255, 255, 0.88);
}

.carte-offre .populaire {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--corail), var(--soleil));
  color: var(--encre);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(251, 209, 65, 0.35);
}

.carte-offre h3 {
  font-size: 1.5rem;
}

.carte-offre .offre-cible {
  color: var(--texte-doux);
  font-size: 0.9rem;
  margin: 0.4rem 0 1.2rem;
  min-height: 3em;
}

.carte-offre .prix {
  font-family: var(--font-titres);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.2rem;
}

.carte-offre .prix small {
  font-family: var(--font-texte);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--texte-doux);
}

.carte-offre ul {
  margin: 1.4rem 0 2rem;
  display: grid;
  gap: 0.6rem;
  flex-grow: 1;
}

.carte-offre ul li {
  font-size: 0.92rem;
  padding-left: 1.6rem;
  position: relative;
}

.carte-offre ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--azur-vif);
  font-weight: 700;
}

.carte-offre ul li.non-inclus {
  color: var(--texte-doux);
  opacity: 0.55;
}

.carte-offre ul li.non-inclus::before {
  content: "—";
  color: var(--texte-doux);
}

/* Tableau comparatif */
.tableau-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--ombre);
}

.tableau-comparatif {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background-color: var(--blanc);
}

.tableau-comparatif th,
.tableau-comparatif td {
  padding: 1rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid var(--bordure);
  font-size: 0.92rem;
}

.tableau-comparatif th {
  background-color: var(--encre);
  color: var(--blanc);
  font-family: var(--font-titres);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.tableau-comparatif tr:hover td {
  background-color: rgba(0, 152, 143, 0.05);
}

.tableau-comparatif td:first-child,
.tableau-comparatif th:first-child {
  text-align: left;
  font-weight: 600;
}

.tableau-comparatif .oui  { color: var(--azur); font-weight: 700; }
.tableau-comparatif .non  { color: var(--texte-doux); opacity: 0.45; }
.tableau-comparatif .opt  { color: #b78900; font-size: 0.8rem; font-weight: 700; }

/* ==========================================================================
   10. TÉMOIGNAGES
   ========================================================================== */
.carte-temoignage {
  background-color: var(--blanc);
  border-radius: var(--radius);
  padding: 2.1rem;
  box-shadow: var(--ombre);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: var(--transition);
}

.carte-temoignage:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-forte);
}

/* Grands guillemets décoratifs */
.carte-temoignage::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--font-titres);
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 152, 143, 0.14);
  pointer-events: none;
}

.carte-temoignage .etoiles {
  color: var(--soleil);
  letter-spacing: 0.2em;
}

.carte-temoignage blockquote {
  font-style: italic;
  color: var(--texte);
  flex-grow: 1;
}

.carte-temoignage .auteur {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.carte-temoignage .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--azur), var(--soleil));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-weight: 700;
}

.carte-temoignage .auteur strong {
  display: block;
  color: var(--encre);
  font-size: 0.95rem;
}

.carte-temoignage .auteur small {
  color: var(--texte-doux);
}

/* ==========================================================================
   11. FAQ ACCORDÉON
   ========================================================================== */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background-color: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.ouvert {
  border-color: rgba(0, 152, 143, 0.35);
  box-shadow: var(--ombre);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-texte);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--encre);
  text-align: left;
}

.faq-question .faq-icone {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--sable);
  color: var(--azur);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-item.ouvert .faq-icone {
  transform: rotate(45deg);
  background: linear-gradient(120deg, var(--azur), var(--azur-vif));
  color: var(--blanc);
}

.faq-reponse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-reponse p {
  padding: 0 1.5rem 1.3rem;
  color: var(--texte-doux);
  font-size: 0.95rem;
}

/* ==========================================================================
   12. BANDEAU D'APPEL À L'ACTION
   ========================================================================== */
.cta-final {
  text-align: center;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
  /* Coucher de soleil sur la mer — photo Unsplash libre, remplaçable */
  background-image:
    linear-gradient(160deg, rgba(0, 70, 97, 0.72) 0%, rgba(0, 70, 97, 0.38) 60%, rgba(251, 209, 65, 0.22) 100%),
    url("https://images.unsplash.com/photo-1473116763249-2faaef81ccda?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* léger effet parallaxe au défilement */
  background-color: #004661;
  padding: 6rem 0;
}

.cta-final h2 {
  color: var(--blanc);
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

.cta-final .hero-boutons {
  justify-content: center;
}

/* ==========================================================================
   13. FORMULAIRES
   ========================================================================== */
.formulaire {
  background-color: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--ombre);
  padding: 2.6rem;
  max-width: 820px;
  margin: 0 auto;
}

.champ {
  margin-bottom: 1.4rem;
}

.champ label {
  display: block;
  font-weight: 600;
  color: var(--encre);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.champ label .optionnel {
  color: var(--texte-doux);
  font-weight: 400;
  font-size: 0.85rem;
}

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--bordure);
  border-radius: var(--radius-sm);
  font-family: var(--font-texte);
  font-size: 0.98rem;
  color: var(--texte);
  background-color: var(--creme);
  transition: var(--transition);
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--azur);
  box-shadow: 0 0 0 4px rgba(0, 152, 143, 0.13);
}

.champ textarea {
  min-height: 120px;
  resize: vertical;
}

.champ-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* --- Cases à cocher / options en "puces" cliquables --- */
.options-puces {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.options-puces label {
  position: relative;
  cursor: pointer;
}

.options-puces input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.options-puces .puce {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  border: 1.5px solid var(--bordure);
  border-radius: 100px;
  background-color: var(--creme);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.options-puces input:checked + .puce {
  background: linear-gradient(120deg, var(--azur), var(--azur-vif));
  border-color: var(--azur);
  color: var(--blanc);
  box-shadow: 0 6px 16px rgba(0, 152, 143, 0.3);
}

.options-puces .puce:hover {
  border-color: var(--azur);
  transform: translateY(-1px);
}

/* --- Formulaire multi-étapes (créer mon séjour) --- */
.progression {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.progression::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--bordure);
  z-index: 0;
}

.progression .point {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}

.progression .rond {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.4rem;
  border-radius: 50%;
  background-color: var(--blanc);
  border: 2px solid var(--bordure);
  color: var(--texte-doux);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.progression .point small {
  color: var(--texte-doux);
  font-size: 0.74rem;
  font-weight: 600;
  display: block;
}

.progression .point.actif .rond {
  border-color: var(--corail);
  background: linear-gradient(120deg, var(--corail), var(--soleil));
  color: var(--encre);
  box-shadow: 0 6px 16px rgba(251, 209, 65, 0.45);
  transform: scale(1.08);
}

.progression .point.actif small {
  color: var(--azur-fonce);
}

.progression .point.fait .rond {
  border-color: var(--azur);
  background-color: rgba(0, 152, 143, 0.1);
  color: var(--azur);
}

.etape-formulaire {
  display: none;
  border: none;
  animation: apparition 0.4s ease;
}

.etape-formulaire.active {
  display: block;
}

.etape-formulaire h3 {
  margin-bottom: 0.4rem;
}

.etape-formulaire > p {
  color: var(--texte-doux);
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bordure);
}

/* --- Récapitulatif --- */
.recapitulatif {
  background-color: var(--sable);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.recapitulatif div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.93rem;
  border-bottom: 1px dashed var(--bordure);
  padding-bottom: 0.5rem;
}

.recapitulatif div:last-child { border-bottom: none; }

.recapitulatif dt {
  color: var(--texte-doux);
}

.recapitulatif dd {
  color: var(--encre);
  font-weight: 600;
  text-align: right;
}

/* --- Message de confirmation --- */
.message-succes {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.message-succes.visible { display: block; }

.message-succes .picto-succes {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--degrade-signature);
  color: var(--blanc);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 152, 143, 0.35);
}

/* --- Erreur de champ --- */
.champ input.erreur,
.champ select.erreur,
.champ textarea.erreur {
  border-color: #e14b4b;
}

.message-erreur {
  display: none;
  color: #e14b4b;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.message-erreur.visible { display: block; }

/* --- Infos de contact (page contact) --- */
.contact-duo {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.infos-contact {
  display: grid;
  gap: 1.1rem;
}

.info-contact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--blanc);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--ombre);
  transition: var(--transition);
}

.info-contact:hover {
  transform: translateX(4px);
}

.info-contact .picto {
  font-size: 1.4rem;
}

.info-contact strong {
  color: var(--encre);
  display: block;
}

.info-contact a,
.info-contact p {
  font-size: 0.93rem;
  color: var(--texte-doux);
}

/* ==========================================================================
   14. PIED DE PAGE — bleu nuit, angles supérieurs arrondis
   ========================================================================== */
.footer {
  background-color: var(--encre);
  /* Plage au soleil couchant sous un voile bleu pétrole — ambiance vacances */
  background-image:
    linear-gradient(180deg, rgba(0, 60, 82, 0.94) 0%, rgba(0, 47, 65, 0.96) 100%),
    url("https://images.unsplash.com/photo-1471922694854-ff1b63b20054?auto=format&fit=crop&w=1800&q=75");
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 0;
  font-size: 0.93rem;
  border-radius: 36px 36px 0 0;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

/* Halo décoratif */
.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -300px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 209, 65, 0.18), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.footer .conteneur {
  position: relative;
  z-index: 1;
}

.footer-grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer .logo {
  color: var(--blanc);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--blanc);
  font-family: var(--font-texte);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer ul {
  display: grid;
  gap: 0.6rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: var(--soleil);
}

.reseaux-sociaux {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.reseaux-sociaux a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reseaux-sociaux a:hover {
  background: linear-gradient(120deg, var(--corail), var(--soleil));
  border-color: transparent;
  color: var(--encre);
  transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--blanc);
  font-family: var(--font-texte);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--soleil);
}

.footer-bas {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

/* ==========================================================================
   15. BOUTON WHATSAPP FLOTTANT
   ========================================================================== */
.whatsapp-flottant {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  transition: var(--transition);
}

.whatsapp-flottant:hover {
  transform: scale(1.1) rotate(6deg);
  color: var(--blanc);
}

/* ==========================================================================
   16. ANIMATIONS
   ========================================================================== */
@keyframes apparition {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Halos du hero qui dérivent doucement */
@keyframes flotter {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.15); }
}

/* Éléments révélés au défilement (classe ajoutée par script.js) */
.reveler {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.reveler.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mot mis en lumière dans les grands titres (dégradé animé) --- */
.mot-accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--soleil), var(--azur-vif), var(--soleil));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--soleil); /* repli navigateurs anciens */
  animation: brillance 5s linear infinite;
}

@keyframes brillance {
  to { background-position: 200% center; }
}

/* --- Bandeau défilant façon "marquee" (destinations qui défilent) --- */
.bandeau-defilant {
  overflow: hidden;
  background-color: var(--encre);
  padding: 1.1rem 0;
  white-space: nowrap;
}

.bandeau-defilant .defilement {
  display: inline-flex;
  align-items: center;
  gap: 2.8rem;
  padding-right: 2.8rem;
  animation: defiler 36s linear infinite;
  will-change: transform;
}

.bandeau-defilant span {
  font-family: var(--font-titres);
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.bandeau-defilant .sep {
  color: var(--soleil);
  font-style: normal;
  font-size: 1rem;
}

/* Le contenu est dupliqué deux fois dans le HTML : -50 % = boucle parfaite */
@keyframes defiler {
  to { transform: translateX(-50%); }
}

/* --- Triptyque de photos --- */
.tryptique {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tryptique figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ombre-forte);
}

/* La photo centrale est décalée vers le bas, effet galerie */
.tryptique figure:nth-child(2) {
  transform: translateY(2.6rem);
}

.tryptique img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.tryptique figure:hover img {
  transform: scale(1.07);
}

.tryptique figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.6rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 70, 97, 0.78));
  color: var(--blanc);
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- Accessibilité : réduire les animations si demandé par le système --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   17. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .grille-4,
  .grille-offres { grid-template-columns: repeat(2, 1fr); }
  .grille-3      { grid-template-columns: repeat(2, 1fr); }
  .etapes        { grid-template-columns: repeat(2, 1fr); }
  .footer-grille { grid-template-columns: repeat(2, 1fr); }

  .bloc-duo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bloc-duo .visuel { min-height: 320px; transform: none; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Navigation mobile : panneau arrondi sous la barre flottante */
  .burger { display: flex; }

  .nav {
    position: fixed;
    top: 92px;
    right: 3%;
    width: min(320px, 94%);
    max-height: calc(100vh - 110px);
    background-color: rgba(255, 250, 245, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 70, 97, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--ombre-forte);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.25, 0.6, 0.3, 1);
    overflow-y: auto;
  }

  .nav.ouvert { transform: translateX(0); }

  .nav-liste {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem;
    gap: 1.1rem;
  }

  .nav-liste a { font-size: 1.05rem; }

  .grille-2,
  .grille-3,
  .grille-4,
  .grille-offres,
  .champ-duo,
  .contact-duo { grid-template-columns: 1fr; }

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

  .hero { min-height: 84vh; padding-top: 140px; }

  .hero-boutons .btn { width: 100%; }

  .progression .point small { display: none; }

  .formulaire { padding: 1.6rem; }

  .form-navigation { flex-direction: column-reverse; }

  .form-navigation .btn { width: 100%; }

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

  .tryptique figure:nth-child(2) { transform: none; }

  .tryptique img { height: 280px; }

  .bandeau-defilant span { font-size: 1.1rem; }

  .cta-final { background-attachment: scroll; } /* parallaxe désactivée sur mobile */

  .footer { border-radius: 24px 24px 0 0; }

  .footer-grille { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bas {
    flex-direction: column;
    text-align: center;
  }

  .footer-bas ul { justify-content: center; }
}
