@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap"); 
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"); 
:root {
  --saffron: #E8651A;
  --deep-teal: #1A5276;
  --gold: #D4A843;
  --cream: #FBF7F2;
  --dark: #1A1A2E;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --text-muted: #6B7280;
  --green-wa: #25D366;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.65;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--deep-teal);
  color: #fff;
  font-size: 12.5px;
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-left a, .topbar-left span {
  color: #e0e7ef;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  transition: color .2s;
}
.topbar-left a:hover { color: var(--gold); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-right span { color: #e0e7ef; font-size: 11px; }
.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
  transition: background .2s, transform .2s;
}
.social-links a:hover { background: var(--saffron); transform: scale(1.12); }
.lang-select {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}
.topbar-book {
  background: var(--saffron);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.topbar-book:hover { background: #c0510e; }

/* ── HEADER / NAV ── */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  margin: 4px;
  z-index: 999;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {width:100%;
}
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--deep-teal);
  font-weight: 700;
}
.logo-text span {
  font-size: 10px;
  color: var(--saffron);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
nav ul li { position: relative; }
nav ul li a {
  display: block;
  padding: 8px 12px;
  color: var(--dark);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--saffron);
  background: #fff4ee;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  min-width: 210px;
  padding: 8px 0;
  z-index: 100;
}
.dropdown li a {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 0;
}
.nav-cta {
  background: var(--saffron) !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: #c0510e !important; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SLIDER ── */
.slider {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}
.slide-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide-eyebrow::before, .slide-eyebrow::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide h1 em { color: var(--gold); font-style: normal; }
.slide p {
  font-size: 16px;
  max-width: 540px;
  opacity: 0.92;
  margin-bottom: 30px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: var(--saffron);
  color: #fff;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-primary:hover { background: #c0510e; transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 11px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.28); }

.slider-tags {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slider-tags span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.slider-tags span.active {
  background: var(--gold);
  transform: scale(1.3);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--saffron); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ── SECTION COMMONS ── */
section { padding: 72px 20px; }
.container { max-width: 1240px; margin: 0 auto; }
.section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: var(--saffron);
  opacity: .5;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--deep-teal);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 50px;
}

/* ── BIENVENUE SECTION ── */
.bienvenue { background: var(--white); }
.bienvenue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bienvenue-text .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}
.bienvenue-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--deep-teal);
  margin-bottom: 18px;
  line-height: 1.2;
}
.bienvenue-text p { color: #4B5563; margin-bottom: 14px; line-height: 1.75; }
.tripadvisor-strip {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.ta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0faf4;
  border: 1.5px solid #34a853;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a7340;
}
.ta-stars { color: #34a853; }
.bienvenue-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.bienvenue-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform .4s, box-shadow .4s;
}
.bienvenue-images img:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.bienvenue-images img:nth-child(1) { height: 240px; }
.bienvenue-images img:nth-child(2) { height: 190px; margin-top: 40px; }
.bienvenue-images img:nth-child(3) { height: 190px; }
.bienvenue-images img:nth-child(4) { height: 240px; margin-top: -40px; }
.exp-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: #fff;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(232,101,26,0.4);
}

