/* ==================== CSS VARIABLES ==================== */
:root {
  --primary: #003580;
  --primary-light: #0057b8;
  --primary-dark: #002147;
  --accent: #ff5a5f;
  --accent-hover: #e14e52;
  --success: #10b981;
  --warning: #f59e0b;
  
  --bg-primary: #f7f9fc;
  --bg-secondary: #ffffff;
  --surface: #ffffff;
  --surface-hover: #f8fafc;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  --header-height: 80px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--surface);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-light);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.logo {
  font-weight: 800;
  font-size: 26px;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo span {
  color: var(--accent);
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 8px;
    transition: all var(--transition);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

 .nav-link {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 15px;
  background: transparent;
  border: none;
  position: relative;
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.nav-link::after,
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transition: all var(--transition);
}

.nav-link::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: var(--surface-hover);
  border-radius: var(--radius-sm);
  opacity: 0;
}

.nav-link::after {
  transform: translate(5px, 5px);
  width: 25px;
  height: 25px;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 50px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::before {
  transform: translate(2%, 10%);
  width: 104%;
  height: 110%;
  opacity: 1;
  background: var(--surface-hover);
}

.nav-link:hover::after {
  border-radius: var(--radius-sm);
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.nav-link:active::after {
  transition: 0.1s;
  transform: translate(0, 2%);
}

/* État actif */
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::before {
  opacity: 1;
  background: var(--primary);
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
}

.nav-link.active::after {
  display: none;
}

/* Focus accessibility */
.nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn.accent {
  background: linear-gradient(135deg, var(--accent), #e14e52);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 90, 95, 0.3);
}

.btn.accent:hover {
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.menu-btn:hover {
  background: var(--surface-hover);
}

.menu-btn .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-btn[aria-expanded="true"] .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-btn[aria-expanded="true"] .bar2 {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 999;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 24px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px;
  display: block;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.mobile-menu a:hover {
  background: var(--surface-hover);
  color: var(--primary);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==================== HERO SECTION ==================== */
.hero {
  margin-top: var(--header-height);
  min-height: 75vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 90, 95, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 53, 128, 0.15) 0%, transparent 50%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.8), rgba(118, 75, 162, 0.6));
  backdrop-filter: blur(1px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.hero-content {
  color: white;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  padding: 16px 32px;
  font-size: 16px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* ==================== SEARCH CARD ==================== */
.search-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
  animation: fadeInUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.search-form .field {
  margin-bottom: 16px;
}

.search-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.suggest-container {
  position: relative;
}

.search-form input,
.search-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: white;
  font-size: 15px;
  font-family: inherit;
  transition: all var(--transition);
  color: var(--text-primary);
}

.search-form input:focus,
.search-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 53, 128, 0.1);
}

.search-form input::placeholder {
  color: var(--text-muted);
}

.suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 320px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  border: 1px solid #e5e7eb;
  font-family: Arial, sans-serif;
}

.suggestions li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.suggestions li:hover {
  background: #f9fafb;
}

.suggestion-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.suggestion-texts {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.suggestion-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
}

.suggestion-code {
  color: #6b7280;
  font-weight: normal;
  margin-left: auto;
}

.suggestion-subtitle {
  font-size: 13px;
  color: #6b7280;
}


/* Two columns layout */
.row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Passengers counter */
.passengers {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.passenger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.passenger small {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 13px;
}

.counter {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-hover);
  padding: 4px;
  border-radius: var(--radius-sm);
}

.btn-counter {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-counter:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

.btn-counter:active {
  transform: scale(0.95);
}

.counter span {
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

/* Actions */
.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.warning {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 8px;
  background: rgba(255, 90, 95, 0.1);
  border-radius: var(--radius-sm);
}

.btn.accent[type="submit"] {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* Loader */
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-top: 4px solid var(--primary);
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: relative;
}

.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-bottom: 4px solid var(--accent);
  border-left: 4px solid transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }

}
.loader-text {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

/* ==================== RESULTS SECTION ==================== */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.results-grid {
  display: grid;
  gap: 20px;
}

.result-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
}

.airline {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.airline small {
  color: var(--text-muted);
  font-weight: 500;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
  white-space: nowrap;
}

.price {
  font-weight: 900;
  font-size: 24px;
  color: var(--accent);
  text-align: right;
  line-height: 1.2;
}

.price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.reservation-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.reservation-button:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.load-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.load-more-button {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
}

.load-more-button:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==================== ABOUT SECTION ==================== */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-desc h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.about-desc p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ==================== DESTINATIONS SLIDER ==================== */
.destinations-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -12px;
}

.slider-container {
  display: flex;
  transition: transform var(--transition-slow);
  gap: 0;
  width: 200%; /* 2 groupes pour 6 destinations */
}

/* CORRECTION : Chaque slide devient un conteneur de groupe */
.slider-slide {
  flex: 0 0 50%; /* Chaque groupe prend 50% de la largeur totale */
  display: flex; /* Ajouter flex pour les cartes à l'intérieur */
  gap: 24px; /* Espace entre les cartes du groupe */
  padding: 0 12px;
  transition: all var(--transition);
  box-sizing: border-box;
}

/* Design des cartes identique à la grille existante */
.slider-slide .destination-card {
  flex: 1; /* Chaque carte prend une part égale dans le groupe */
  min-width: 0; /* Important pour le flex */
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slider-slide .destination-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.slider-slide .destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.slider-slide .destination-card:hover img {
  transform: scale(1.05);
}

.slider-slide .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.slider-slide .card-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.slider-slide .card-body p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.slider-slide .link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.slider-slide .link:hover {
  color: var(--accent);
  gap: 8px;
}

/* Navigation du slider */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.slider-dot::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 18px;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slider-arrow:active {
  transform: translateY(0);
}

/* Animation pour le changement de slide */
@keyframes slideFadeIn {
  from {
    opacity: 0.7;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slider-slide.active .destination-card {
  animation: slideFadeIn 0.6s ease-out;
}

/* États de focus pour l'accessibilité */
.slider-arrow:focus-visible,
.slider-dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* CORRECTION : Responsive pour le slider */
@media (max-width: 1024px) {
  .slider-container {
    width: 300%; /* 3 groupes pour 6 destinations (2 cartes par groupe) */
  }
  
  .slider-slide {
    flex: 0 0 33.333%; /* Chaque groupe prend 33.333% */
    gap: 16px;
  }
  
  .destinations-slider {
    margin: 0 -8px;
  }
  
  .slider-slide {
    padding: 0 8px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    width: 600%; /* 6 groupes pour 6 destinations (1 carte par groupe) */
  }
  
  .slider-slide {
    flex: 0 0 16.666%; /* Chaque groupe prend 16.666% */
    gap: 0;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .slider-nav {
    gap: 16px;
    margin-top: 32px;
  }
  
  .destinations-slider {
    margin: 0 -4px;
  }
  
  .slider-slide {
    padding: 0 4px;
  }
}

@media (max-width: 480px) {
  .slider-slide .card-body {
    padding: 16px;
  }
  
  .slider-slide .card-body h4 {
    font-size: 18px;
  }
  
  .slider-slide .card-body p {
    font-size: 13px;
  }
}

/* Indicateur de chargement pour les images */
.slider-slide .destination-card img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.slider-slide .destination-card img[src] {
  background: none;
  animation: none;
}


/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 32px;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 14px;
}

.footer a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.socials a {
  display: block;
  transition: transform var(--transition);
}

.socials a:hover {
  transform: translateY(-4px);
}

.socials img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 8px;
  transition: all var(--transition);
}

.socials a:hover img {
  box-shadow: var(--shadow-lg);
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ============================
 SYSTÈME DE NOTIFICATION VISUELLE
 ============================ */

.notification-area {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 10px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  pointer-events: none;
}

.notification {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  padding: 14px 48px 14px 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  animation: notifFadeIn 0.35s ease forwards;
  pointer-events: auto;
  overflow: hidden;
}

.notification-hide {
  animation: notifFadeOut 0.4s ease forwards;
}

.notification-inner {
  position: relative;
  z-index: 2;
}

/* Bouton de fermeture */
.notification-close {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.notification-close:hover { opacity: 1; }

/* Couleurs par type */
.notification-info {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.notification-success {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.notification-warning {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.notification-error {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notifFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notifFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1127px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  :root {
    --header-height: 70px;
  }

  .container {
    padding: 0 16px;
  }

  

  .menu-btn {
    display: block;
  }

  .header-ctas .btn.primary {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .nav {
    display: none;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-inner {
    padding: 60px 0;
  }

  .search-card {
    padding: 24px;
  }

  .row.two-cols {
    grid-template-columns: 1fr;
  }

  .passengers {
    flex-wrap: wrap;
  }

  .section {
    padding: 60px 0;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .hero-inner{
    margin-right: 15px;
    margin-left: 15px;
  }
    
}


@media (max-width: 480px) {
  .btn.primary{
      display: none;
      
  }    
    
  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .search-card {
    padding: 20px;
  }

  .result-card {
    padding: 16px;
  }

  .price {
    font-size: 20px;
  }
}


@media (max-width: 417px) {
  .hero-cta{
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
    
}

@media (max-width: 386px) {
  .hero-cta{
      font-size: 11px;
  }
    
}

/* Responsive ajustements */
@media (max-width: 600px) {
  .notification {
    max-width: 95%;
    font-size: 14px;
    padding: 12px 40px 12px 14px;
  }
}

/* ==================== UTILITIES ==================== */
.hidden {
  display: none !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}