/* ============================================
   LPBPAA SERVICES - CSS Global
   Design: Corporate Élégant - Pont Cameroun-Russie
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --bleu-nuit: #0B1F3A;
  --bleu-royal: #1A3C6E;
  --rouge-vif: #C8102E;
  --or: #D4AF37;
  --or-clair: #F0D060;
  --blanc: #FFFFFF;
  --gris-clair: #F5F7FA;
  --gris-texte: #4A4A5A;
  --ombre: 0 4px 24px rgba(11,31,58,0.12);
  --ombre-forte: 0 8px 40px rgba(11,31,58,0.22);
  --radius: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--gris-texte);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--bleu-nuit);
  line-height: 1.2;
}

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

img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BOUTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rouge-vif);
  color: var(--blanc);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #a50d25;
  transform: translateY(-2px);
  box-shadow: var(--ombre-forte);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blanc);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--blanc);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--blanc);
  color: var(--bleu-nuit);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--or);
  color: var(--bleu-nuit);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: var(--ombre-forte);
}

/* ---- SECTION TITLES ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .eyebrow {
  display: inline-block;
  color: var(--rouge-vif);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gris-texte);
  font-size: 1.05rem;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 0;
}
.section-divider span {
  display: block;
  height: 2px;
  width: 60px;
  background: var(--or);
}
.section-divider i {
  color: var(--or);
  font-size: 1rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--ombre-forte);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 4px 16px 4px 6px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.22);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-logo:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 24px rgba(212,175,55,0.18), 0 4px 16px rgba(0,0,0,0.18);
}

/* ── Logo icon wrapper — halo + glow ── */
.nav-logo-icon {
  position: relative;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 3px;
  /* double ring: gold inner + subtle outer glow */
  box-shadow:
    0 0 0 2px rgba(212,175,55,0.85),
    0 0 0 5px rgba(212,175,55,0.18),
    0 4px 18px rgba(212,175,55,0.35),
    0 2px 8px rgba(0,0,0,0.30);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nav-logo:hover .nav-logo-icon {
  box-shadow:
    0 0 0 2px var(--or),
    0 0 0 6px rgba(212,175,55,0.28),
    0 6px 26px rgba(212,175,55,0.5),
    0 2px 10px rgba(0,0,0,0.30);
  transform: scale(1.06);
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* ── Logo text — refined typography ── */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-text strong {
  color: var(--blanc);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.nav-logo-text span {
  color: var(--or);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--or);
  background: rgba(212,175,55,0.08);
}
.nav-cta {
  background: var(--rouge-vif) !important;
  color: var(--blanc) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: #a50d25 !important;
}
/* ── Language dropdown ───────────────────────────────────────── */
.nav-lang {
  display: flex;
  align-items: center;
  margin-left: 16px;
}
#langDropdownWrapper {
  position: relative;
}
.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(212,175,55,0.45);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-toggle-btn span {
  font-size: 0.8rem;
}
.lang-toggle-btn:hover,
.lang-toggle-btn.open {
  background: var(--or);
  color: var(--bleu-nuit);
  border-color: var(--or);
}
.lang-chevron {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}
.lang-toggle-btn.open .lang-chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bleu-nuit);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  list-style: none;
  padding: 6px;
  min-width: 170px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 9999;
  animation: dropIn 0.18s ease;
}
.lang-dropdown.open {
  display: block;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 14px;
  background: transparent;
  border: none;
  border-radius: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}
.lang-option:hover {
  background: rgba(212,175,55,0.12);
  color: var(--or);
}
.lang-option.active {
  background: var(--or);
  color: var(--bleu-nuit);
}
.lang-flag, .lang-option img, .lang-toggle-btn img { width:24px;height:18px;object-fit:cover;border-radius:2px;vertical-align:middle;flex-shrink:0; }
.lang-name { flex: 1; }
/* lang-short removed */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--blanc);
  transition: var(--transition);
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--or);
  color: var(--bleu-nuit);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 6px 24px;
  letter-spacing: 0.5px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-royal) 50%, #0f2c54 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--or);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--blanc);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-title span {
  color: var(--or);
}
.hero-slogan {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-style: italic;
  border-left: 3px solid var(--rouge-vif);
  padding-left: 16px;
}
.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.stat-item {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 20px 12px;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--or);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.hero-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(212,175,55,0.3);
  box-shadow: var(--ombre-forte);
}
.hero-flag-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--blanc);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--ombre-forte);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bleu-nuit);
}
.flag-icons { font-size: 1.4rem; }

