/* ============================================================
   TRAVEL WITH OUMAIMA — Editorial White Premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #1F2B22;
  --copper: #3DAA70;
  --copper-light: #5CC48A;
  --beige: #B2E0C9;
  --ivory: #F0F8F4;
  --white: #ffffff;
  --off-white: #F5FAF7;
  --gradient-accent: linear-gradient(135deg, #1F4A30 0%, #3DAA70 100%);
  --text-dark: #111111;
  --text-mid: #555555;
  --text-light: #999999;
  --font-title: 'Cormorant Garamond', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-xs: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-sm: 0 6px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-lg: 0 32px 80px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ── CURSEUR GSAP ─────────────────────────────────────────── */
#gsap-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  border-radius: 50%; background: var(--copper);
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border-radius: 50%; border: 1.5px solid var(--copper);
  transform: translate(-50%, -50%);
  opacity: 0.6; transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring.grow { width: 56px; height: 56px; opacity: 0.35; }
@media (hover: none) { #gsap-cursor { display: none; } }

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: white; }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 2px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-script {
  font-family: var(--font-script);
  color: var(--copper);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.t-title {
  font-family: var(--font-title);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.t-body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  font-size: 0.9rem;
}
.t-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
/* reveal classes — animées par GSAP, visibles par défaut en fallback */
.reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s var(--ease);
}
#loader.done { opacity: 0; pointer-events: none; }
.loader-script {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--copper);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}
.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.loader-progress {
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  animation: loaderFill 1.8s ease-out forwards;
  transform-origin: left;
}
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img {
  width: 58px; height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.5s;
}
#navbar.scrolled .nav-logo img { filter: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .script {
  font-family: var(--font-script);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  transition: color 0.5s;
}
#navbar.scrolled .nav-logo-text .script { color: var(--copper); }
.nav-logo-text .brand {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: white;
  transition: color 0.5s;
}
#navbar.scrolled .nav-logo-text .brand { color: var(--text-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s;
}
#navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gradient-accent);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--copper); }
#navbar.scrolled .nav-links a:hover { color: var(--copper); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn-outline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
  border-radius: 50px;
  transition: all 0.35s;
}
#navbar.scrolled .nav-cta .btn-outline {
  border-color: var(--copper);
  color: var(--copper);
}
.nav-cta .btn-outline:hover {
  background: var(--gradient-accent);
  border-color: var(--copper);
  color: white;
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span {
  width: 22px; height: 1.5px;
  background: white;
  transition: all 0.3s;
  display: block;
}
#navbar.scrolled .nav-hamburger span { background: var(--text-dark); }

.mobile-menu {
  position: fixed; inset: 0;
  background: white;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--copper); }
.mobile-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.10); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.04) 35%,
    rgba(0,0,0,0.06) 60%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: white;
  max-width: 860px;
  padding: 0 24px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo-wrap { animation: fadeUp 1.2s var(--ease-out) 0.4s both; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 1s var(--ease-out) 1.2s both;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 38px; border-radius: 50px;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(184,115,51,0.38); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: white;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 38px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.38);
  transition: all 0.4s var(--ease);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text-dark); color: white;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 34px; border-radius: 50px;
  transition: all 0.4s var(--ease);
}
.btn-dark:hover { background: var(--gradient-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-copper {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-accent); color: white;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 34px; border-radius: 50px;
  transition: all 0.4s var(--ease);
}
.btn-copper:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,115,51,0.38); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text-dark);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 34px; border-radius: 50px;
  border: 1px solid rgba(17,17,17,0.2);
  transition: all 0.4s var(--ease);
}
.btn-ghost-dark:hover { background: var(--text-dark); color: white; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .t-script { font-size: 2.4rem; }
.section-header .t-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin-top: 8px;
  color: var(--text-dark);
}
.section-header .t-body { max-width: 500px; margin: 20px auto 0; }
.section-header .divider {
  width: 40px; height: 1px;
  background: var(--gradient-accent);
  margin: 24px auto 0;
}

