/* =======================================================
   MAIJ — Design system (repris de "Maij Univers tourisme")
   Mobile-first : base = mobile (~375px), puis on monte vers
   tablette (768px) et desktop (1024px / 1280px).
   ======================================================= */

:root {
  --primary: #26aae8;
  --dark: #172d46;
  --text: #111827;
  --muted: #667085;
  --light: #f5f7fb;
  --white: #ffffff;
  --orange: #ff7a21;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius: 18px;
  --header-h: 64px;

  /* Système d'animation : un seul endroit pour ajuster durée/easing/amplitude */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 300ms;
  --dur-base: 450ms;
  --dur-slow: 600ms;
  --reveal-y: 20px;
  --stagger-step: 80ms;
}

/* Mobile : transitions plus courtes et de plus faible amplitude */
@media (max-width: 768px) {
  :root {
    --dur-base: 320ms;
    --dur-slow: 420ms;
    --reveal-y: 12px;
    --stagger-step: 60ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;
    --dur-base: 0ms;
    --dur-slow: 0ms;
    --reveal-y: 0px;
    --stagger-step: 0ms;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #eef0f4;
  font-size: 16px;
  line-height: 1.5;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ---------- Layout helpers ---------- */

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-inline: 18px;
}

.section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 40px 18px;
}

.section--white {
  background: var(--white);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

/* Titre de section centré, avec le lien éventuel juste dessous */
.section-title--center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.section-title--center h2 {
  width: 100%;
  text-align: center;
}

.section-title h2 {
  text-transform: uppercase;
  color: var(--text);
  font-size: 22px;
  text-align: center;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-title a,
.section-title .link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.section-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  min-height: 48px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(23, 45, 70, 0.35);
}

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

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

/* CTA principal du hero (Accueil) : fond bleu marine + bordure blanche bien visible */
.hero-main-cta {
  border: 2px solid #ffffff;
}

.hero-main-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 539.98px) {
  .hero-main-cta {
    max-width: 320px;
    margin-inline: auto;
  }
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  width: 100%;
}

@media (min-width: 540px) {
  .btn-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-row .btn {
    width: auto;
  }
}

/* ---------- Placeholder à compléter ---------- */

.todo {
  background: #fff7e6;
  color: #92620a;
  border: 1px dashed #f0b94d;
  border-radius: 8px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 0.95em;
  display: inline-block;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--dur-fast) var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.header-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: min-height var(--dur-fast) var(--ease-out), padding var(--dur-fast) var(--ease-out);
}

.site-header.is-scrolled .header-inner {
  min-height: calc(var(--header-h) - 10px);
  padding-block: 6px;
}

.brand {
  display: flex;
  align-items: center;
  width: 120px;
  height: 44px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand img {
  width: 120px;
  height: 50px;
  object-fit: contain;
  transform: scale(1.15);
}

.menu-btn {
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
}

.lang-switch {
  flex-shrink: 0;
}

.lang-switch select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #d7dfe9;
  border-radius: 999px;
  padding: 9px 34px 9px 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  background-color: var(--light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23172d46' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  min-height: 40px;
  min-width: 64px;
  cursor: pointer;
}

.header-cta {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 49;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(82vw, 320px);
  background: var(--white);
  padding: 90px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 50;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.18);
}

.navbar.is-open {
  transform: translateX(0);
}

.navbar a {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid #eef0f4;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.navbar a.is-active {
  color: var(--primary);
}

.navbar .nav-cta {
  margin-top: 18px;
}

.nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--light);
  font-size: 18px;
  cursor: pointer;
}

@media (min-width: 980px) {
  .menu-btn,
  .nav-close,
  .nav-overlay {
    display: none;
  }

  .header-inner {
    padding: 12px 34px;
    gap: 32px;
  }

  .brand {
    width: 155px;
    height: 50px;
  }

  .brand img {
    width: 150px;
    height: 62px;
  }

  .navbar {
    position: static;
    height: auto;
    width: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0;
    box-shadow: none;
    gap: 30px;
  }

  .navbar a {
    border-bottom: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    min-height: auto;
  }

  .navbar a:hover {
    color: var(--primary);
  }

  .navbar .nav-cta {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */

.hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  position: relative;
  padding: 40px 16px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 28, 42, 0.45), rgba(18, 28, 42, 0.55));
}

/* Hero sans cadre blanc : texte directement sur l'image (page Accueil) */
.hero--transparent::before {
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.35), rgba(10, 16, 28, 0.72));
}