/* ---- SECTION ABOUT ---- */
.about-section {
  padding: 100px 0;
  background: var(--gris-clair);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  box-shadow: var(--ombre-forte);
  background: #f5f7fa;
}
/* Variant: full image, no crop at all */
.about-img--full {
  max-height: none;    /* on laisse l'image s'afficher entièrement */
}
.about-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--rouge-vif);
  color: var(--blanc);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--ombre-forte);
}
.about-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  line-height: 1;
}
.about-badge span {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-content .eyebrow {
  display: inline-block;
  color: var(--rouge-vif);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; color: var(--gris-texte); }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--ombre);
}
.value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-royal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 1rem;
}
.value-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; color: #777; margin: 0; }

/* ---- SERVICES ---- */
.services-section {
  padding: 100px 0;
  background: var(--blanc);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--blanc);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bleu-royal), var(--rouge-vif));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--ombre-forte);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #EBF0F8, #D9E3F0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--bleu-royal);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-royal));
  color: var(--or);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 20px; }
.service-link {
  color: var(--rouge-vif);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; }

/* ---- DESTINATIONS ---- */
.destinations-section {
  padding: 100px 0;
  background: var(--bleu-nuit);
}
.destinations-section .section-header h2,
.destinations-section .section-header p { color: var(--blanc); }
.destinations-section .section-header p { opacity: 0.7; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.dest-tag {
  background: var(--rouge-vif);
  color: var(--blanc);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 8px;
}
.dest-overlay h3 { color: var(--blanc); font-size: 1.1rem; }
.dest-overlay span { color: var(--or); font-size: 0.8rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--gris-clair);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--blanc);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--ombre);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--bleu-royal);
  opacity: 0.08;
  line-height: 1;
}
.testi-stars { color: var(--or); font-size: 0.9rem; margin-bottom: 14px; }
.testi-card p { font-size: 0.92rem; font-style: italic; color: #555; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--or);
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--bleu-nuit); }
.testi-role { font-size: 0.78rem; color: #888; }

/* ---- CTA BANNER ---- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rouge-vif) 0%, #8B0A1E 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  color: var(--blanc);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ---- PARTNERS ---- */
.partners-section {
  padding: 70px 0;
  background: var(--blanc);
  border-top: 1px solid #eee;
}
.partners-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 3px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #aaa;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 1px;
}
.partner-item i { font-size: 1.4rem; }
.partner-item:hover { color: var(--bleu-royal); }

/* ---- FOOTER ---- */
footer {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; margin: 16px 0 24px; max-width: 280px; }

/* ── Footer logo — white pill container for contrast ── */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 50px;
  padding: 6px 20px 6px 6px;
  backdrop-filter: blur(6px);
  margin-bottom: 4px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.footer-logo-wrap:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 0 28px rgba(212,175,55,0.18), 0 4px 18px rgba(0,0,0,0.25);
}
.footer-logo-wrap .nav-logo-icon {
  position: relative;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  box-shadow:
    0 0 0 2px rgba(212,175,55,0.85),
    0 0 0 5px rgba(212,175,55,0.18),
    0 4px 16px rgba(212,175,55,0.32),
    0 2px 8px rgba(0,0,0,0.30);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.footer-logo-wrap:hover .nav-logo-icon {
  box-shadow:
    0 0 0 2px var(--or),
    0 0 0 6px rgba(212,175,55,0.28),
    0 6px 24px rgba(212,175,55,0.48),
    0 2px 10px rgba(0,0,0,0.30);
  transform: scale(1.06);
}
.footer-logo-wrap .nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
.footer-logo-wrap .nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.footer-logo-wrap .nav-logo-text strong {
  color: var(--blanc);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  font-weight: 900;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.footer-logo-wrap .nav-logo-text span {
  color: var(--or);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--rouge-vif);
  border-color: var(--rouge-vif);
  color: var(--blanc);
}
footer h4 {
  color: var(--blanc);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--or); }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.contact-line i { color: var(--or); margin-top: 3px; min-width: 14px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--or); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.82) 0%, rgba(26,60,110,0.72) 60%, rgba(200,16,46,0.35) 100%);
}
.page-hero .container { position: relative; z-index: 2; width: 100%; }
.page-hero h1 {
  color: var(--blanc);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  animation: heroTextIn 0.8s ease both;
}
.page-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  animation: heroTextIn 0.8s 0.2s ease both;
}
@keyframes heroTextIn {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--or); }
.breadcrumb i { font-size: 0.7rem; }