/* ============================================================
   PHILOSOPHY — White editorial split layout
   ============================================================ */
#philosophy {
  background: white;
  padding: 0;
  overflow: hidden;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.philosophy-image {
  position: relative;
  overflow: hidden;
}
.philosophy-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease);
}
.philosophy-image:hover img { transform: scale(1.06); }
.philosophy-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,115,51,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.philosophy-text {
  padding: 100px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  position: relative;
}
.philosophy-text::before {
  content: '"';
  font-family: var(--font-title);
  font-size: 18rem;
  color: rgba(184,115,51,0.06);
  position: absolute;
  top: -40px; left: 60px;
  line-height: 1;
  pointer-events: none;
}
.philosophy-text .t-script { color: var(--copper); font-size: 2rem; }
.philosophy-text .t-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--text-dark);
  margin: 16px 0 28px;
}
.philosophy-text .t-body { color: var(--text-mid); font-size: 0.9rem; }
.philosophy-accent {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.philosophy-stat { display: flex; flex-direction: column; gap: 4px; }
.philosophy-stat .num {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--copper);
  font-weight: 300;
  line-height: 1;
}
.philosophy-stat .label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   EXPERIENCES
   ============================================================ */
#experiences { background: #ffffff; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exp-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #eee;
  box-shadow: var(--shadow-sm);
}
.exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.exp-card:hover img { transform: scale(1.07); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.05) 45%, transparent 100%);
  transition: background 0.5s;
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.2) 55%, transparent 100%);
}
.exp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 44px 36px;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}
.exp-card:hover .exp-card-content { transform: translateY(0); }
.exp-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(184,115,51,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--copper);
}
.exp-card-content .t-title { font-size: 1.9rem; color: white; margin-bottom: 10px; }
.exp-card-content .t-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 22px;
  line-height: 1.65;
}
.exp-link {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.4s var(--ease);
}
.exp-card:hover .exp-link { opacity: 1; transform: translateX(0); }
.exp-link::after { content: '→'; transition: transform 0.3s; }
.exp-link:hover::after { transform: translateX(4px); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
#destinations { background: white; }
.dest-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 56px; justify-content: center;
}
.dest-filter-btn {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text-mid);
  background: transparent;
  transition: all 0.3s;
}
.dest-filter-btn.active,
.dest-filter-btn:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dest-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-carousel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ffffff;
}
.dest-slides { display: flex; height: 100%; transition: transform 0.55s var(--ease); }
.dest-slide { flex: 0 0 100%; height: 100%; position: relative; }
.dest-slide img { width: 100%; height: 100%; object-fit: cover; }
.dest-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-dark);
  z-index: 3; opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.dest-card:hover .dest-carousel-btn { opacity: 1; }
.dest-carousel-btn.prev { left: 12px; }
.dest-carousel-btn.next { right: 12px; }
.dest-carousel-btn:hover { background: white; transform: translateY(-50%) scale(1.1); }
.dest-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
}
.dest-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.3s;
}
.dest-dot.active { background: white; width: 14px; border-radius: 3px; }
.dest-info { padding: 24px 28px 28px; }
.dest-location {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 8px;
}
.dest-info .t-title { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 12px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.dest-tag {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px;
  background: #ffffff;
  color: var(--text-mid);
  border: 1px solid rgba(0,0,0,0.07);
}
.dest-discover {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark);
  transition: gap 0.3s, color 0.3s;
}
.dest-discover:hover { gap: 14px; color: var(--copper); }

/* ============================================================
   SEARCH / FILTER BAR
   ============================================================ */
