/* ===== VARIABLES CSS UNIFIÉES ===== */
:root {
  /* ===== COULEURS PRINCIPALES ===== */
  --color-primary: #ff5722;
  --color-primary-light: #ff6b5b;
  --color-primary-dark: #e63946;
  --color-secondary: #f77f00;
  --color-accent: #fcbf49;

  /* ===== COULEURS PRIMAIRES (Compatibilité) ===== */
  --primary: #ff5722;
  --primary-50: #fff3f0;
  --primary-100: #ffe0db;
  --primary-200: #ffccbc;
  --primary-600: #f4511e;
  --primary-700: #e64a19;

  /* ===== COULEURS NEUTRES UNIFIÉES ===== */
  --color-neutral: #2d373c;
  --color-neutral-50: #f8fafc;
  --color-neutral-100: #f1f5f9;
  --color-neutral-200: #e2e8f0;
  --color-neutral-300: #cbd5e1;
  --color-neutral-400: #94a3b8;
  --color-neutral-500: #64748b;
  --color-neutral-600: #475569;
  --color-neutral-700: #334155;
  --color-neutral-800: #1e293b;
  --color-neutral-900: #0f172a;
  --color-white: #ffffff;

  /* ===== COULEURS NEUTRES (Compatibilité) ===== */
  --neutral-0: #ffffff;
  --neutral-100: #f2f4f7;
  --neutral-200: #eaecf0;
  --neutral-600: #475467;
  --neutral-800: #1d2939;
  --neutral-900: #101828;

  /* ===== BACKGROUNDS ===== */
  --bg-primary: var(--color-white);
  --bg-topbar: oklch(0.21 0.04 265.78);

  /* ===== ESPACEMENT UNIFIÉ ===== */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ===== BORDER RADIUS ===== */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;

  /* ===== OMBRES ===== */
  --shadow-sm: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(16, 24, 40, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(16, 24, 40, 0.1);

  /* ===== TYPOGRAPHIE ===== */
  --f-primary: "Inter", system-ui, sans-serif;
  --f-secondary: "Barlow", sans-serif;

  /* ===== TAILLES DE TEXTE ===== */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* ===== ANIMATIONS ===== */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ET BASE ===== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--f-primary);
  line-height: 1.6;
}
 /* Loading state */
      .loading {
        position: fixed;
        inset: 0;
        background: var(--neutral-900);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        transition: opacity 0.3s ease;
      }

      .loading.hidden {
        opacity: 0;
        pointer-events: none;
      }
body {
  font-family: var(--f-primary);
  background: linear-gradient(135deg, #fcfcfd 0%, #f9fafb 100%);
  color: var(--color-neutral-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header {
  box-shadow: 0 2px 12px rgba(255, 87, 34, 0.12);
}

/* ===== LOADING STATE ===== */
.loading {
  position: fixed;
  inset: 0;
  background: var(--color-neutral-900);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}
/* ===== TOP BAR OPTIMISÉE ET COMPACTE ===== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-topbar);
  padding: 10px 20px; /* Réduit de 14px à 10px */
  color: var(--color-white);
  font-size: 0.875rem; /* Réduit de 1rem à 0.875rem */
  font-weight: 500;
  min-height: 45px; /* Hauteur fixe plus compacte */
}

.top-bar .left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Réduit l'espacement */
}

.top-bar .left .localisation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px; /* Réduit de 8px à 6px */
}

.language-switcher {
  position: relative;
  margin-right: 0;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.language-current:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 120px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-switcher:hover .language-dropdown,
.language-switcher.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.language-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  color: #1d2939 !important; /* Gris très foncé pour visibilité */
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.language-dropdown a:hover {
  background: linear-gradient(90deg, var(--primary-50), rgba(255, 87, 34, 0.08));
  color: #d84315 !important; /* Orange plus foncé pour meilleur contraste */
  font-weight: 700;
}

.language-dropdown img {
  border-radius: 2px;
}

.top-bar .right {
  display: flex;
  align-items: center;
  gap: 12px; /* Réduit de 16px à 12px */
}

.top-bar .right .contact-email,
.top-bar .right .contact-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; /* Réduit de 8px à 5px */
}

.top-bar .right .contact-email a,
.top-bar .right .contact-phone a {
  font-size: 0.8125rem; /* Plus petit */
  white-space: nowrap; /* Évite les retours à la ligne */
}

.top-bar span.material-symbols-outlined {
  color: var(--color-primary);
  font-size: 16px; /* Réduit de 18px par défaut */
}

.top-bar .social-links {
  display: flex;
  align-items: center;
  gap: 6px; /* Espacement réduit entre icônes */
  padding-right: 0; /* Supprimé padding-right: 5px */
}

.top-bar .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px; /* Padding minimal pour zone de clic */
  border-radius: 4px;
  transition: all 0.2s ease;
}