/* ---- MOBILE MENU (global, not inside @media) ---- */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 108px; /* top-bar(36px) + navbar(72px) */
  left: 0;
  right: 0;
  background: var(--bleu-nuit);
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: var(--ombre-forte);
  z-index: 998;
  border-top: 2px solid rgba(212,175,55,0.3);
  max-height: calc(100vh - 108px);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: rgba(212,175,55,0.1); color: var(--or); }

/* Hamburger → X animation */
.hamburger span { transition: var(--transition); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--blanc);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .about-values { grid-template-columns: 1fr; }

}

/* ============================================
   ANIMATIONS GLOBALES & EFFETS VISUELS
   ============================================ */

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* Cinematic image strip (voyage) */
.voyage-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 6px;
}
.voyage-strip-item { overflow: hidden; position: relative; }
.voyage-strip-item:first-child { grid-row: span 2; }
.voyage-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.voyage-strip-item:hover img { transform: scale(1.08); }
.voyage-strip-item .strip-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 100%);
  color: white; padding: 16px 12px 10px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; opacity: 0; transition: opacity 0.3s;
}
.voyage-strip-item:hover .strip-label { opacity: 1; }

/* Mosaic gallery */
.mosaic { display: grid; gap: 8px; }
.mosaic-4 { grid-template-columns: repeat(4,1fr); }
.mosaic-3 { grid-template-columns: repeat(3,1fr); }
.mosaic-item { overflow: hidden; border-radius: 8px; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.mosaic-item:hover img { transform: scale(1.06); }

/* Floating animation for hero badge */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

/* Pulse */
@keyframes pulse-or {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}
.pulse-or { animation: pulse-or 2s ease infinite; }

/* Horizontal scroll photo carousel */
.photo-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--or) transparent;
}
.photo-scroll::-webkit-scrollbar { height: 4px; }
.photo-scroll::-webkit-scrollbar-thumb { background: var(--or); border-radius: 2px; }
.photo-scroll-item { flex: 0 0 280px; height: 200px; border-radius: 10px; overflow: hidden; position: relative; }
.photo-scroll-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-scroll-item:hover img { transform: scale(1.05); }

/* Auto-scroll animation */
@keyframes autoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.auto-scroll-track {
  display: flex;
  gap: 12px;
  animation: autoScroll 40s linear infinite;
  width: max-content;
}
.auto-scroll-track:hover { animation-play-state: paused; }
.auto-scroll-wrap { overflow: hidden; }

/* Counter animation */
@keyframes countUp { from { opacity:0; } to { opacity:1; } }

/* Logo nav — premium display (styles définis plus haut dans .nav-logo-icon) */

/* ── Lang dropdown mobile adjustments ───────────────────────── */
@media (max-width: 900px) {
  .lang-toggle-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  .lang-dropdown {
    right: 0;
    min-width: 155px;
  }
}

/* ════════════════════════════════════════════════════════════════
   GALLERY SECTION — index.html  (images complètes, visages nets)
   ════════════════════════════════════════════════════════════════ */

.gallery-section {
  padding: 80px 0;
  background: var(--bleu-nuit);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ── Grille principale ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}

/* Grande image à gauche sur 2 lignes */
.gallery-item--large {
  grid-row: span 2;
}

/* Chaque cellule : hauteur auto basée sur le contenu de l'image */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #0b1f3a;
  border-radius: 4px;
}

/* L'image s'adapte à sa propre hauteur naturelle — plus de crop brutal */
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: block;
  object-fit: cover;
  object-position: top center;   /* priorité visages / têtes */
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