/* Slideshow hero (page Accueil) : 4 visuels en fondu, défilement automatique */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: -4% -4%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content > *,
.hero-card > * {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.hero-content > *.is-visible,
.hero-card > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .eyebrow {
  color: #aee3fb;
}

.hero-content h1 {
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  font-size: clamp(28px, 7.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero-content .hero-text {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-card h1 {
  color: var(--text);
  text-transform: uppercase;
  font-size: clamp(26px, 7vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero-text {
  max-width: 520px;
  margin: 14px auto 22px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.hero .btn-row {
  margin-top: 18px;
}

.hero--page {
  min-height: 38vh;
}

@media (min-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero--page {
    min-height: 34vh;
  }

  .hero-card {
    padding: 38px 40px;
  }
}

/* ---------- Bloc titre compact (pages internes, sans image ni carte) ---------- */

.page-heading {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 54px 18px 34px;
  background:
    radial-gradient(circle at top left, rgba(38, 170, 232, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  text-align: center;
  border-bottom: 1px solid rgba(23, 45, 70, 0.08);
}

.page-heading-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-heading .eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-heading h1 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 760px;
  margin: 0 auto;
}

.page-heading-text {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.page-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 639.98px) {
  .page-heading {
    padding: 38px 18px 26px;
  }

  .page-heading h1 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.1;
  }

  .page-heading-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ---------- Cards (packs, destinations, blog…) ---------- */

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1180px) {
  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 180px;
  object-fit: cover;
}

/* Image en tête de carte (packs séjours) */
.card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}

.card-body h3 {
  font-size: 17px;
  font-weight: 900;
}

.card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
}

.card-meta span {
  background: var(--light);
  border-radius: 999px;
  padding: 5px 10px;
}

.price-tag {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
}

.price-tag .price {
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}

/* Les listes jour par jour restent alignées à gauche pour rester lisibles */
.card-body .day-list {
  align-self: stretch;
  text-align: left;
}

.price-tag .price-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-body .btn {
  margin-top: 4px;
}

.day-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 6px;
}

.day-list li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 14px;
  border-left: 3px solid var(--primary);
}

.day-list strong {
  color: var(--text);
}

/* ---------- Comparison table → cards on mobile ---------- */

.compare-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-card {
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.compare-card h3 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
}

.compare-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-size: 13px;
}

.compare-card dt {
  color: var(--muted);
  font-weight: 700;
}

.compare-card dd {
  color: var(--text);
  text-align: right;
}

.compare-card .price {
  color: var(--primary);
  font-weight: 900;
  font-size: 16px;
}

.compare-table-wrap {
  display: none;
}

@media (min-width: 768px) {
  .compare-cards {
    display: none;
  }

  .compare-table-wrap {
    display: block;
    overflow-x: auto;
  }

  table.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    min-width: 640px;
  }

  table.compare-table th,
  table.compare-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #eef0f4;
  }

  table.compare-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  table.compare-table td strong {
    color: var(--primary);
  }
}

/* ---------- Inclus / non inclus ---------- */

.include-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .include-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.include-box {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.include-box h3 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 12px;
}

.include-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.include-box li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.include-box--yes li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

.include-box--no li::before {
  content: "❌";
  position: absolute;
  left: 0;
}

/* ---------- Why / advantages ---------- */

.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

@media (min-width: 640px) {
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Carrousel mobile (défilement horizontal + points) ---------- */

@media (max-width: 639.98px) {
  .carousel-mobile {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -18px;
    padding-inline: 18px;
    padding-bottom: 4px;
  }

  .carousel-mobile::-webkit-scrollbar {
    display: none;
  }

  .carousel-mobile > * {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}

.carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

@media (max-width: 639.98px) {
  .carousel-dots {
    display: flex;
  }
}

.carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7dfe9;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.carousel-dots span.is-active {
  background: var(--primary);
  transform: scale(1.35);
}

.why-grid > div,
.testimonial-grid article {
  background: var(--white);
  border: 1px solid #e7edf5;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

/* Icônes ligne sobres (remplacent les emojis) */
.maij-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: rgba(38, 170, 232, 0.1);
  color: var(--primary);
}

.maij-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-grid h3,
.testimonial-grid h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 900;
}

.why-grid p,
.testimonial-grid p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Avis clients : étoiles + carte plus crédible */
.stars {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 12px;
}

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
}

.testimonial-author span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  margin-top: 3px;
}