#search-section {
  background: var(--text-dark);
  padding: 64px 0;
}
.search-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 8px;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  max-width: 920px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.search-item {
  flex: 1; min-width: 160px;
  padding: 14px 22px;
  border-right: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.search-item:last-of-type { border-right: none; }
.search-label {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper); display: block; margin-bottom: 4px;
}
.search-input, .search-select {
  width: 100%; border: none; outline: none;
  font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 400;
  color: var(--text-dark); background: transparent;
  cursor: pointer; appearance: none; -webkit-appearance: none;
}
.search-submit {
  background: var(--gradient-accent); color: white;
  border-radius: 14px; padding: 16px 30px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.search-submit:hover { background: var(--text-dark); }

/* ============================================================
   NEXT DEPARTURES — white cards
   ============================================================ */
#departures { background: #ffffff; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dep-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dep-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.dep-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ffffff;
}
.dep-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dep-card:hover .dep-image img { transform: scale(1.06); }
.dep-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gradient-accent); color: white;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.dep-content { padding: 28px 28px 24px; }
.dep-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.dep-meta span {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light);
  display: flex; align-items: center; gap: 4px;
}
.dep-content .t-title { font-size: 1.35rem; color: var(--text-dark); margin-bottom: 12px; }
.dep-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 16px;
}
.dep-price { display: flex; flex-direction: column; }
.dep-price .amount {
  font-family: var(--font-title);
  font-size: 2rem; color: var(--copper); line-height: 1;
}
.dep-price .per { font-size: 0.62rem; color: var(--text-light); letter-spacing: 0.04em; margin-top: 2px; }
.dep-spots { font-size: 0.65rem; font-weight: 600; color: #e07b3c; letter-spacing: 0.04em; }
.dep-btn {
  display: block; text-align: center;
  margin-top: 18px;
  background: var(--text-dark); color: white;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px; border-radius: 12px;
  transition: all 0.3s;
}
.dep-btn:hover { background: var(--gradient-accent); }

/* ============================================================
   WHY CHOOSE US — now a dark strip (why-strip-section)
   ============================================================ */
#why { background: var(--forest); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 44px 24px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,115,51,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover {
  border-color: rgba(184,115,51,0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 2.2rem; margin-bottom: 18px;
  display: block;
  transition: transform 0.35s var(--ease);
}
.why-item:hover .why-icon { transform: scale(1.18) rotate(4deg); }
.why-item .t-label { color: var(--copper); margin-bottom: 10px; }
.why-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7; margin-top: 8px;
}

/* ============================================================
   GALLERY — MASONRY
   ============================================================ */
#gallery { background: #ffffff; }
.masonry { columns: 4; column-gap: 14px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer; position: relative;
  box-shadow: var(--shadow-xs);
}
.masonry-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.6s var(--ease);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.masonry-item:hover .masonry-overlay { background: rgba(17,17,17,0.3); }
.masonry-zoom {
  width: 44px; height: 44px; border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0; transform: scale(0.7);
  transition: all 0.35s var(--ease);
}
.masonry-item:hover .masonry-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: white; font-size: 1.8rem;
  cursor: pointer; opacity: 0.6; transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.lightbox-nav:hover { background: var(--gradient-accent); border-color: var(--copper); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: white; }
.testi-slider {
  position: relative; overflow: hidden;
  max-width: 820px; margin: 0 auto;
}
.testi-track { display: flex; transition: transform 0.6s var(--ease); }
.testi-slide { flex: 0 0 100%; text-align: center; padding: 0 40px; }
.testi-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 20px;
  border: 2px solid var(--copper);
}
.testi-stars { color: var(--copper); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 4px; }
.testi-quote {
  font-family: var(--font-title);
  font-size: 1.55rem; font-style: italic;
  color: var(--text-dark); line-height: 1.55;
  margin-bottom: 28px;
}
.testi-name {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper);
}
.testi-role { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.testi-controls {
  display: flex; gap: 12px; justify-content: center;
  align-items: center; margin-top: 48px;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.12);
  cursor: pointer; transition: all 0.3s;
}
.testi-dot.active { background: var(--copper); width: 24px; border-radius: 4px; }
.testi-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; color: var(--text-dark);
}
.testi-btn:hover { background: var(--text-dark); color: white; border-color: var(--text-dark); }

/* ============================================================
   COMMUNITY
   ============================================================ */