/* Pour la grande image, on lui donne une hauteur suffisante */
.gallery-item--large .gallery-img {
  min-height: 440px;
  object-position: center center;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(11,31,58,0.88) 0%, transparent 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Strip défilant ─────────────────────────────────────────── */
.gallery-scroll-wrap {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.gallery-scroll-track {
  display: flex;
  animation: autoScroll 32s linear infinite;
  width: max-content;
}

.gallery-scroll-item {
  flex: 0 0 220px;
  position: relative;
  overflow: hidden;
  margin-right: 6px;
}

/* Hauteur augmentée pour ne pas couper les visages */
.gallery-scroll-img {
  width: 220px;
  height: 180px;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}

.gallery-scroll-item:hover .gallery-scroll-img {
  transform: scale(1.06);
}

.gallery-scroll-item span {
  position: absolute;
  bottom: 8px;
  left: 10px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* ── Responsive gallery ─────────────────────────────────────── */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item--large .gallery-img {
    min-height: 280px;
  }
  .gallery-img {
    min-height: 160px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--large {
    grid-column: span 1;
  }
  .gallery-item--large .gallery-img {
    min-height: 240px;
  }
  .gallery-img {
    min-height: 200px;
  }
  .gallery-scroll-item {
    flex: 0 0 160px;
  }
  .gallery-scroll-img {
    width: 160px;
    height: 150px;
  }
}

/* ════════════════════════════════════════════════════════════════
   CONTACT GALLERY — juste au-dessus du footer
   ════════════════════════════════════════════════════════════════ */

.contact-gallery-section {
  padding: 60px 0 0;
  background: var(--bleu-nuit);
}

.contact-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-gallery-item {
  position: relative;
  overflow: hidden;
  background: #0b1f3a;
}

/* object-position: top pour que les têtes soient toujours visibles */
.contact-gallery-img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.88);
  transition: filter 0.3s, transform 0.5s;
}

.contact-gallery-item:hover .contact-gallery-img {
  filter: brightness(1.05);
  transform: scale(1.03);
}

.contact-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(11,31,58,0.88) 0%, transparent 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
  .contact-gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-gallery-img {
    height: 240px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-gallery-img {
    height: 220px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
   Positionné au-dessus du bouton WhatsApp flottant
   ═══════════════════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 96px;          /* juste au-dessus du WhatsApp float (28+56+12) */
  right: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bleu-royal);
  border: 2px solid rgba(212,175,55,0.55);
  color: var(--blanc);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(11,31,58,0.35), 0 0 0 3px rgba(212,175,55,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  /* Pas d'animation pulse — discret et élégant */
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--or);
  color: var(--bleu-nuit);
  border-color: var(--or);
  box-shadow: 0 6px 24px rgba(212,175,55,0.45), 0 0 0 4px rgba(212,175,55,0.18);
  transform: translateY(-3px);
}
.scroll-top-btn:active {
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — réduction de l'espace header → grille
   ═══════════════════════════════════════════════════════════════ */
.gallery-header {
  text-align: center;
  margin-bottom: 24px !important; /* était 48px */
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP CARD — icône grande + badge animé
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-card {
  position: relative;
  overflow: hidden;
}
/* Halo d'icône WhatsApp — remplace le <i> nu */
.whatsapp-icon-wrap {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
  animation: wapp-pulse 2.2s ease-in-out infinite;
}
@keyframes wapp-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,255,255,0.08); }
  50%       { box-shadow: 0 0 0 10px rgba(255,255,255,0.18); }
}
/* Badge "En ligne" */
.whatsapp-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #7FFF00;
  border-radius: 50%;
  border: 2px solid #1DAA54;
  animation: online-blink 1.8s ease-in-out infinite;
}
@keyframes online-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — espacement serré header → grille (override final)
   ═══════════════════════════════════════════════════════════════ */
.gallery-section {
  padding-top: 60px !important;
  padding-bottom: 80px !important;
}
.gallery-section .gallery-header {
  margin-bottom: 12px !important;
}
.gallery-section .gallery-header p {
  margin-bottom: 0 !important;
}
/* gallery-grid: aucune animation, aucun décalage, visible immédiatement */
.gallery-grid {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Maps grid responsive ── */
@media (max-width: 768px) {
  .maps-grid-2col {
    grid-template-columns: 1fr !important;
  }
}