.testimonial-grid article {
  text-align: center;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--light);
  color: var(--orange);
  font-weight: 900;
}

/* ---------- Destinations ---------- */

.destination-block {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  margin-bottom: 20px;
}

.destination-block img {
  height: 220px;
  object-fit: cover;
}

.destination-block .destination-text {
  padding: 18px 20px 22px;
}

.destination-block h3 {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 8px;
}

.destination-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .destination-block {
    grid-template-columns: 1fr 1fr;
  }

  .destination-block img {
    height: 100%;
    min-height: 260px;
  }

  .destination-block.reverse {
    direction: rtl;
  }

  .destination-block.reverse .destination-text {
    direction: ltr;
  }
}

/* ---------- FAQ accordion ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Image illustrative pour blog et a-propos */
.article-img {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  margin-bottom: 28px;
}

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

@media (max-width: 767.98px) {
  .article-img {
    height: 200px;
    margin-bottom: 20px;
  }
}

/* ---------- Blog ---------- */

.article-content {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.article-content h2 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

.article-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-topics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.blog-topics li {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

/* ---------- Contact form ---------- */

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info {
  background: var(--dark);
  color: var(--white);
  border-radius: 16px;
  padding: 24px;
}

.contact-info h2 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}

.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 20px;
  font-size: 14px;
}

.contact-info .todo {
  background: rgba(255, 255, 255, 0.12);
  color: #ffe0ad;
  border-color: rgba(255, 224, 173, 0.4);
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #d7dfe9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  min-height: 48px;
  background: var(--light);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 36px 0 100px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer {
    padding-bottom: 40px;
  }
}

.footer-brand p {
  margin-top: 10px;
  color: #c9d4e3;
  font-size: 13px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: #9fb3cc;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-col a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  padding: 16px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: #9fb3cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.footer-bottom p {
  text-align: center;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
  }
  .footer-bottom > div {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
  }
  .footer-bottom > p {
    text-align: center;
    grid-column: 2;
  }
}

/* ---------- Floating WhatsApp / Réserver bar (mobile) ---------- */

.float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.15);
}

.float-cta .btn {
  flex: 1;
}

@media (min-width: 980px) {
  .float-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }

  .float-cta .btn {
    flex: none;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
  }

  .float-cta .btn span.label {
    display: none;
  }
}

.float-cta {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.float-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scroll-reveal (apparition une seule fois) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Survol desktop uniquement (pas de hover collant au doigt) ---------- */

@media (hover: hover) and (pointer: fine) {
  .card {
    transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  }

  .card:hover .card-img img {
    transform: scale(1.03);
  }

  .destination-block img {
    transition: transform var(--dur-slow) var(--ease-out);
  }

  .destination-block:hover img {
    transform: scale(1.05);
  }
}

/* ---------- Misc ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.page-hero-bg-beach {
  background-image: linear-gradient(180deg, rgba(18, 28, 42, 0.35), rgba(18, 28, 42, 0.55)), url("assets/img/hero-plage-lome.jpg");
}

/* ===============================
   GLOBAL RESPONSIVE FIXES - MAIJ
   Corrections transverses pour un rendu mobile centré et propre
   sur les 7 pages, sans toucher au contenu ni à l'identité visuelle.
   =============================== */

html,
body {
  overflow-x: hidden;
}

@media (max-width: 767.98px) {
  /* --- Sections génériques : titres et intros centrés --- */

  .section-title {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .section-title h2 {
    width: 100%;
  }

  .section-title a,
  .section-title .link {
    margin-inline: auto;
  }

  .section-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* --- Hero : contenu bien centré, sans cadre blanc qui débordent --- */

  .hero-content,
  .hero-card {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content h1,
  .hero-card h1 {
    max-width: 100%;
  }

  /* --- Footer : une seule colonne centrée --- */

  .footer-inner {
    text-align: center;
    justify-items: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
  }

  .footer-bottom > div {
    justify-content: center;
  }
}

@media (max-width: 639.98px) {
  /* --- Carrousel mobile : cartes centrées, pas collées au bord --- */

  .carousel-mobile {
    scroll-padding-inline: 18px;
  }

  .carousel-mobile > * {
    flex: 0 0 calc(100% - 56px);
    scroll-snap-align: center;
  }
}

/* Touch feedback discret sur mobile (pas de hover collant au doigt) */
@media (hover: none) {
  .card:active {
    transform: scale(0.985);
    transition: transform 150ms ease;
  }
}