#community { position: relative; min-height: 580px; overflow: hidden; }
.community-bg { position: absolute; inset: 0; }
.community-bg img { width: 100%; height: 100%; object-fit: cover; }
.community-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.5) 100%);
}
.community-content {
  position: relative; z-index: 2;
  max-width: 640px; padding: 120px 0; color: white;
}
.community-content .t-script { color: var(--beige); }
.community-content .t-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: white; margin: 14px 0 24px;
}
.community-content .t-body { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.community-features {
  display: flex; gap: 32px; margin-top: 40px;
}
.community-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
}
.community-feat span { font-size: 1.2rem; }

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
#instagram { background: white; }
.insta-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 40px;
}
.insta-handle {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; font-weight: 600; color: var(--text-dark);
}
.insta-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.insta-item {
  aspect-ratio: 1; overflow: hidden;
  cursor: pointer; position: relative;
}
.insta-item img { transition: transform 0.55s var(--ease); }
.insta-item:hover img { transform: scale(1.1); }
.insta-item-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  opacity: 0; transition: all 0.3s;
}
.insta-item:hover .insta-item-overlay { background: rgba(17,17,17,0.42); opacity: 1; }

/* ============================================================
   VIDEO TESTIMONIALS
   ============================================================ */
.vtesti-slider-wrap {
  display: flex; align-items: center; gap: 20px;
  margin-top: 48px;
}
.vtesti-slider-viewport {
  flex: 1; overflow: hidden;
}
.vtesti-slider-track {
  display: flex; gap: 16px;
  transition: transform 0.5s var(--ease-out);
}
.vtesti-slide {
  flex: 0 0 calc(33.333% - 11px);
  position: relative;
  border-radius: 18px; overflow: hidden;
  aspect-ratio: 9/16;
  background: #0a1a10;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.55;
  transform: scale(0.95);
}
.vtesti-slide.active {
  opacity: 1; transform: scale(1);
}
.vtesti-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.vtesti-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: white;
  background: rgba(0,0,0,0.3);
  transition: opacity 0.3s;
  pointer-events: none;
}
.vtesti-slide.playing .vtesti-play-btn { opacity: 0; }
.vtesti-nav {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: white; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.vtesti-nav:hover { background: var(--copper); border-color: var(--copper); }
.vtesti-dots-wrap {
  display: flex; gap: 8px; justify-content: center; margin-top: 24px;
}
.vtesti-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s;
}
.vtesti-dot.active { background: var(--copper); width: 24px; border-radius: 4px; }

@media (max-width: 768px) {
  .vtesti-slide { flex: 0 0 calc(50% - 8px); }
  .vtesti-nav { width: 40px; height: 40px; font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .vtesti-slide { flex: 0 0 calc(75% - 8px); }
  .vtesti-slider-wrap { gap: 10px; }
}

/* ============================================================
   NEWSLETTER — copper band
   ============================================================ */
#newsletter { background: var(--gradient-accent); padding: 100px 0; }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.newsletter-text .t-script { color: rgba(255,255,255,0.65); }
.newsletter-text .t-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: white; margin: 8px 0 16px;
}
.newsletter-text .t-body { color: rgba(255,255,255,0.72); }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-input-wrap {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  padding: 4px 4px 4px 22px;
  display: flex; align-items: center;
  backdrop-filter: blur(8px);
}
.newsletter-input-wrap input {
  flex: 1; background: transparent;
  border: none; outline: none; color: white;
  font-family: var(--font-body);
  font-size: 0.88rem; padding: 14px 0;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input-wrap button {
  background: white; color: var(--copper);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 10px;
  transition: all 0.3s; white-space: nowrap;
}
.newsletter-input-wrap button:hover { background: var(--text-dark); color: white; }
.newsletter-consent {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  display: flex; align-items: flex-start; gap: 8px;
}
.newsletter-consent input { margin-top: 2px; accent-color: white; }

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  transition: all 0.35s var(--ease);
  text-align: center;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,115,51,0.2);
}