.top-bar .social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.top-bar .social-links img {
  width: 18px; /* Réduit de 24px à 18px */
  height: 18px;
  transition: opacity 0.2s ease;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ===== RESPONSIVE TOP BAR ===== */
@media (max-width: 1200px) {
  .top-bar {
    padding: 8px 15px;
    font-size: 0.8125rem;
  }

  .top-bar .right {
    gap: 10px;
  }

  .top-bar .right .contact-email,
  .top-bar .right .contact-phone {
    gap: 4px;
  }

  .top-bar .social-links {
    gap: 4px;
  }

  .top-bar .social-links img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 992px) {
  .top-bar {
    padding: 6px 12px;
    min-height: 40px;
  }

  .top-bar .left {
    gap: 10px;
  }

  .top-bar .right .contact-email a,
  .top-bar .right .contact-phone a {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 8px;
    padding: 8px 15px;
    min-height: auto;
  }

  .top-bar .left,
  .top-bar .right {
    width: 100%;
    justify-content: center;
  }

  .top-bar .right {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar .right {
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-bar .right .contact-email,
  .top-bar .right .contact-phone {
    flex: 1;
    min-width: 120px;
  }

  .language-current {
    font-size: 0.75rem;
  }
}

/* ===== VARIABLES CSS ===== */
:root {
  --bg-topbar: oklch(0.21 0.04 265.78);
  --color-primary: #ff5722;
  --color-white: #ffffff;
  --primary-50: #fff3f0;
  --neutral-800: #1d2939;
}

/* ===== NAVIGATION CORRIGÉE - LIENS COMPACTS ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
  height: 75px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-neutral-200);
  position: relative;
  z-index: 100;
}

/* ===== LOGO COMPACT ===== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-neutral-800);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 180px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-neutral-800);
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== LIENS NAVIGATION COMPACTS ===== */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 15px;
}

.nav-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--color-neutral-700);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.9;
  padding: 6px 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-primary);
  background: var(--primary-50);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 80%;
  background: var(--color-primary);
}

.nav-links a.active {
  opacity: 1;
  color: var(--color-neutral-900);
  font-weight: 700;
  background: var(--primary-50);
}

.nav-links a.active::after {
  width: 80%;
  height: 3px;
  background: var(--color-primary);
}

/* ===== DROPDOWN MENU FIXÉ AVEC Z-INDEX ÉLEVÉ ===== */
.dropdown-menu {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.dropdown-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.dropdown-menu:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--color-neutral-200);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
  z-index: 9999; /* Z-index très élevé pour passer au-dessus de tout */
}

.dropdown-menu:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-neutral-200);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: var(--color-neutral-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  /* border-radius: 0; */
  background: none;
}

.dropdown-content a:hover {
  background: var(--primary-50);
  color: var(--color-primary);
  transform: none;
}

.dropdown-content a::after {
  display: none;
}

/* ===== BOUTON CTA COMPACT ===== */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 9px 18px;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(255, 87, 34, 0.25);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  min-width: 120px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.35);
}

.nav-cta .material-symbols-outlined {
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1300px) {
  .nav-links ul {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.89rem;
    padding: 5px 8px;
  }

  .nav-links a:hover {
    color: var(--color-primary);
    background: var(--primary-50);
    transform: translateY(-2px);
  }
}

@media (max-width: 1200px) {
  nav {
    padding: 10px 20px;
    height: 70px;
  }

  .nav-links ul {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.75rem;
    padding: 4px 6px;
  }

  .nav-links a:hover {
    color: var(--color-primary);
    background: var(--primary-50);
    transform: translateY(-2px);
  }

  .logo-container {
    min-width: 160px;
  }

  .nav-cta {
    padding: 8px 15px;
    font-size: 0.75rem;
    min-width: 100px;
  }
}

/* Les styles du menu hamburger sont gérés dans mobile-fixes.css pour éviter les conflits */
/* ===== NAVIGATION MOBILE RESPONSIVE - CORRECTION COMPLÈTE ===== */

/* Container pour les éléments de droite */
.nav-right {
  display: none; /* Caché par défaut sur desktop */
  align-items: center;
  gap: 10px;
}

/* Navigation desktop (existant) */
@media (min-width: 769px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
    height: 75px;
  }

  .nav-right {
    display: none !important; /* Forcé caché sur desktop */
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  .nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 15px;
  }

  /* Bouton CTA à droite sur desktop */
  .nav-cta:not(.nav-right .nav-cta) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 9px 18px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(255, 87, 34, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    min-width: 120px;
  }
}

