/* ===== VARIABLES & RESET — PALETTE ORGANIQUE PROFONDE ===== */
    :root {
      --primary-green: #0b2b26;
      --secondary-green: #1d4a40;
      --accent-gold: #eac384;
      --accent-brown: #b38b5f;
      --light-cream: #f9f7f4;
      --soft-green: #e8f3e9;
      --card-bg: rgba(255, 255, 255, 0.95);
      --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.15);
      --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.2);
      --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

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

    body {
      background-color: var(--light-cream);
      color: #1e2a2e;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ===== LOADER SPECTACULAIRE ===== */
    .loader-wrapper {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, #0f3324, #1d4e35);
      display: flex; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.9s ease, visibility 0.9s;
    }
    .loader-wrapper.hidden { opacity: 0; visibility: hidden; }
    .loader-container { text-align: center; width: 360px; }
    .loader-logo {
      position: relative; width: 160px; height: 160px; margin: 0 auto 30px;
      border-radius: 50%; overflow: hidden;
      box-shadow: 0 20px 40px #00000080, 0 0 0 4px #eac38480;
      animation: pulseLogo 2.2s infinite;
    }
    @keyframes pulseLogo {
      0% { transform: scale(1); box-shadow: 0 20px 40px #00000080, 0 0 0 4px #eac38480; }
      50% { transform: scale(1.07); box-shadow: 0 35px 55px #000000b0, 0 0 0 8px #f5cf8c; }
      100% { transform: scale(1); box-shadow: 0 20px 40px #00000080, 0 0 0 4px #eac38480; }
    }
    .loader-logo img { width: 100%; height: 100%; object-fit: cover; }
    .light-beam {
      position: absolute; top: -100%; left: -100%; width: 300%; height: 300%;
      background: linear-gradient(45deg, transparent 30%, rgba(255, 235, 170, 0.6) 50%, transparent 70%);
      animation: beamFlow 2.4s infinite linear; pointer-events: none;
    }
    @keyframes beamFlow {
      0% { transform: translateX(-30%) translateY(-30%) rotate(20deg); }
      100% { transform: translateX(30%) translateY(30%) rotate(20deg); }
    }
    .loader-text {
      font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900;
      letter-spacing: 6px; margin-bottom: 20px;
      background: linear-gradient(145deg, #f9eac9, #f5c77e, #f9eac9);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      animation: shimmerText 2.8s infinite;
    }
    @keyframes shimmerText { 0% { opacity: 0.7; } 50% { opacity: 1; text-shadow: 0 0 15px #f5cf8c; } 100% { opacity: 0.7; } }
    .loader-progress { width: 100%; height: 6px; background: #0a382b; border-radius: 30px; overflow: hidden; box-shadow: inset 0 2px 6px #00000070; }
    .progress-bar { width: 0%; height: 100%; background: linear-gradient(90deg, #f3c26b, #faeac3, #f3c26b); background-size: 200%; animation: progressMove 2s ease-out forwards; }
    @keyframes progressMove { 0% { width: 0%; } 100% { width: 100%; } }

    /* ===== NAVIGATION RAFFINÉE AVEC MENU BURGER RESPONSIVE ===== */
    .main-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      background: rgba(11, 43, 38, 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px -10px #00000080;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(234, 195, 132, 0.3);
    }

    .logo {
      position: relative;
      border-radius: 50%;
      overflow: visible;
      z-index: 101;
    }

    .logo::after {
      content: '';
      position: absolute;
      top: -10%;
      left: -10%;
      width: 120%;
      height: 120%;
      background: radial-gradient(circle, rgba(234,195,132,0.4) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
    }

    .logo:hover::after { opacity: 1; }

    .logo img {
      height: 65px;
      width: auto;
      border-radius: 50%;
      box-shadow: 0 4px 20px #00000050;
      transition: transform 0.4s;
    }

    .logo img:hover { transform: rotate(6deg) scale(1.1); }

    /* Menu burger pour mobile */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 101;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background: #fff3e0;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
      display: flex;
      align-items: center;
    }

    .nav-menu a {
      margin-left: 2.8rem;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 1px;
      color: #fff3e0;
      transition: 0.3s;
      padding-bottom: 6px;
      border-bottom: 2px solid transparent;
      position: relative;
    }

    .nav-menu a::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #eac384, #f5dcac);
      transition: width 0.3s;
    }

    .nav-menu a:hover::before,
    .nav-menu a.active::before {
      width: 100%;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: #faeac6;
    }

    /* ===== MEDIA QUERIES POUR LA NAVIGATION RESPONSIVE ===== */
    @media screen and (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(11, 43, 38, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        padding: 2rem;
      }

      .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
      }

      .nav-menu a {
        margin: 1.5rem 0;
        font-size: 1.4rem;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .nav-menu.active a {
        opacity: 1;
        transform: translateX(0);
      }

      .nav-menu.active a:nth-child(1) { transition-delay: 0.1s; }
      .nav-menu.active a:nth-child(2) { transition-delay: 0.2s; }
      .nav-menu.active a:nth-child(3) { transition-delay: 0.3s; }
      .nav-menu.active a:nth-child(4) { transition-delay: 0.4s; }
      .nav-menu.active a:nth-child(5) { transition-delay: 0.5s; }

      /* Overlay sombre quand le menu est ouvert */
      .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        backdrop-filter: blur(2px);
      }

      .nav-overlay.active {
        display: block;
      }
    }

    /* Pour les très petits écrans */
    @media screen and (max-width: 480px) {
      .main-nav {
        padding: 0.8rem 4%;
      }

      .logo img {
        height: 50px;
      }

      .nav-menu {
        width: 100%;
        max-width: none;
      }

      .nav-menu a {
        font-size: 1.2rem;
        margin: 1.2rem 0;
      }
    }

    /* Pour les tablettes en mode paysage */
    @media screen and (min-width: 769px) and (max-width: 1024px) {
      .nav-menu a {
        margin-left: 1.8rem;
        font-size: 1rem;
      }

      .logo img {
        height: 55px;
      }
    }

   /* ===== HERO AVEC IMAGE DE FOND ===== */
.excursions-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
  transform: scale(1.1);
  animation: zoomBreath 24s infinite alternate;
}

@keyframes zoomBreath {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(11,43,38,0.8) 0%, rgba(27,83,71,0.5) 80%);
  z-index: 1;
}

.excursions-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 1100px;
  animation: revealText 1.8s ease;
}

@keyframes revealText {
  0% { opacity: 0; clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  100% { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

.excursions-hero h1 {
  font-size: clamp(3.5rem, 12vw, 6.2rem);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px #000000b3;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
}

.excursions-hero h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #eac384;
  animation: lineExpand 1.2s ease 0.8s forwards;
  box-shadow: 0 0 20px #ffd966;
}

@keyframes lineExpand {
  to { width: 180px; }
}

.excursions-hero p {
  font-size: 1.8rem;
  max-width: 900px;
  margin: 2rem auto 0;
  font-weight: 300;
  color: #f9f0de;
  text-shadow: 0 4px 20px #000000;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  padding: 20px 40px;
  border-radius: 80px;
  border: 1px solid rgba(255,215,140,0.4);
  opacity: 0;
  animation: fadeUp 1.2s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 2rem;
  animation: bounceSoft 2.4s infinite;
}

@keyframes bounceSoft {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(-18px); }
}

    /* ===== SECTION VIDÉO BACKGROUND ===== */
.video-background {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.3);
  transform: scale(1.1);
  animation: zoomBreathVideo 20s infinite alternate;
}

@keyframes zoomBreathVideo {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(11, 43, 38, 0.089) 0%, rgba(29, 74, 64, 0.014) 100%);
  z-index: 2;
  pointer-events: none;
}

.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  pointer-events: none;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: 4px;
  animation: fadeUpVideo 1.5s ease;
  background: linear-gradient(135deg, #fff8e7, #eac384);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 300;
  max-width: 800px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeUpVideo 1.5s 0.3s both;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  padding: 15px 30px;
  border-radius: 60px;
  border: 1px solid rgba(234,195,132,0.3);
}

@keyframes fadeUpVideo {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .video-background {
    height: 450px;
  }
  
  .video-subtitle {
    padding: 12px 20px;
    font-size: 1.2rem;
  }
}

    /* ===== TEAM AVEC FLIP CARDS ===== */
    .team {
      padding: 120px 20px; background: linear-gradient(145deg, #f5efe2, #fffbf2);
      position: relative; overflow: hidden;
    }
    .team::before { content: '👥'; position: absolute; bottom: 10px; right: 10px; font-size: 200px; opacity: 0.03; }
    .section-title {
      font-size: 4rem; font-family: 'Playfair Display'; font-weight: 900;
      color: var(--secondary-green); text-align: center; margin-bottom: 1rem;
      position: relative; display: inline-block; left: 50%; transform: translateX(-50%);
    }
    .section-title::after {
      content: ''; position: absolute; bottom: -10px; left: 0; width: 100%;
      height: 4px; background: linear-gradient(90deg, transparent, #b38b5f, transparent);
    }
    .section-subtitle { text-align: center; color: #5f6a64; margin-bottom: 4rem; font-size: 1.3rem; }
    .team-grid {
      display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: 1300px; margin: 0 auto;
    }
    .team-member {
      background: white; padding: 30px 20px 30px; border-radius: 40px; width: 260px;
      box-shadow: 0 25px 40px -20px #1d2c26; transition: 0.5s; position: relative;
      border: 1px solid rgba(179,139,95,0.2); transform-style: preserve-3d; perspective: 600px;
    }
    .team-member:hover { transform: translateY(-20px) rotateY(4deg); box-shadow: 0 45px 60px -20px #6b4f30; }
    .team-member img {
      width: 160px; height: 160px; object-fit: cover; border-radius: 50%; margin-bottom: 20px;
      border: 4px solid #eac384; transition: 0.4s; box-shadow: 0 15px 30px -8px #241e14;
    }
    .team-member:hover img { transform: scale(1.05) rotate(6deg); border-color: #b38b5f; }
    .team-member h4 { font-size: 1.5rem; color: #0b2b26; margin-bottom: 6px; }
    .team-member p { color: #6e837a; font-style: italic; }

    /* ===== SECTION EXCURSIONS — CARTES IMMERSIVES ===== */
    .excursion-section {
      background: linear-gradient(145deg, #14473b, #0f3a30); padding: 120px 2rem;
      position: relative; overflow: hidden;
    }
    .excursion-section h2 {
      font-size: 4.5rem; font-family: 'Playfair Display'; font-weight: 900; text-align: center;
      color: #fff7e3; letter-spacing: 2px; margin-bottom: 1.5rem; text-shadow: 0 10px 30px #00000080;
    }
    .intro-text {
      max-width: 900px; margin: 0 auto 5rem; text-align: center; font-size: 1.3rem;
      color: #f3eddb; line-height: 1.8; padding: 30px; background: rgba(0,0,0,0.2);
      border-radius: 100px; backdrop-filter: blur(4px); border: 1px solid rgba(234,195,132,0.3);
    }
    .excursion-card {
      display: flex; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px);
      border-radius: 50px 20px 50px 20px; overflow: hidden; box-shadow: 0 30px 60px -20px black;
      margin-bottom: 5rem; max-width: 1400px; margin-left: auto; margin-right: auto;
      opacity: 0; transform: translateY(60px) scale(0.98); transition: 0.9s cubic-bezier(0.2, 0.9, 0.3, 1);
      border: 1px solid rgba(234,195,132,0.4);
    }
    .excursion-card.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
    .excursion-card:nth-child(odd) { flex-direction: row; }
    .excursion-card:nth-child(even) { flex-direction: row-reverse; }
    /* Slideshow ultra dynamique */
    .excursion-card .slideshow-container {
      width: 45%; position: relative; overflow: hidden;
    }
    .excursion-card .slides {
      display: flex; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); height: 100%;
    }
    .excursion-card .slide { min-width: 100%; height: 100%; }
    .excursion-card .slide img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; transition: 0.8s; }
    .excursion-card:hover .slide img { transform: scale(1.1); }
    .slideshow-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,240,0.9); color: #0b2b26; border: none; width: 50px; height: 50px;
      border-radius: 50%; font-size: 26px; cursor: pointer; z-index: 10; transition: 0.3s;
      display: flex; align-items: center; justify-content: center; opacity: 0;
      box-shadow: 0 6px 16px #00000050;
    }
    .excursion-card:hover .slideshow-btn { opacity: 1; }
    .slideshow-btn:hover { background: #eac384; color: white; transform: translateY(-50%) scale(1.15); }
    .prev-btn { left: 20px; } .next-btn { right: 20px; }
    .slideshow-dots {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 14px; z-index: 10;
    }
    .dot {
      width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.5);
      cursor: pointer; transition: 0.3s; border: 2px solid transparent;
    }
    .dot.active { background: #eac384; transform: scale(1.3); border-color: white; }
    .excursion-info {
      padding: 3.5rem; width: 55%; display: flex; flex-direction: column; justify-content: center;
      background: linear-gradient(135deg, #ffffff, #fbf6ed);
    }
    .excursion-info h3 {
      font-size: 2.8rem; font-family: 'Playfair Display'; font-weight: 700;
      color: #1d4a40; margin-bottom: 1.2rem; position: relative;
    }
    .excursion-info h3::after {
      content: ''; position: absolute; bottom: -8px; left: 0; width: 70px; height: 4px;
      background: #b38b5f; transition: width 0.4s;
    }
    .excursion-card:hover .excursion-info h3::after { width: 140px; }
    .excursion-info p { color: #2b4f40; font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.8rem; }
    .product-details {
      margin: 1.5rem 0 2rem; padding: 1.8rem; background: #ecf3ea; border-radius: 30px;
      border-left: 6px solid #b38b5f; box-shadow: inset 0 2px 10px #cbb59b30;
    }
    .product-details h4 { color: #0b2b26; font-size: 1.3rem; margin-bottom: 1rem; display: flex; gap: 8px; }
    .product-details ul { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
    .product-details li { padding-left: 1.8rem; position: relative; color: #1e4d3d; font-weight: 500; }
    .product-details li:before { content: "🌿"; position: absolute; left: 0; color: #b38b5f; }

    /* ===== BOUTONS AVEC ÉTINCELLES ===== */
    .btn-primary, .btn-outline {
      display: inline-block; text-decoration: none; font-weight: 700; border-radius: 60px;
      transition: 0.3s; margin-right: 1.2rem; border: 2px solid transparent; letter-spacing: 1px;
      padding: 14px 38px; position: relative; overflow: hidden; z-index: 1;
    }
    .btn-primary {
      background: #b38b5f; color: white; box-shadow: 0 8px 20px #b38b5f80;
    }
    .btn-primary::before {
      content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s; z-index: -1;
    }
    .btn-primary:hover::before { left: 100%; }
    .btn-primary:hover { background: #9c744b; transform: translateY(-4px); box-shadow: 0 15px 30px #9c744b; }
    .btn-outline { background: transparent; border: 2px solid #b38b5f; color: #1d4a40; }
    .btn-outline:hover { background: #b38b5f; color: white; transform: translateY(-4px); }

    /* ===== FEATURES AVEC FLOTTEMENT ===== */
    .excursion-features {
      background: #fcf7ef; padding: 100px 2rem; position: relative;
    }
    .features-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 3rem;
      max-width: 1300px; margin: 4rem auto 0;
    }
    .feature-item {
      text-align: center; padding: 3rem 1.5rem; border-radius: 50px; background: white;
      box-shadow: 0 20px 40px -10px #b8aa8e; transition: 0.5s; border: 1px solid #eddabc;
      animation: floatFeature 6s infinite ease-in-out;
    }
    @keyframes floatFeature { 0% { transform: translateY(0); } 50% { transform: translateY(-12px); } 100% { transform: translateY(0); } }
    .feature-item:nth-child(even) { animation-delay: 1s; }
    .feature-item:hover { transform: scale(1.05) translateY(-15px); background: #faf1e1; }
    .feature-icon { font-size: 4.5rem; margin-bottom: 1.2rem; filter: drop-shadow(2px 8px 12px #b38b5f60); }

    /* ===== CTA SECTION AVEC VAGUE ===== */
    .cta-section {
      background: radial-gradient(circle at 30% 30%, #1e5f4b, #0b2b26);
      color: white; text-align: center; padding: 120px 2rem;
      border-radius: 150px 150px 0 0; position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; top: -30%; left: -30%; width: 160%; height: 160%;
      background: radial-gradient(circle, rgba(234,195,132,0.2) 0%, transparent 70%);
      animation: pulseBg 14s infinite;
    }
    @keyframes pulseBg { 0% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.2); opacity: 0.6; } }
    .cta-section h2 { font-size: 4.5rem; font-family: 'Playfair Display'; margin-bottom: 1.5rem; }
    .cta-section .btn-primary { background: #eac384; color: #0b2b26; box-shadow: 0 10px 30px #eac384; }

    /* ===== FOOTER ===== */
    footer {
      background: #0a1f1b; color: #dbd0c0; padding: 4rem 2rem 2rem; position: relative;
    }
    footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, transparent, #eac384, transparent); }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 3rem; max-width: 1300px; margin: 0 auto; }
    .footer-section h4 { color: #eac384; font-size: 1.5rem; margin-bottom: 1.5rem; }
    .footer-section a { color: #cbb99f; text-decoration: none; transition: 0.3s; }
    .footer-section a:hover { color: #eac384; padding-left: 8px; }
    .social-footer a { display: inline-block; margin-right: 1.8rem; font-size: 2.2rem; color: #c6ad8a; transition: 0.3s; }
    .social-footer a:hover { color: #eac384; transform: translateY(-8px) scale(1.15); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .excursion-card, .excursion-card:nth-child(odd), .excursion-card:nth-child(even) { flex-direction: column !important; }
      .excursion-card .slideshow-container, .excursion-card:nth-child(odd) .slideshow-container { width: 100%; order: 1 !important; }
      .excursion-info { width: 100%; order: 2 !important; padding: 2rem; }
      .product-details ul { grid-template-columns: 1fr; }
      .excursions-hero p { font-size: 1.3rem; padding: 20px; }
    }