/* ── DESTINATIONS 12 BOX ── */
.destinations { background: var(--cream); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,40,0.82) 40%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background .3s;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(232,101,26,0.82) 30%, transparent 80%);
}
.dest-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.dest-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}
.dest-card p { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ── TOURS 32 BOX ── */
.tours { background: var(--white); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.tour-card-img {
  position: relative;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tour-card:hover .tour-card-img img { transform: scale(1.07); }
.tour-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--saffron);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .05em;
}
.tour-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.tour-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}
.tour-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.tour-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}
.tour-meta-item .icon { color: var(--saffron); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.tour-meta-item strong { color: var(--dark); }
.tour-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.btn-wa {
  flex: 1;
  background: var(--green-wa);
  color: #fff;
  text-decoration: none;
  padding: 9px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s;
}
.btn-wa:hover { background: #1aab54; }
.btn-more {
  flex: 1;
  background: var(--deep-teal);
  color: #fff;
  text-decoration: none;
  padding: 9px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s;
}
.btn-more:hover { background: #154360; }

.tours-show-more {
  text-align: center;
  margin-top: 40px;
}
.hidden-tours { display: none; }
.hidden-tours.shown { display: contents; }

/* ── AVANTAGES 8 BOX ── */
.avantages { background: linear-gradient(135deg, var(--deep-teal) 0%, #0d3a5c 100%); }
.avantages .section-title { color: #fff; }
.avantages .section-eyebrow { color: var(--gold); }
.avantages .section-eyebrow::before, .avantages .section-eyebrow::after { background: var(--gold); }
.avantages .section-sub { color: rgba(255,255,255,0.7); }
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.avantage-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background .3s, transform .3s;
}
.avantage-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-5px);
}
.avantage-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 16px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(232,101,26,0.3);
}
.avantage-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.avantage-card p { font-size: 12.5px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ── CAR RENTAL ── */
.car-rental { background: var(--cream); }
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.car-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.car-card-img { overflow: hidden; position: relative; }
.car-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.car-card:hover .car-card-img img { transform: scale(1.07); }
.car-card-body { padding: 20px; }
.car-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 10px;
}
.car-features { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.car-feature {
  background: var(--cream);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 11.5px;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.car-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--saffron);
  margin-bottom: 14px;
}
.car-price span { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.car-card-actions { display: flex; gap: 10px; }
.car-center { text-align: center; margin-top: 10px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 20px 0;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text strong { color: #fff; font-size: 17px; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-desc { margin-top: 16px; font-size: 13.5px; line-height: 1.7; color: #fff; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--saffron); color: #fff; }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '\203A';
  color: var(--saffron);
  font-size: 16px;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── FIXED FLOATING BUTTONS ── */
.floating-bar {
  position: fixed;
  bottom: 22px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.float-btn.wa { background: var(--green-wa); color: #fff; }
.float-btn.call { background: var(--deep-teal); color: #fff; }
.float-btn.email { background: var(--saffron); color: #fff; }
.float-tooltip {
  position: absolute;
  right: 60px;
  background: var(--dark);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .tours-grid { grid-template-columns: repeat(3, 1fr); }
  .avantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .bienvenue-grid { grid-template-columns: 1fr; }
  .bienvenue-images { margin-top: 30px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .avantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 9998;
    padding: 80px 24px 30px;
    overflow-y: auto;
  }
  nav.open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  nav.open ul li a {
    font-size: 16px;
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  nav.open .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: var(--light-gray);
    padding: 0;
  }
  nav.open .dropdown li a {
    font-size: 14px;
    padding: 11px 24px;
  }
  .hamburger { display: flex; z-index: 9999; }
  .topbar-right .topbar-book { display: none; }
}

@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .car-grid { grid-template-columns: 1fr; }
  .avantages-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left a:not(:first-child) { }
  .topbar-right {
  display: flex;
  align-items: center;
  gap: 12px; display: none;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
}
  .topbar-left .Whatp{display: none;}
  .slider { height: 70vh; }
  section { padding: 52px 16px; }
  .bienvenue-images { grid-template-columns: 1fr 1fr; }
  .bienvenue-images img { height: 150px !important; margin: 0 !important; }
  .btn-primary {
    background: var(--saffron);
    color: #fff;
    padding: 13px 30px;
    width: 100%;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s, transform .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.slider-arrow {
    position: absolute;
    top: 68%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    border: none;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.visible { animation: fadeUp .6s ease forwards; }
.animate:nth-child(2) { animation-delay: .1s; }
.animate:nth-child(3) { animation-delay: .2s; }
.animate:nth-child(4) { animation-delay: .3s; }
.animate:nth-child(5) { animation-delay: .4s; }
.animate:nth-child(6) { animation-delay: .5s; }