/* NAVIGATION MOBILE */
@media (max-width: 768px) {
  /* Réorganiser la navigation en mode mobile */
  nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 70px !important;
    padding: 12px 20px !important;
    position: relative;
  }

  /* Afficher le container de droite sur mobile */
  .nav-right {
    display: flex !important;
    align-items: center;
    gap: 10px;
    order: 3;
  }

  /* Logo reste à gauche */
  .logo-container {
    order: 1;
    min-width: auto;
    gap: 6px;
    flex: 0 0 auto;
  }

  .logo-main {
    font-size: 0.9rem;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  /* Cacher le CTA desktop */
  .nav-cta:not(.nav-right .nav-cta) {
    display: none !important;
  }

  /* CTA mobile dans .nav-right */
  .nav-right .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    min-width: 80px;
    order: 1;
  }

  /* Hamburger styles gérés dans mobile-fixes.css */

  /* Menu mobile overlay */
  .nav-links {
    position: fixed !important;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    margin: 0 !important;
    padding: 24px 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    order: 4;
  }

  /* Menu ouvert */
  .nav-links.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Liens en colonne */
  .nav-links ul {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100%;
    padding: 0 20px;
    justify-content: flex-start !important;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--color-neutral-100);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 16px 16px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: left !important;
    border-radius: 8px !important;
    background: none !important;
    white-space: normal !important;
    transition: all 0.3s ease !important;
    color: var(--color-neutral-700) !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links a:hover {
    background: linear-gradient(90deg, var(--primary-50), rgba(255, 87, 34, 0.05)) !important;
    padding-left: 24px !important;
    color: var(--color-primary) !important;
    transform: translateX(4px) !important;
  }

  .nav-links a.active {
    background: linear-gradient(90deg, var(--primary-50), rgba(255, 87, 34, 0.08)) !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    border-left: 4px solid var(--color-primary) !important;
    padding-left: 12px !important;
  }

  /* Dropdown en mobile */
  .dropdown-menu {
    position: static !important;
  }

  .dropdown-toggle {
    justify-content: space-between !important;
    width: 100% !important;
  }

  .dropdown-content {
    position: static !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--color-neutral-50) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    left: 0 !important;
  }

  .dropdown-content::before {
    display: none !important;
  }

  .dropdown-content li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .dropdown-menu.active .dropdown-content {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 200px !important;
    padding: 10px 0 !important;
  }

  .dropdown-content a {
    display: block !important;
    padding: 12px 20px !important;
    padding-left: 30px !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid var(--color-neutral-200) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  .dropdown-content a:last-child {
    border-bottom: none !important;
  }

  .dropdown-content a:hover {
    background: var(--color-white) !important;
    color: var(--color-primary) !important;
  }

  /* Empêcher le scroll du body quand menu ouvert */
  body.menu-open {
    overflow: hidden !important;
  }
}

/* TRÈS PETITS ÉCRANS */
@media (max-width: 480px) {
  nav {
    padding: 10px 15px !important;
    height: 65px !important;
  }

  .nav-links {
    top: 65px !important;
    max-height: calc(100vh - 65px) !important;
  }

  .logo-main {
    font-size: 0.85rem !important;
  }

  .logo-sub {
    font-size: 0.6rem !important;
  }

  .nav-right .nav-cta {
    padding: 5px 10px !important;
    font-size: 0.65rem !important;
    min-width: 70px !important;
  }

  .nav-links ul {
    padding: 0 15px !important;
  }

  .nav-links a {
    padding: 12px 0 !important;
    font-size: 0.9rem !important;
  }

  .mobile-menu-toggle {
    width: 35px !important;
    height: 35px !important;
  }

  .hamburger-line {
    width: 20px !important;
  }
}

/* ACCESSIBILITÉ */
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary) !important;
  outline-offset: 2px !important;
}

.mobile-menu-toggle:hover .hamburger-line {
  background-color: var(--color-primary) !important;
}

/* DÉBOGAGE - FORCER L'AFFICHAGE CORRECT */
@media (max-width: 768px) {
  /* Force la structure correcte */
  nav {
    flex-wrap: nowrap !important;
  }
  
  .nav-links {
    flex: none !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }
  
  /* S'assurer que le dropdown fonctionne */
  .dropdown-menu:hover .dropdown-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

/* VARIABLES ADDITIONNELLES */
:root {
  --mobile-nav-height: 70px;
  --mobile-nav-height-small: 65px;
}
/* ===== HERO BANNER OPTIMISÉ ===== */
.hero-banner {
  position: relative;
  height: 85vh; /* Réduit de 90vh à 85vh */
  min-height: 450px; /* Réduit de 500px à 450px */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(245, 158, 11, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  max-width: 800px; /* Réduit de 900px à 800px */
  padding: 0 20px;
  animation: fadeInUp 1s ease-out 0.3s both; /* Animation plus rapide */
}

.hero-content h1 {
  font-size: clamp(
    2.2rem,
    5vw,
    3.8rem
  ); /* Légèrement augmenté pour compenser le texte plus court */
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem; /* Réduit de 1.5rem à 1.2rem */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Override pour les pages galerie et destinations */
.gallery-hero .hero-content h1,
.destinations-hero .hero-content h1 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ff5722 !important;
  background-clip: unset !important;
  color: #ff5722 !important;
}

.hero-content p {
  font-weight: 500;
  margin-bottom: 2rem; /* Réduit de 2.5rem à 2rem */
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.8px; /* Augmenté pour compenser le texte plus court */
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); /* Légèrement augmenté */
}

.hero-cta {
  display: flex;
  gap: 1.2rem; /* Réduit de 1.5rem à 1.2rem */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem; /* Réduit de 2rem à 1.5rem */
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px; /* Réduit de 16px 32px à 14px 28px */
  font-size: 1rem; /* Réduit de 1.1rem à 1rem */
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.4px; /* Réduit de 0.5px à 0.4px */
  min-width: 140px; /* Réduit de 180px à 140px */
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4); /* Réduit l'ombre */
}