/* ============================================================
   FOOTER — dark elegant
   ============================================================ */
footer {
  background: #0e0e0e;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .t-script { font-size: 2rem; color: var(--copper); }
.footer-brand .t-title { font-size: 1.5rem; color: white; margin-bottom: 16px; font-weight: 300; }
.footer-brand .t-body { color: rgba(255,255,255,0.4); font-size: 0.82rem; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; margin-top: 28px; }
.social-link {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
  transition: all 0.3s; text-decoration: none;
}
.social-link:hover { background: var(--gradient-accent); border-color: var(--copper); color: white; }
.footer-col h4 {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 24px;
}
.footer-col a {
  display: block; font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--copper); }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.68rem; color: rgba(255,255,255,0.22);
  letter-spacing: 0.05em;
}
.footer-bottom a { color: var(--copper); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.38);
  z-index: 998; transition: transform 0.3s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
#top-bar {
  background: var(--forest);
  color: rgba(255,255,255,0.72);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 9px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  transition: transform 0.35s ease;
}
.top-bar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.top-bar-contact { display: flex; gap: 24px; align-items: center; }
.top-bar-link {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.25s;
}
.top-bar-link:hover { color: var(--copper); }
.top-bar-social { display: flex; align-items: center; gap: 16px; }
.top-bar-badge {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); padding: 3px 10px;
  border: 1px solid rgba(184,115,51,0.35); border-radius: 50px;
}
.top-bar-social-link {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.68rem; transition: color 0.25s;
}
.top-bar-social-link:hover { color: white; }
.top-bar-social-wa {
  background: var(--gradient-accent); color: white !important;
  padding: 4px 14px; border-radius: 50px;
  font-weight: 600;
}
.top-bar-social-wa:hover { background: #a0642a; }

/* ============================================================
   HERO BUTTONS
   ============================================================ */
.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  background: var(--gradient-accent); color: white;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(184,115,51,0.4);
}
.btn-primary-hero:hover { background: #a0642a; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,115,51,0.5); }
.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* ============================================================
   WHY STRIP
   ============================================================ */
.why-strip-section {
  padding: 64px 0;
  background: var(--forest);
}
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-strip-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.why-strip-item:last-child { border-right: none; }
.why-strip-icon {
  font-size: 2.2rem; display: block; margin-bottom: 14px;
}
.why-strip-label {
  font-family: var(--font-title);
  font-size: 1.25rem; color: white;
  margin-bottom: 10px;
}
.why-strip-item p {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  line-height: 1.65; font-family: var(--font-body);
}

/* ============================================================
   DEPARTURE CARDS — CINEMATIC FULL-IMAGE STYLE
   ============================================================ */
#departures { background: #f4f1ec; }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Full-image cinematic card */
.dep-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: var(--delay, 0s);
}
.dep-card-featured { height: 520px; }

/* Background image */
.dep-card-bg {
  position: absolute; inset: 0;
}
.dep-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.dep-card:hover .dep-card-bg img { transform: scale(1.08); }

/* Multi-layer gradient for readability */
.dep-card-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.0) 30%,
      rgba(0,0,0,0.55) 65%,
      rgba(0,0,0,0.88) 100%),
    linear-gradient(to top, transparent 80%, rgba(0,0,0,0.2) 100%);
  transition: background 0.4s;
}
.dep-card:hover .dep-card-gradient {
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.0) 20%,
      rgba(0,0,0,0.65) 60%,
      rgba(0,0,0,0.95) 100%),
    linear-gradient(to top, transparent 80%, rgba(0,0,0,0.2) 100%);
}

/* Floating top badges */
.dep-card-top {
  position: absolute; top: 18px; left: 18px; right: 18px;
  display: flex; align-items: flex-start; justify-content: space-between;
  z-index: 2;
}
.dep-featured-badge {
  background: var(--gradient-accent);
  color: white;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(184,115,51,0.5);
}
.dep-duration-chip {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 50px;
}

