/* ===== CRUISETRANSPORT — CSS PARTAGÉ (identique au design original) ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --noir: #0a0a0a;
  --noir2: #111111;
  --or: #c9a84c;
  --or-clair: #e8c97a;
  --blanc: #f5f0e8;
  --gris: #888;
  --gris-clair: #222;
  --border: rgba(201,168,76,0.2);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--noir);
  color: var(--blanc);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--or); letter-spacing: 2px;
}
.nav-logo span { color: var(--blanc); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--blanc); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--or); }
.nav-tel {
  background: var(--or) !important;
  color: var(--noir) !important;
  padding: 0.6rem 1.4rem;
  font-weight: 600 !important;
}

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 0.8rem); left: 50%;
  transform: translateX(-50%);
  background: var(--noir2);
  border: 1px solid var(--border);
  min-width: 180px; padding: 0.5rem 0;
  z-index: 200;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block; padding: 0.6rem 1.2rem;
  font-size: 0.82rem; font-weight: 400;
  color: var(--gris) !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover { color: var(--or) !important; background: rgba(201,168,76,0.06); }
.nav-dropdown.open .dropdown-menu { display: block; }

/* burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--or); }

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 10rem 3rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--noir2) 0%, var(--noir) 100%);
}
.page-hero-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.2), transparent);
}
.page-hero .hero-badge {
  display: inline-block;
  border: 1px solid var(--or); color: var(--or);
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.8rem;
  position: relative;
  animation: fadeUp 0.8s 0.2s both;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.2rem;
  position: relative;
  animation: fadeUp 0.8s 0.4s both;
}
.page-hero h1 em { color: var(--or); font-style: normal; }
.page-hero p {
  font-size: 1rem; color: var(--gris);
  max-width: 620px; line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  animation: fadeUp 0.8s 0.6s both;
}
.page-hero .btn-primary { animation: fadeUp 0.8s 0.8s both; position: relative; }

/* ── BOUTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--or); color: var(--noir);
  padding: 1rem 2.5rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--or-clair); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.5); color: var(--or);
  padding: 1rem 2.5rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 0.9rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--or); background: rgba(201,168,76,0.08); }

/* ── SECTIONS ── */
.section-wrap { padding: 6rem 3rem; max-width: 1100px; margin: 0 auto; }
.section-wrap-dark {
  padding: 6rem 3rem;
  background: var(--noir2);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.section-wrap-dark .inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: block;
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--or); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-title em { color: var(--or); font-style: normal; }
.section-sub {
  color: var(--gris); font-size: 0.95rem;
  line-height: 1.8; max-width: 580px;
}

/* ── INFO BOX ── */
.info-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 1.2rem 1.8rem;
  margin-bottom: 3rem;
  font-size: 0.9rem; color: var(--or-clair); line-height: 1.7;
}
.info-box strong { color: var(--or); }

/* ── GRILLE CARTES (style airport-card original) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.3s;
  background: rgba(201,168,76,0.02);
}
.card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--or);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.card:hover::before { transform: scaleX(1); }
.card:hover { background: rgba(201,168,76,0.05); transform: translateY(-3px); }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--or);
  margin-bottom: 0.6rem;
}
.card p { font-size: 0.88rem; color: var(--gris); line-height: 1.7; }
.card a { color: var(--or-clair); font-size: 0.82rem; display: inline-block; margin-top: 0.8rem; }
.card a:hover { color: var(--or); }
.card .dist {
  font-size: 0.8rem; letter-spacing: 1px; color: var(--or-clair);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem; margin-top: 0.8rem;
}

/* ── DEUX COLONNES ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.two-col-img { overflow: hidden; }
.two-col-img img { width: 100%; height: 360px; object-fit: cover; }

/* ── CHECKLIST ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.92rem; color: #aaa; line-height: 1.6;
}
.checklist li span:first-child { color: var(--or); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── ÉTAPES ── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  border-bottom: none;
  transition: background 0.3s;
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,0.05); }
.step:hover { background: rgba(201,168,76,0.03); }
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--or);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--or);
}
.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; margin-bottom: 0.5rem;
}
.step p { font-size: 0.88rem; color: var(--gris); line-height: 1.7; }
.step a { color: var(--or); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%; padding: 1.4rem 0;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--blanc);
  text-align: left; gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--or); flex-shrink: 0; }
.faq-q.open::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.88rem; color: var(--gris); line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 400px; padding-bottom: 1.2rem; }

/* ── STATS ── */
.stats-row {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  margin: 3rem 0;
}
.stat {
  flex: 1; text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--or);
  margin-bottom: 0.3rem;
}
.stat .lbl { font-size: 0.78rem; color: var(--gris); letter-spacing: 1px; text-transform: uppercase; }

/* ── ZONE GROUPES ── */
.zone-regions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 2rem;
}
.zone-group h4 {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--or); margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.zone-group ul { list-style: none; }
.zone-group ul li {
  font-size: 0.88rem; color: #aaa;
  padding: 0.25rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.zone-group ul li::before { content: '—'; color: var(--or); font-size: 0.7rem; }
.zone-group ul li strong { color: var(--or-clair); }

/* ── CTA BANNER ── */
.cta-section {
  padding: 6rem 3rem;
  background: var(--noir2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
}
.cta-inner p { color: var(--gris); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #050505;
  padding: 3rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--or); letter-spacing: 2px;
  margin-bottom: 0.8rem; display: block;
}
.footer-desc { font-size: 0.85rem; color: #555; line-height: 1.7; }
footer h4 {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--or); margin-bottom: 1rem;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
footer ul a { font-size: 0.85rem; color: #555; transition: color 0.3s; }
footer ul a:hover { color: var(--or); }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid #111;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: #333;
}

/* ── WHATSAPP ── */
.wa-fab-simple {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-fab-simple:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.75s, transform 0.75s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { flex-wrap: wrap; }
  .stat { min-width: 140px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--noir2);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem; gap: 1rem;
  }
  .nav-burger { display: flex; }
  .dropdown-menu { position: static; transform: none; display: none; margin-top: 0.5rem; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .section-wrap { padding: 4rem 1.5rem; }
  .section-wrap-dark { padding: 4rem 1.5rem; }
  .cta-section { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .cards-grid { grid-template-columns: 1fr; }
  .zone-regions { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 1rem; }
  .two-col-img img { height: 220px; }
}