.btn-primary:hover {
  transform: translateY(-2px); /* Réduit de -3px à -2px */
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6); /* Réduit l'ombre */
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px); /* Réduit de -3px à -2px */
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2); /* Réduit l'ombre */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); /* Réduit de 40px à 30px */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CAROUSEL NAVIGATION COMPACTE ===== */
.carousel-nav {
  position: absolute;
  bottom: 30px; /* Réduit de 40px à 30px */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px; /* Réduit de 15px à 12px */
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 8px 16px; /* Réduit de 10px 20px à 8px 16px */
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* Réduit l'ombre */
}

.carousel-dot {
  width: 12px; /* Réduit de 14px à 12px */
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Animation plus rapide */
  border: 2px solid transparent;
  position: relative;
}

.carousel-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Animation plus rapide */
}

.carousel-dot.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-primary);
  transform: scale(1.4); /* Réduit de 1.5 à 1.4 */
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.8); /* Réduit l'ombre */
}

.carousel-dot.active::before {
  width: 100%;
  height: 100%;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2); /* Réduit de 1.3 à 1.2 */
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px; /* Réduit de 70px à 60px */
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  color: white;
  font-size: 24px; /* Réduit de 28px à 24px */
  font-weight: bold;
}

.carousel-arrow:hover {
  background: rgba(245, 158, 11, 0.4);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1); /* Réduit de 1.15 à 1.1 */
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4); /* Réduit l'ombre */
}

.carousel-arrow.prev {
  left: 30px; /* Réduit de 40px à 30px */
}

.carousel-arrow.next {
  right: 30px; /* Réduit de 40px à 30px */
}

.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px; /* Réduit de 5px à 4px */
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-accent) 100%
  );
  transition: width 0.1s linear;
  z-index: 10;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.8); /* Réduit l'ombre */
}

/* ===== RESPONSIVE HERO OPTIMISÉ ===== */
@media (max-width: 768px) {
  .hero-banner {
    height: 80vh; /* Plus compact sur mobile */
    min-height: 400px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 200px;
    padding: 12px 24px;
  }

  .carousel-nav {
    bottom: 20px;
    padding: 6px 12px;
    gap: 10px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .carousel-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .carousel-arrow.prev {
    left: 15px;
  }
  .carousel-arrow.next {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 75vh;
    min-height: 350px;
  }

  .carousel-arrow {
    display: none; /* Masquer sur très petits écrans */
  }

  .hero-image {
    background-attachment: scroll; /* Améliore les performances mobile */
  }
}

/* Section Guides Présentation */
.guides-presentation {
  padding: var(--space-16) var(--space-6);
  background-color: var(--color-white);
}

.guides-presentation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.guides-image-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.guides-main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.3s ease;
}

.guides-image-container:hover .guides-main-image {
  transform: scale(1.02);
}

.guides-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--primary-50);
  color: var(--primary-700);
  padding: var(--space-2) var(--space-4);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.guides-presentation h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-neutral-900);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.guides-lead {
  font-size: 1.125rem;
  color: var(--color-neutral-700);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.guides-features {
  list-style: none;
  margin-bottom: var(--space-6);
}

.guides-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-weight: 500;
  color: var(--color-neutral-800);
}

.guides-features .material-symbols-outlined {
  color: var(--color-primary);
}

.guides-description {
  color: var(--color-neutral-600);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.guides-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: white;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guides-cta:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
  .guides-presentation-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .guides-image-container {
    order: -1;
  }
}

@media (max-width: 480px) {
  .guides-presentation {
    padding: var(--space-12) var(--space-4);
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: var(--space-20) var(--space-6);
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--primary-50);
  color: var(--primary-700);
  padding: var(--space-4) var(--space-6);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.services-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-neutral-900);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.services-subtitle {
  font-size: 1.125rem;
  color: var(--color-neutral-600);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: 3.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-neutral-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-6);
  aspect-ratio: 16/9;
  background-color: var(--color-neutral-100);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.02);
}