/* Urgency strip */
.dep-urgency-strip {
  position: absolute; top: 60px; left: 0; right: 0;
  z-index: 2; text-align: center;
}
.dep-urgency-strip span {
  display: inline-block;
  background: rgba(230,57,70,0.92);
  color: white; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.75} }

/* Bottom content */
.dep-card-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.dep-card:hover .dep-card-bottom { transform: translateY(0); }

.dep-card-date {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 8px;
}
.dep-card-title {
  font-family: var(--font-title);
  font-size: 1.85rem; color: white;
  line-height: 1.15; margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.dep-card-featured .dep-card-title { font-size: 2.1rem; }
.dep-card-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.72);
  line-height: 1.55; margin-bottom: 18px;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease, margin 0.35s;
}
.dep-card:hover .dep-card-desc {
  max-height: 80px;
  opacity: 1;
}

.dep-card-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.dep-card-price { display: flex; align-items: baseline; gap: 5px; }
.dep-price-amount {
  font-family: var(--font-title);
  font-size: 2.2rem; color: white; line-height: 1;
  font-weight: 400;
}
.dep-price-currency {
  font-size: 0.72rem; font-weight: 700;
  color: var(--copper); letter-spacing: 0.1em;
}
.dep-price-note {
  display: none; /* hidden in card view */
}
.dep-reserve-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 50px;
  background: white; color: var(--text-dark);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.dep-reserve-btn:hover {
  background: var(--gradient-accent); color: white;
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(184,115,51,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-card { height: 420px; }
  .dep-card-featured { height: 460px; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .why-strip-item:nth-child(2) { border-right: none; }
  .why-strip-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .why-strip-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
  .masonry { columns: 3; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .top-bar-contact { display: none; }
  .top-bar-inner { justify-content: center; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-hamburger { display: flex; }
  #navbar { padding: 16px 20px; }
  #navbar.scrolled { padding: 12px 20px; }
  .exp-grid { grid-template-columns: 1fr; gap: 20px; }
  .exp-card { aspect-ratio: 16/10; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: 1fr; }
  .dep-card { height: 380px; }
  .dep-card-featured { height: 420px; }
  .dep-card-title { font-size: 1.55rem; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .masonry { columns: 2; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  /* Supprimer les animations translateX sur mobile pour éviter le débordement */
  .reveal-left, .reveal-right {
    transform: translateY(32px);
  }
  .reveal-left.visible, .reveal-right.visible {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  #top-bar { display: none; }
  #navbar { top: 0 !important; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 48px; }
  .section-header .t-script { font-size: 1.8rem; }
  .section-header .t-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Hero mobile */
  .hero-ctas { flex-direction: row; flex-wrap: wrap; gap: 10px; padding: 0 20px; }
  .btn-primary-hero, .btn-ghost-hero {
    font-size: 0.6rem; padding: 12px 20px; flex: 1; min-width: 140px; text-align: center; justify-content: center;
  }

  /* Departure cards mobile */
  .dep-card { height: 340px; }
  .dep-card-featured { height: 370px; }
  .dep-card-title { font-size: 1.4rem; }
  .dep-card-bottom { padding: 20px; }
  .dep-price-amount { font-size: 1.8rem; }
  .dep-reserve-btn { padding: 9px 18px; font-size: 0.58rem; }

  .dest-grid { grid-template-columns: 1fr; }
  .why-strip { grid-template-columns: 1fr; }
  .why-strip-item { border-right: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .why-strip-item:first-child { border-top: none; }
  .footer-top { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .community-features { flex-direction: column; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr !important; }
  .testi-quote { font-size: 1.2rem; }
  .testi-slide { padding: 0 16px; }
}

/* ============================================================
   DEP CARDS — NEW SLIDER + DATE TABS
   ============================================================ */
.dep-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  will-change: transform;
}
.dep-card:hover { box-shadow: var(--shadow-lg); }

.dep-card-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dep-card-swiper .swiper-wrapper,
.dep-card-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.dep-card-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.dep-card:hover .dep-card-swiper .swiper-slide.swiper-slide-active img { transform: scale(1.07); }
.dep-card-swiper .swiper-pagination { bottom: 135px; }
.dep-card-swiper .swiper-pagination-bullet { background: white; opacity: 0.6; }
.dep-card-swiper .swiper-pagination-bullet-active { opacity: 1; }

.dep-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.82) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.4s;
}
.dep-card:hover .dep-card-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.88) 100%);
}

.dep-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
}

.dep-card-head { display: flex; flex-direction: column; gap: 2px; }
.dep-card-title {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
  color: white;
}
.dep-card-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 2px;
}

.dep-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dep-card-duration {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
}
.dep-card-price-tag {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}
.dep-card-price-tag em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin-left: 2px;
}

