@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', Arial, sans-serif; color: var(--text, #1b2533); background: #fff; line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; transition: color .15s; }

/* ── CSS Variables (overridden per-page via Jinja) ──────────────── */
:root {
  --navy:      #0d3b66;
  --navy-dark: #0a2e52;
  --gold:      #C9A84C;
  --gold-dark: #a8843d;
  --light:     #f4f7f9;
  --text:      #1b2533;
  --muted:     #6b7280;
  --red:       #dc2626;
  --radius:    14px;
  --shadow:    0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.14);
}

/* ── Navigation ─────────────────────────────────────────────────── */
.site-nav {
  background: #fff;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.logo-text-wrap { line-height: 1; }
.logo-main {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.logo-distinction { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 3px; }
.logo-tagline { font-size: 9px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

/* Logo image custom */
.logo-img { height: 52px; width: auto; object-fit: contain; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 7px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--light); color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; }

/* CTA button */
.btn-rdv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-rdv:hover { background: var(--navy-dark); color: #fff; }
.btn-rdv svg { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.btn:active { transform: scale(.98); }
.btn-primary  { background: var(--navy); color: #fff; }
.btn-primary:hover  { background: var(--navy-dark); color: #fff; }
.btn-gold     { background: var(--gold); color: #fff; }
.btn-gold:hover     { background: var(--gold-dark); color: #fff; }
.btn-outline  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.65); }
.btn-outline:hover  { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.btn-sm  { padding: 10px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 15px; }
.btn-block { display: block; width: 100%; }

/* ── Flash messages ──────────────────────────────────────────────── */
.flash-wrap { max-width: 1200px; margin: 16px auto 0; padding: 0 5%; }
.flash { padding: 13px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.flash-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.flash-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.flash-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0;
  color: #fff;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(13,59,102,.88) 0%, rgba(13,59,102,.60) 55%, rgba(13,59,102,.18) 100%);
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a5f9e 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5%;
  max-width: 680px;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-label::before,
.hero-label::after {
  content: '';
  flex: 1 1 30px;
  height: 1px;
  background: var(--gold);
  max-width: 40px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  white-space: pre-line;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Panneau slider vedettes (héro droite) ───────────────────────── */
.hero-rslider {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(6, 18, 32, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-left: 1px solid rgba(255,255,255,.10);
}

/* En-tête */
.hrs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  flex-shrink: 0;
}
.hrs-header-star {
  color: var(--gold);
  font-size: 13px;
}
.hrs-header-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.75);
  flex: 1;
}
.hrs-header-nav {
  display: flex;
  gap: 6px;
}
.hrs-arr {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 7px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  padding: 0;
}
.hrs-arr:hover { background: rgba(255,255,255,.28); }

/* Slides track */
.hrs-track {
  position: relative;
  flex: 1;
  min-height: 0;
}
.hrs-slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hrs-slide.active { opacity: 1; pointer-events: auto; }

/* Image de fond du slide */
.hrs-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .8s ease;
}
.hrs-slide.active .hrs-img { transform: scale(1.04); }
.hrs-img-grad {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0e3a5a 0%, #1a5a7e 50%, #0e4028 100%);
  z-index: 0;
}

/* Dégradé bas pour lisibilité */
.hrs-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(4, 12, 24, .96) 0%,
    rgba(4, 12, 24, .60) 40%,
    rgba(4, 12, 24, .12) 70%,
    transparent 100%
  );
}

/* Contenu info en bas du slide */
.hrs-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 24px 60px;
}
.hrs-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.hrs-dest {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 5px;
}
.hrs-hotel {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.hrs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.hrs-meta span {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 3px 10px;
}
.hrs-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 18px;
}
.hrs-price-from { font-size: 11px; color: rgba(255,255,255,.55); }
.hrs-price strong { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.hrs-price-unit { font-size: 11px; color: rgba(255,255,255,.55); }
.hrs-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 10px 20px;
  border-radius: 7px;
  transition: background .15s, transform .15s;
}
.hrs-slide:hover .hrs-cta-btn {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Dots navigation */
.hrs-dots {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.hrs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .25s;
}
.hrs-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ── Search bar ──────────────────────────────────────────────────── */
.search-bar-wrap {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 24px 32px;
  max-width: 1100px;
  margin: -36px auto 0;
  position: relative;
  z-index: 10;
  width: calc(100% - 10%);
}
.search-bar-inner {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.search-field {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid #e5e7eb;
  min-width: 0;
}
.search-field:first-child { padding-left: 0; }
.search-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.search-field-label svg { color: var(--navy); }
.search-field input,
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  padding: 4px 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.search-field input::placeholder { color: var(--muted); font-weight: 400; }
.search-btn-wrap { padding-left: 20px; display: flex; align-items: center; }
.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.search-btn:hover { background: var(--navy-dark); }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 80px 5%; }
.section-light  { background: var(--light); }
.section-white  { background: #fff; }
.section-navy   { background: var(--navy); color: #fff; }

.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 12px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}
.section-title.white { color: #fff; }
.section-sub  { font-size: 16px; color: var(--muted); margin-top: 8px; }
.section-sub.white { color: rgba(255,255,255,.7); }
.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.section-link:hover { color: var(--gold); }

/* ── Voyage cards ────────────────────────────────────────────────── */
.voyages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.voyages-carousel-wrap { position: relative; }
.voyages-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.voyages-carousel::-webkit-scrollbar { display: none; }

.voyage-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: start;
}
.voyages-grid .voyage-card { width: auto; flex-shrink: unset; scroll-snap-align: unset; }
.voyage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.voyage-card-img-wrap { position: relative; flex-shrink: 0; }
.voyage-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.voyage-card-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a5f9e 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; gap: 6px;
}
.voyage-card-placeholder .pl-icon { font-size: 40px; }
.voyage-card-placeholder .pl-name { font-size: 16px; font-weight: 700; }
.voyage-card-placeholder .pl-ctry { font-size: 12px; color: rgba(255,255,255,.6); }

.voyage-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 12px; border-radius: 4px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.badge-top-promo    { background: var(--gold); color: #fff; }
.badge-exclusif     { background: var(--navy); color: #fff; }
.badge-groupe-accompagné { background: #d97706; color: #fff; }
.badge-nouveauté    { background: #059669; color: #fff; }

.voyage-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.voyage-dest {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.25;
}
.voyage-hotel {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.voyage-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.voyage-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.voyage-meta-item svg { color: var(--navy); flex-shrink: 0; }
.voyage-price-wrap { margin-top: auto; }
.voyage-price-label { font-size: 10px; color: var(--muted); text-transform: uppercase; font-weight: 600; letter-spacing: .5px; }
.voyage-price { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.voyage-price-unit { font-size: 12px; color: var(--muted); }
.voyage-card-cta {
  display: block;
  margin-top: 14px;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background .15s;
}
.voyage-card-cta:hover { background: var(--navy-dark); color: #fff; }

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  z-index: 5;
  transition: background .15s, box-shadow .15s;
  color: var(--navy);
}
.carousel-arrow:hover { background: var(--navy); color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

/* ── Categories ──────────────────────────────────────────────────── */
.categories-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s;
  width: 100px;
}
.category-item:hover { transform: translateY(-4px); }
.category-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  transition: border-color .2s, background .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.category-item:hover .category-icon { border-color: var(--gold); background: #fffbf0; }
.category-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

/* ── Groupes section ─────────────────────────────────────────────── */
.groupes-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.groupes-photo {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.groupes-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.groupes-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,59,102,.55) 0%, rgba(10,32,53,.35) 100%);
}
.groupes-photo-fallback {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #1a4a7a 0%, #0d3b66 40%, #0a2540 100%);
  display: flex; align-items: center; justify-content: center;
}
.groupes-photo-fallback::after {
  content: '✈️';
  font-size: 96px;
  opacity: .18;
  position: absolute;
  bottom: 32px; right: 32px;
  transform: rotate(15deg);
}
.groupes-content {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.groupes-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.groupes-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.groupes-feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.groupes-feature-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}

/* Featured groupe card */
.groupe-card-featured {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 18px;
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.groupe-card-featured-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.groupe-card-featured-placeholder {
  width: 80px; height: 80px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.groupe-card-featured-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.groupe-card-featured-dates { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.groupe-card-featured-price { font-size: 16px; font-weight: 800; color: var(--gold); }
.groupe-card-featured-guide {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}
.guide-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── Why Vasco section ───────────────────────────────────────────── */
.why-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 40px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 32px;
  flex: 1;
  min-width: 160px;
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.why-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.why-text  { font-size: 12px; color: var(--muted); }

/* ── Newsletter ──────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--navy);
  padding: 70px 5%;
}
.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.newsletter-left { display: flex; align-items: center; gap: 24px; }
.newsletter-icon { font-size: 48px; }
.newsletter-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.newsletter-title { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.newsletter-sub { font-size: 13px; color: rgba(255,255,255,.65); }
.newsletter-form { display: flex; gap: 12px; align-items: stretch; }
.newsletter-form input {
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-family: inherit;
  width: 200px;
  background: rgba(255,255,255,.1);
  color: #fff;
  outline: none;
  transition: background .15s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { background: rgba(255,255,255,.15); }
.newsletter-form .btn-gold { padding: 14px 24px; font-size: 14px; }

/* Zoho Campaigns embed inside newsletter */
.newsletter-zoho { display: flex; align-items: center; }
.newsletter-zoho form { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.newsletter-zoho input[type="text"],
.newsletter-zoho input[type="email"] {
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  min-width: 180px;
}
.newsletter-zoho input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-zoho input[type="submit"],
.newsletter-zoho button[type="submit"] {
  padding: 14px 24px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .05em;
}
.newsletter-zoho input[type="submit"]:hover,
.newsletter-zoho button[type="submit"]:hover { background: var(--gold-dark); }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: #0a2035; color: #fff; padding: 60px 5% 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-col .footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold);
}
.footer-logo-text .logo-main { font-size: 17px; }
.footer-logo-text .logo-distinction { font-size: 10px; }
.footer-logo-text .logo-tagline { font-size: 8px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; }
.footer-ficav {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px; color: rgba(255,255,255,.55);
}
.footer-ficav strong { color: var(--gold); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-agency {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-agency-item { display: flex; flex-direction: column; gap: 2px; }
.footer-agency-city { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 6px; }
.footer-agency-phone { font-size: 13px; color: rgba(255,255,255,.5); padding-left: 16px; }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  transition: all .15s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

/* ── Page header (inner pages) ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a5f9e 100%);
  padding: 60px 5%;
  color: #fff;
}
.page-hero-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.page-hero-title { font-size: 38px; font-weight: 800; line-height: 1.15; margin-bottom: 10px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.75); }

/* ── Voyage detail ───────────────────────────────────────────────── */
.detail-wrap { max-width: 1200px; margin: 0 auto; padding: 48px 5%; }
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.detail-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px; margin-bottom: 24px;
}
.detail-card-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--light); }
.detail-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.detail-label { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--muted); letter-spacing: .5px; margin-bottom: 3px; }
.detail-value { font-size: 15px; font-weight: 600; color: var(--text); }
.incl-list { list-style: none; }
.incl-item { display: flex; gap: 10px; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--light); }
/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.gallery-thumb { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.gallery-thumb:hover img { transform: scale(1.06); }
/* Share bar */
.share-bar { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--light); flex-wrap: wrap; }
.share-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--muted); letter-spacing: .5px; flex: 0 0 100%; margin-bottom: 4px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: opacity .15s; flex: 1; justify-content: center; }
.share-btn:hover { opacity: .85; }
.share-fb { background: #1877f2; color: #fff; }
.share-pdf { background: var(--light); color: var(--navy); }
.incl-item:last-child { border-bottom: none; }
.icon-ok { color: #22c55e; }
.icon-no { color: var(--red); }

.price-sidebar {
  background: var(--navy); color: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px; position: sticky; top: 96px;
}
.price-sidebar-label { font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,.55); letter-spacing: 1px; margin-bottom: 4px; }
.price-sidebar-amount { font-size: 44px; font-weight: 800; color: var(--gold); line-height: 1; }
.price-sidebar-unit { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; font-size: 13px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-row:last-of-type { border-bottom: none; }

/* ── Groupe cards ────────────────────────────────────────────────── */
.groupes-list { display: flex; flex-direction: column; gap: 24px; max-width: 900px; margin: 0 auto; }
.groupe-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
  transition: box-shadow .2s;
}
.groupe-card:hover { box-shadow: var(--shadow-lg); }
.groupe-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.groupe-card-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a5f9e 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.groupe-card-body { padding: 28px 32px; display: flex; flex-direction: column; }
.groupe-card-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.groupe-card-dates { font-size: 13px; color: var(--muted); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.groupe-card-guide { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.groupe-card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.groupe-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.groupe-card-price-label { font-size: 11px; color: var(--muted); text-transform: uppercase; font-weight: 600; }
.groupe-card-price { font-size: 28px; font-weight: 800; color: var(--navy); }
.groupe-card-places {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff7ed; color: #c2410c;
  padding: 5px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
}

/* ── Forms ───────────────────────────────────────────────────────── */
.form-wrap { max-width: 720px; margin: 0 auto; padding: 56px 5%; }
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,59,102,.1);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* ── Contact page ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
.contact-info-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px;
}
.contact-info-row { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-value { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-value a { color: var(--navy); }
.contact-value a:hover { text-decoration: underline; }

/* ── Agences page ────────────────────────────────────────────────── */
.agences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.agence-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 36px 28px; text-align: center;
}
.agence-card-icon { font-size: 40px; margin-bottom: 14px; }
.agence-card-city { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.agence-card-phone { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.agence-card-phone a { color: var(--gold); }
.agence-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Promotions empty state ──────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 24px; color: var(--muted); }
.empty-state-icon { font-size: 56px; margin-bottom: 16px; }
.empty-state-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

/* ── Panneau Vedettes (tiroir droit) ─────────────────────────────── */
.vedettes-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  background: var(--navy);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: -4px 0 20px rgba(0,0,0,.18);
  transition: background .2s, right .35s;
  user-select: none;
}
.vedettes-tab svg { transform: rotate(90deg); fill: var(--gold); flex-shrink: 0; }
.vedettes-tab:hover { background: var(--navy-dark); }
.vedettes-tab.open { right: 360px; }

.vedettes-panel {
  position: fixed;
  top: 0; right: -380px;
  width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1099;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,.18);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.vedettes-panel.open { right: 0; }

.vedettes-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1098;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.vedettes-overlay.open { opacity: 1; pointer-events: auto; }

.vedettes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1.5px solid #f0f0f0;
  background: var(--navy);
}
.vedettes-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.vedettes-close {
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 6px;
  color: #fff;
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.vedettes-close:hover { background: rgba(255,255,255,.3); }

.vedettes-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vedettes-list::-webkit-scrollbar { width: 4px; }
.vedettes-list::-webkit-scrollbar-track { background: #f5f5f5; }
.vedettes-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.vedettes-card {
  display: flex;
  gap: 12px;
  background: #fafafa;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid #f0f0f0;
  transition: border-color .15s, box-shadow .15s;
}
.vedettes-card:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,.08); }

.vedettes-card-img {
  position: relative;
  width: 90px;
  flex-shrink: 0;
  background: #e5e7eb;
  overflow: hidden;
}
.vedettes-card-img img { width: 100%; height: 100%; object-fit: cover; }
.vedettes-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; min-height: 80px;
}
.vedettes-badge {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.vedettes-card-body {
  padding: 10px 12px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.vedettes-dest {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vedettes-hotel {
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vedettes-meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}
.vedettes-price {
  font-size: 12px;
  color: var(--navy);
  margin-top: 4px;
}
.vedettes-price strong {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}

.vedettes-footer {
  padding: 14px 16px;
  border-top: 1.5px solid #f0f0f0;
  text-align: center;
}
.vedettes-all-btn {
  display: block;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background .15s;
}
.vedettes-all-btn:hover { background: var(--navy-dark); }

@media (max-width: 480px) {
  .vedettes-panel { width: 100vw; right: -100vw; }
  .vedettes-tab.open { right: 100vw; }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .voyages-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .groupes-section { grid-template-columns: 1fr; }
  .groupes-photo { min-height: 280px; }
  .groupes-content { padding: 48px 36px; }
}

@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 16px 24px;
    z-index: 300;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--light); border-radius: 0; }
  .nav-toggle { display: flex; }
  .btn-rdv { display: none; }

  .hero h1 { font-size: 38px; }
  .hero-rslider { display: none; }
  .search-bar-wrap { display: none; }

  .voyages-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .agences-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .price-sidebar { position: static; }
  .groupe-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 24px; }
  .hero { padding: 70px 24px; min-height: 480px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .section-title { font-size: 26px; }
  .voyages-grid { grid-template-columns: 1fr; }
  .groupes-features { grid-template-columns: 1fr 1fr; }
  .why-item { min-width: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .detail-grid-2 { grid-template-columns: 1fr; }
}