.service-icon {
  position: absolute;
  top: -14px;
  right: var(--space-6);
  background: var(--color-primary);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
}

.service-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.service-description {
  font-size: 0.875rem;
  color: var(--color-neutral-600);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.service-cta:hover {
  color: var(--primary-700);
}

.service-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

/* ===== CIRCUITS SECTION ===== */
.circuits-section {
  padding: 0 var(--space-6);
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  position: relative;
}

.circuits-container {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-6);
}

.circuits-header {
  text-align: center;
  margin-bottom: var(--space-20);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.circuits-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--primary-50);
  color: var(--primary-700);
  padding: var(--space-4) var(--space-6);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.circuits-subtitle {
  font-size: 1.125rem;
  color: var(--color-neutral-600);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.circuits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-20);
  padding: 0 var(--space-4);
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.circuit-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-neutral-200);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.04);
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
}

.circuit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(16, 24, 40, 0.15);
  border-color: var(--primary-200);
}

.circuit-card.featured {
  border: 2px solid var(--color-primary);
}

.circuit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.circuit-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 0.25rem 0.625rem;
  border-radius: 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.circuit-badge:not(.new):not(.trending) {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--primary-700) 100%
  );
  color: white;
}

.circuit-badge.new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.circuit-badge.trending {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.circuit-image {
  position: relative;
  /* height: 180px; */
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--color-neutral-100) 25%,
    var(--color-neutral-200) 50%,
    var(--color-neutral-100) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  aspect-ratio: 16/9;
}

.circuit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
  will-change: transform, opacity;
}

.circuit-image img.loaded {
  opacity: 1;
}

/* Optimisation pour les images natives lazy loading */
.circuit-image img[loading="lazy"] {
  opacity: 1;
}

.circuit-image img[loading="lazy"]:not(.loaded) {
  opacity: 0;
}

.circuit-card:hover .circuit-image img {
  transform: scale(1.08);
}

.circuit-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: var(--space-3) var(--space-3) var(--space-2);
}

.circuit-price {
  color: white;
  text-align: right;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.circuit-card:hover .circuit-price {
  transform: translateY(0);
  opacity: 1;
}
.circuit-duration .material-symbols-outlined, .circuit-location .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 18px;
}
 .circuit-location .material-symbols-outlined {
          color: var(--color-primary);
          font-size: 18px;
        }

.price-amount {
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.price-duration {
  font-size: 0.75rem;
  opacity: 0.9;
}

.circuit-content {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.circuit-meta {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.circuit-duration,
.circuit-location,
.circuit-difficulty {
    display: flex
;
    align-items: center;
    gap: var(--space-1);
    font-size: 0.75rem;
    color: var(--color-neutral-600);
    background: var(--color-neutral-100);
    padding: 0.25rem 0.5rem;
    border-radius: 16px;
    font-weight: 500;
}

.circuit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.circuit-description {
  font-size: 0.875rem;
  color: var(--color-neutral-600);
  line-height: 1.65;
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.circuit-highlights {
  margin-bottom: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: var(--color-neutral-700);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.highlight-item .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.circuit-card:hover .highlight-item .material-symbols-outlined {
  transform: scale(1.1);
}

.highlight-item:nth-child(n + 3) {
  display: none;
}

.circuit-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: auto;
}

.btn-circuit-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--primary-700) 100%
  );
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-circuit-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.btn-circuit-primary .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.btn-circuit-primary:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.btn-circuit-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius-lg);
  color: var(--color-neutral-600);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-circuit-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--primary-50);
}

.btn-circuit-secondary .material-symbols-outlined {
  font-size: 18px;
}

.circuits-cta {
  margin-top: var(--space-24);
  background: linear-gradient(
    135deg,
    var(--color-neutral-900) 0%,
    var(--color-neutral-800) 100%
  );
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.circuits-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--primary-700) 100%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0.1;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.cta-content p {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta-primary {
  background: var(--color-primary);
  color: white;
}

.btn-cta-primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cta-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: var(--space-2);
}

/* ===== ANIMATIONS ===== */
.circuit-card:nth-child(1) {
  transition-delay: 0.1s;
}
.circuit-card:nth-child(2) {
  transition-delay: 0.2s;
}
.circuit-card:nth-child(3) {
  transition-delay: 0.3s;
}
.circuit-card:nth-child(4) {
  transition-delay: 0.4s;
}
.circuit-card:nth-child(5) {
  transition-delay: 0.5s;
}
.circuit-card:nth-child(6) {
  transition-delay: 0.6s;
}