.dep-dates-row { display: flex; flex-direction: column; gap: 6px; }
.dep-dates-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.dep-date-single {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.dep-date-tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.dep-date-tab {
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.dep-date-tab:hover { background: rgba(255,255,255,0.18); color: white; }
.dep-date-tab.active { background: var(--gradient-accent); border-color: transparent; color: white; }

.dep-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}
.dep-spots-chip { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.72); }
.dep-detail-btn {
  padding: 9px 18px;
  border-radius: 24px;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.dep-detail-btn:hover { opacity: 0.88; transform: translateY(-1px); }

@media (max-width: 768px) { .dep-card { height: 420px; } .dep-card-title { font-size: 1.45rem; } }
@media (max-width: 480px) { .dep-card { height: 380px; } .dep-card-title { font-size: 1.3rem; } .dep-card-body { padding: 16px; } }

/* ============================================================
   TRIP MODAL
   ============================================================ */
.trip-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(6px);
}
.trip-modal-overlay.open { opacity: 1; pointer-events: auto; }
.trip-modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 900px;
  height: 560px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.trip-modal-overlay.open .trip-modal { transform: translateY(0) scale(1); }
.trip-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  border: none;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.trip-modal-close:hover { background: rgba(0,0,0,0.8); }
.trip-modal-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
}
.trip-modal-gallery { position: relative; background: var(--forest); height: 100%; min-height: 300px; overflow: hidden; min-width: 0; }
.trip-modal-swiper, .trip-modal-swiper .swiper-wrapper, .trip-modal-swiper .swiper-slide { height: 100%; width: 100%; }
.trip-modal-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.trip-modal-swiper .swiper-button-next, .trip-modal-swiper .swiper-button-prev { color: white; --swiper-navigation-size: 20px; }
.trip-modal-swiper .swiper-pagination-bullet { background: white; }
.trip-modal-content {
  padding: 36px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
}
.trip-modal-title { font-family: var(--font-title); font-size: 1.8rem; font-weight: 500; color: var(--text-dark); line-height: 1.2; }
.trip-modal-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trip-modal-duration { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.04em; }
.trip-modal-price { font-size: 1.8rem; font-weight: 700; color: var(--copper); }
.trip-modal-price-note { font-size: 0.72rem; color: var(--text-light); margin-top: -10px; }
.trip-modal-dates { display: flex; flex-direction: column; gap: 8px; }
.trip-date-btn {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--beige);
  background: white;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}
.trip-date-btn:hover { border-color: var(--copper); color: var(--copper); }
.trip-date-btn.active { background: var(--gradient-accent); border-color: transparent; color: white; }
.trip-modal-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-mid); flex: 1; }
.trip-modal-spots { font-size: 0.78rem; font-weight: 600; color: var(--copper); }
.trip-modal-reserve {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 32px;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}
.trip-modal-reserve:hover { opacity: 0.88; transform: translateY(-2px); }
@media (max-width: 700px) {
  .trip-modal-inner { grid-template-columns: 1fr; grid-template-rows: 260px 1fr; overflow-y: auto; max-height: 90vh; }
  .trip-modal-gallery { min-height: 260px; }
  .trip-modal-content { padding: 24px 18px; overflow-y: visible; }
  .trip-modal-title { font-size: 1.5rem; }
}