.circuit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.circuit-card:hover::before {
  left: 100%;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .circuits-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }

  .circuits-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-stats {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
 

  .hero-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 250px;
    padding: 14px 28px;
  }

  .carousel-nav {
    bottom: 25px;
    padding: 15px 25px;
    gap: 12px;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
  }

  .carousel-arrow {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .carousel-arrow.prev {
    left: 20px;
  }
  .carousel-arrow.next {
    right: 20px;
  }

  .carousel-info {
    top: 20px;
    right: 20px;
    font-size: 0.8rem;
    padding: 8px 15px;
  }

  .services-section {
    padding: var(--space-16) var(--space-4);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .service-card {
    padding: var(--space-6);
  }

  .service-image {
    height: 140px;
  }

  .circuits-section {
    padding: var(--space-20) var(--space-4);
  }

  .circuits-container {
    padding: 0 var(--space-4);
  }

  .circuits-header {
    margin-bottom: var(--space-16);
  }

  .circuits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .circuit-image {
    height: 160px;
  }

  .circuit-content {
    padding: var(--space-4);
  }

  .circuit-meta {
    justify-content: center;
  }

  .circuit-actions {
    flex-direction: column;
    gap: var(--space-3);
  }

  .btn-circuit-secondary {
    align-self: center;
  }

  .cta-content h3 {
    font-size: 1.75rem;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-stats {
    gap: var(--space-4);
  }

  .stat-number {
    font-size: 2rem;
  }

  .circuits-cta {
    margin-top: var(--space-16);
    padding: var(--space-12);
    gap: var(--space-8);
  }
}

@media (max-width: 640px) {
  .nav-links ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links a::after {
    bottom: -2px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .hero-cta {
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 200px;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .carousel-nav {
    padding: 12px 20px;
    gap: 10px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .carousel-arrow {
    display: none;
  }

  .hero-image {
    background-attachment: scroll;
  }

  .circuits-section {
    padding: var(--space-16) var(--space-3);
  }

  .circuits-container {
    padding: 0 var(--space-3);
  }

  .circuits-header {
    margin-bottom: var(--space-12);
  }

  .circuits-badge {
    font-size: 0.8125rem;
    padding: var(--space-2) var(--space-4);
  }

  .circuit-image {
    height: 140px;
    width: 100%;
  }

  .circuit-content {
    padding: var(--space-3);
  }

  .circuit-title {
    font-size: 1rem;
  }

  .circuit-description {
    -webkit-line-clamp: 2;
  }

  .circuit-actions {
    flex-direction: column;
    gap: var(--space-2);
  }

  .circuits-cta {
    margin-top: var(--space-12);
    padding: var(--space-6) var(--space-4);
    gap: var(--space-6);
    box-sizing: border-box;
  }

  .cta-content h3 {
    font-size: 1.25rem;
    word-break: break-word;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content p {
    font-size: 0.9375rem;
  }

  .cta-stats {
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    justify-content: center;
    width: 100%;
  }
}

/* ===== PARALLAX POUR DESKTOP ===== */
@media (min-width: 1024px) {
  .hero-image {
    background-attachment: fixed;
  }
}

/* ===== ANIMATION SLIDE TRANSITION ===== */
.hero-image.slide-in {
  animation: slideInFromRight 0.8s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ===== ÉTATS DE LOADING ET INTERACTION ===== */
.loading.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}

.hero-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: all 0.5s ease !important;
}

.carousel-arrow {
  cursor: pointer;
  user-select: none;
}

.carousel-dot {
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  opacity: 1 !important;
  transform: scale(1.2);
}

.carousel-progress {
  transition: width 0.3s ease;
}

/* ===== ACCESSIBILITÉ ===== */
.btn-circuit-primary:focus,
.btn-circuit-secondary:focus,
.btn-cta-primary:focus,
.btn-cta-secondary:focus,
.nav-cta:focus,
.btn-primary:focus,
.btn-secondary:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===== IMPRESSION ===== */
@media print {
  .circuits-section {
    background: white !important;
    padding: 2rem !important;
  }

  .circuit-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .circuit-image {
    height: 150px !important;
     width: 100%;
  }

  .circuits-cta {
    display: none !important;
  }

  .carousel-nav,
  .carousel-arrow,
  .carousel-progress {
    display: none !important;
  }
} /* ===== BOUTON VOIR PLUS - Style matching votre design ===== */
.voir-plus {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #6c757d;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;

  /* CENTRAGE */
  margin: var(--space-8) auto var(--space-4);
  display: flex;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  cursor: pointer;
}

/* États du bouton */
.voir-plus:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  color: #495057;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.voir-plus:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.voir-plus:focus {
  outline: none;
  border-color: #6c757d;
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
  text-decoration: none;
}

/* Animation de l'icône */
.voir-plus__icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.voir-plus:hover .voir-plus__icon {
  transform: translateY(2px);
}

/* État expanded (quand le contenu est visible) */
.voir-plus[aria-expanded="true"] {
  background: #e9ecef;
  border-color: #dee2e6;
  color: #495057;
  text-decoration: none;
}

.voir-plus[aria-expanded="true"] .voir-plus__text {
  position: relative;
}

.voir-plus[aria-expanded="true"] .voir-plus__text::after {
  content: " - VOIR MOINS";
  color: inherit;
}

.voir-plus[aria-expanded="true"] .voir-plus__icon {
  transform: rotate(180deg);
}

.voir-plus[aria-expanded="true"]:hover .voir-plus__icon {
  transform: rotate(180deg) translateY(-2px);
}

/* Contenu du bouton */
.voir-plus__text,
.voir-plus__icon {
  position: relative;
  z-index: 2;
}

/* ===== CONTENEUR CENTRÉ POUR LE BOUTON ===== */
.voir-plus-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: var(--space-8) 0 var(--space-4);
  padding: 0 var(--space-4);
}

/* ===== VARIATIONS DU BOUTON ===== */

/* Version qui match exactement votre style */
.voir-plus--match {
  background: #f1f3f4;
  border: 1px solid #dadce0;
  color: #5f6368;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

.voir-plus--match:hover {
  background: #e8eaed;
  border-color: #dadce0;
  color: #3c4043;
  text-decoration: none;
}

/* Version Small pour mobile */
.voir-plus--small {
  padding: 10px 16px;
  font-size: 0.75rem;
  min-width: 180px;
  gap: var(--space-1);
}

.voir-plus--small .voir-plus__icon {
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .voir-plus {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.8125rem;
    margin: var(--space-6) auto var(--space-3);
  }

  .voir-plus__icon {
    font-size: 18px;
  }

  .voir-plus-container {
    margin: var(--space-6) 0 var(--space-3);
    padding: 0 var(--space-3);
  }
}

@media (max-width: 480px) {
  .voir-plus {
    padding: 10px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    max-width: 250px;
    min-width: auto;
  }

  .voir-plus__icon {
    font-size: 16px;
  }

  /* Simplification du texte sur mobile */
  .voir-plus[aria-expanded="true"] .voir-plus__text::after {
    content: "";
  }

  .voir-plus-container {
    padding: 0 var(--space-2);
  }
}

/* ===== CENTRAGE GLOBAL ===== */
.circuits-section .voir-plus,
.excursions-section .voir-plus {
  margin-left: auto;
  margin-right: auto;
}

/* Container parent pour assurer le centrage */
.circuits-grid + .voir-plus-container,
.excursions-grid + .voir-plus-container {
  text-align: center;
}

/* ===== VARIABLES CSS ===== */
:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
}

/* ===== VARIATIONS DU BOUTON ===== */

/* Version Primary */
.voir-plus--primary {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--primary-700) 100%
  );
  border-color: var(--color-primary);
  color: white;
  text-decoration: none;
}

.voir-plus--primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-700) 0%,
    var(--color-primary) 100%
  );
  border-color: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
  text-decoration: none;
}

/* Version Small */
.voir-plus--small {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
  min-width: 160px;
  gap: var(--space-1);
}

.voir-plus--small .voir-plus__icon {
  font-size: 18px;
}

/* Version Large */
.voir-plus--large {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
  min-width: 240px;
  gap: var(--space-3);
}

.voir-plus--large .voir-plus__icon {
  font-size: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .voir-plus {
    width: 100%;
    max-width: 300px;
    padding: var(--space-3) var(--space-4);
    font-size: 0.8125rem;
  }

  .voir-plus__icon {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .voir-plus {
    padding: var(--space-2) var(--space-3);
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .voir-plus__text::after {
    content: "";
  }

  .voir-plus[aria-expanded="true"] .voir-plus__text::after {
    content: "";
  }
}

/* ===== ANIMATIONS AVANCÉES ===== */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
  }
}

/* Animation pulse optionnelle */
.voir-plus--pulse {
  animation: pulse 2s infinite;
}

/* États de loading */
.voir-plus--loading {
  pointer-events: none;
  opacity: 0.7;
}

.voir-plus--loading .voir-plus__icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  position: relative;
}

.destinations-container {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}

.destinations-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.destinations-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff3f0;
  color: #e64a19;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.destinations-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.destinations-subtitle {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TABS NAVIGATION ===== */
.destinations-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  background: white;
  padding: 0.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(16, 24, 40, 0.1);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.tab-button:hover {
  background: #f8fafc;
  color: #334155;
}

.tab-button.active {
  background: #ff5722;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(16, 24, 40, 0.1);
}

.tab-button img {
  border-radius: 2px;
}

/* ===== TAB CONTENT ===== */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== DESTINATIONS CAROUSEL ===== */
.destinations-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
  padding: 0 60px; /* Espace pour les boutons */
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem 0;
  align-items: center; /* Centre verticalement */
}

.destination-card {
  flex: 0 0 320px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.destination-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(16, 24, 40, 0.15);
}

.destination-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 20px;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 1.5rem 2rem; /* Plus de padding bottom */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 120px; /* Hauteur minimale pour éviter la coupure */
}

.destination-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.destination-stats {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: nowrap; /* Empêcher le retour à la ligne */
  width: 100%; /* Assurer la largeur complète */
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap; /* Empêcher la coupure */
  display: inline-block !important; /* Forcer l'affichage */
  visibility: visible !important; /* Forcer la visibilité */
}

/* S'assurer que tous les stat-label dans destination-stats sont identiques */
.destination-stats .stat-label {
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.875rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  display: inline-block !important; /* Forcer l'affichage */
  visibility: visible !important; /* Forcer la visibilité */
}

.stat-separator {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  font-size: 1.25rem;
  margin: 0 0.25rem;
}

/* ===== CAROUSEL NAVIGATION ===== */
.carousel-btn {
  position: absolute;
  top: calc(50% - 2rem);
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
  box-shadow: 0 8px 25px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(10px);
}

.carousel-btn:hover:not(.disabled) {
  background: white;
  border-color: #ff5722;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 20px 40px rgba(255, 87, 34, 0.15);
}

.carousel-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.7);
}

.carousel-btn .material-symbols-outlined {
  font-size: 28px;
  color: #334155;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover:not(.disabled) .material-symbols-outlined {
  color: #ff5722;
  transform: scale(1.1);
}

.carousel-btn.disabled .material-symbols-outlined {
  color: #94a3b8;
}

.carousel-prev {
  left: 5px;
}

.carousel-next {
  right: 5px;
}

/* ===== CAROUSEL INDICATORS ===== */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}

.indicators-track {
  display: none;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  border-radius: 25px;
}

.indicators-track.active {
  display: flex;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.indicator:hover {
  background: #64748b;
  transform: scale(1.2);
}

.indicator.active {
  background: #ff5722;
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
  }
}

/* ===== CTA FINAL ===== */
.destinations-cta {
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 4rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.destinations-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ff5722, #f77f00);
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0.1;
}

.destinations-cta h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.destinations-cta p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.btn-cta-primary {
  background: #ff5722;
  color: white;
}

.btn-cta-primary:hover {
  background: #e64a19;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .destinations-section {
    padding: 4rem 1rem;
  }

  .destinations-title {
    font-size: 2rem;
  }

  .destinations-tabs {
    flex-direction: column;
    max-width: 300px;
    gap: 0.5rem;
  }

  .destination-card {
    flex: 0 0 280px;
  }

  .destination-image {
    height: 240px;
  }

  .destinations-cta {
    padding: 3rem 1.5rem;
  }

  .destinations-cta h3 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .destinations-carousel {
    padding: 0 50px;
    overflow: visible; /* Permettre de voir les cartes partiellement */
  }

  .carousel-track {
    padding: 1rem 0;
  }
  
  .destination-card {
    flex: 0 0 300px; /* Carte un peu plus petite sur tablette */
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    top: calc(50% - 1.5rem);
  }

  .carousel-btn .material-symbols-outlined {
    font-size: 24px;
  }

  .carousel-btn:hover:not(.disabled) {
    transform: translateY(-50%) scale(1.05);
  }
}

/* Mobile très petit */
@media (max-width: 480px) {
  .destinations-carousel {
    padding: 0 30px;
    overflow: visible;
  }
  
  .carousel-track {
    gap: 1rem;
  }
  
  .destination-card {
    flex: 0 0 280px; /* Carte adaptée aux petits écrans */
  }
  
  .destination-overlay {
    padding: 2.5rem 1.2rem 2rem; /* Plus de padding bottom pour éviter la coupure */
  }
  
  .destination-name {
    font-size: 1.3rem;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
  }
  
  .carousel-btn .material-symbols-outlined {
    font-size: 20px;
  }

  /* Fix labels des destinations sur mobile */
  .destination-stats {
    gap: 0.4rem;
    flex-wrap: nowrap; /* Empêcher le retour à la ligne */
  }
  
  .destination-stats .stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    white-space: nowrap; /* Empêcher le wrap des labels */
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-separator {
    font-size: 1.1rem;
  }
}


/* ===== CONTACT SECTION SIMPLE ===== */
.contact-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== HERO BACKGROUND ===== */
.contact-hero {
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('/assets/img/DSC06841-copie.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ff5722 !important;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* ===== CONTACT BUTTON SIMPLE ===== */
.contact-btn {
  display: inline-block;
  background: #ff5722;
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-btn:hover {
  background: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-section {
    min-height: 400px;
  }
  
  .contact-hero {
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .contact-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-description {
    font-size: 0.9375rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
}

